LLVMFuzzerInitialize:
   38|      2|LLVMFuzzerInitialize(int *argc ISC_ATTR_UNUSED, char ***argv ISC_ATTR_UNUSED) {
   39|      2|	isc_mem_create("fuzz", &mctx);
  ------------------
  |  |  198|      2|#define isc_mem_create(name, cp) isc__mem_create((name), (cp)_ISC_MEM_FILELINE)
  ------------------
   40|      2|	output = isc_mem_get(mctx, output_len);
  ------------------
  |  |  128|      2|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
   41|       |
   42|      2|	return 0;
   43|      2|}
LLVMFuzzerTestOneInput:
  146|  13.1k|LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  147|  13.1k|	isc_buffer_t buffer;
  148|  13.1k|	isc_result_t result;
  149|  13.1k|	dns_message_t *message = NULL;
  150|       |
  151|  13.1k|	if (size > 65535) {
  ------------------
  |  Branch (151:6): [True: 1, False: 13.1k]
  ------------------
  152|      1|		return 0;
  153|      1|	}
  154|       |
  155|  13.1k|	isc_buffer_constinit(&buffer, data, size);
  ------------------
  |  |  557|  13.1k|	do {                                                \
  |  |  558|  13.1k|		union {                                     \
  |  |  559|  13.1k|			void	   *_var;                   \
  |  |  560|  13.1k|			const void *_const;                 \
  |  |  561|  13.1k|		} _deconst;                                 \
  |  |  562|  13.1k|		_deconst._const = (_d);                     \
  |  |  563|  13.1k|		isc_buffer_init((_b), _deconst._var, (_l)); \
  |  |  564|  13.1k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (564:11): [Folded, False: 13.1k]
  |  |  ------------------
  ------------------
  156|  13.1k|	isc_buffer_add(&buffer, size);
  157|  13.1k|	isc_buffer_setactive(&buffer, size);
  158|       |
  159|  13.1k|	CHECK(parse_message(&buffer, &message));
  ------------------
  |  |  255|  13.1k|	{                                      \
  |  |  256|  13.1k|		result = (r);                  \
  |  |  257|  13.1k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 4.27k, False: 8.91k]
  |  |  ------------------
  |  |  258|  4.27k|			goto cleanup;          \
  |  |  259|  4.27k|		}                              \
  |  |  260|  13.1k|	}
  ------------------
  160|       |
  161|  8.91k|	CHECK(print_message(message));
  ------------------
  |  |  255|  8.91k|	{                                      \
  |  |  256|  8.91k|		result = (r);                  \
  |  |  257|  8.91k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 8.91k]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  8.91k|	}
  ------------------
  162|       |
  163|  8.91k|	CHECK(render_message(&message));
  ------------------
  |  |  255|  8.91k|	{                                      \
  |  |  256|  8.91k|		result = (r);                  \
  |  |  257|  8.91k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 237, False: 8.68k]
  |  |  ------------------
  |  |  258|    237|			goto cleanup;          \
  |  |  259|    237|		}                              \
  |  |  260|  8.91k|	}
  ------------------
  164|       |
  165|  8.68k|	CHECK(print_message(message));
  ------------------
  |  |  255|  8.68k|	{                                      \
  |  |  256|  8.68k|		result = (r);                  \
  |  |  257|  8.68k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 8.68k]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  8.68k|	}
  ------------------
  166|       |
  167|  13.1k|cleanup:
  168|  13.1k|	if (message != NULL) {
  ------------------
  |  Branch (168:6): [True: 8.83k, False: 4.35k]
  ------------------
  169|  8.83k|		dns_message_detach(&message);
  170|  8.83k|	}
  171|       |
  172|  13.1k|	return 0;
  173|  8.68k|}
dns_message_parse.c:parse_message:
   46|  21.9k|parse_message(isc_buffer_t *input, dns_message_t **messagep) {
   47|  21.9k|	isc_result_t result;
   48|  21.9k|	dns_message_t *message = NULL;
   49|       |
   50|  21.9k|	dns_message_create(mctx, NULL, NULL, DNS_MESSAGE_INTENTPARSE, &message);
   51|       |
   52|  21.9k|	result = dns_message_parse(message, input, DNS_MESSAGEPARSE_BESTEFFORT);
  ------------------
  |  |  202|  21.9k|	0x0002 /*%< return a message if a \
  ------------------
   53|  21.9k|	if (result == DNS_R_RECOVERABLE) {
  ------------------
  |  Branch (53:6): [True: 8.16k, False: 13.7k]
  ------------------
   54|  8.16k|		result = ISC_R_SUCCESS;
   55|  8.16k|	}
   56|       |
   57|  21.9k|	if (result == ISC_R_SUCCESS && messagep != NULL) {
  ------------------
  |  Branch (57:6): [True: 17.5k, False: 4.35k]
  |  Branch (57:33): [True: 17.5k, False: 0]
  ------------------
   58|  17.5k|		*messagep = message;
   59|  17.5k|	} else {
   60|  4.35k|		dns_message_detach(&message);
   61|  4.35k|	}
   62|       |
   63|  21.9k|	return result;
   64|  21.9k|}
dns_message_parse.c:print_message:
   67|  17.5k|print_message(dns_message_t *message) {
   68|  17.5k|	isc_result_t result;
   69|  17.5k|	isc_buffer_t buffer;
   70|       |
   71|  17.6k|	do {
   72|  17.6k|		isc_buffer_init(&buffer, output, output_len);
   73|  17.6k|		result = dns_message_totext(message, &dns_master_style_debug, 0,
   74|  17.6k|					    &buffer);
   75|  17.6k|		if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (75:7): [True: 14, False: 17.5k]
  ------------------
   76|     14|			isc_mem_put(mctx, output, output_len);
  ------------------
  |  |  148|     14|	do {                                                      \
  |  |  149|     14|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|     14|		(p) = NULL;                                       \
  |  |  151|     14|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 14]
  |  |  ------------------
  ------------------
   77|     14|			output_len *= 2;
   78|     14|			output = isc_mem_get(mctx, output_len);
  ------------------
  |  |  128|     14|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
   79|     14|			continue;
   80|     14|		}
   81|  17.6k|	} while (result == ISC_R_NOSPACE);
  ------------------
  |  Branch (81:11): [True: 14, False: 17.5k]
  ------------------
   82|       |
   83|  17.5k|	if (debug) {
  ------------------
  |  Branch (83:6): [True: 0, False: 17.5k]
  ------------------
   84|      0|		fprintf(stderr, "%.*s\n", (int)isc_buffer_usedlength(&buffer),
  ------------------
  |  |  157|      0|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
   85|      0|			output);
   86|      0|	}
   87|       |
   88|  17.5k|	return result;
   89|  17.5k|}
dns_message_parse.c:render_message:
  100|  8.91k|render_message(dns_message_t **messagep) {
  101|  8.91k|	isc_result_t result;
  102|  8.91k|	dns_message_t *message = *messagep;
  103|  8.91k|	isc_buffer_t buffer;
  104|  8.91k|	dns_compress_t cctx;
  105|       |
  106|  8.91k|	isc_buffer_init(&buffer, render_buf, sizeof(render_buf));
  107|       |
  108|  8.91k|	message->from_to_wire = DNS_MESSAGE_INTENTRENDER;
  109|  44.5k|	for (size_t i = 0; i < DNS_SECTION_MAX; i++) {
  ------------------
  |  Branch (109:21): [True: 35.6k, False: 8.91k]
  ------------------
  110|  35.6k|		message->counts[i] = 0;
  111|  35.6k|	}
  112|       |
  113|  8.91k|	dns_compress_init(&cctx, mctx, 0);
  114|       |
  115|  8.91k|	CHECKRESULT(result, dns_message_renderbegin(message, &cctx, &buffer));
  ------------------
  |  |   92|  8.91k|	{                                 \
  |  |   93|  8.91k|		r = (f);                  \
  |  |   94|  8.91k|		if (r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (94:7): [True: 0, False: 8.91k]
  |  |  ------------------
  |  |   95|      0|			goto cleanup;     \
  |  |   96|      0|		}                         \
  |  |   97|  8.91k|	}
  ------------------
  116|       |
  117|  8.91k|	CHECKRESULT(result, dns_message_rendersection(message,
  ------------------
  |  |   92|  8.91k|	{                                 \
  |  |   93|  8.91k|		r = (f);                  \
  |  |   94|  8.91k|		if (r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (94:7): [True: 0, False: 8.91k]
  |  |  ------------------
  |  |   95|      0|			goto cleanup;     \
  |  |   96|      0|		}                         \
  |  |   97|  8.91k|	}
  ------------------
  118|  8.91k|						      DNS_SECTION_QUESTION, 0));
  119|       |
  120|  8.91k|	CHECKRESULT(result,
  ------------------
  |  |   92|  8.91k|	{                                 \
  |  |   93|  8.91k|		r = (f);                  \
  |  |   94|  8.91k|		if (r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (94:7): [True: 8, False: 8.90k]
  |  |  ------------------
  |  |   95|      8|			goto cleanup;     \
  |  |   96|      8|		}                         \
  |  |   97|  8.91k|	}
  ------------------
  121|  8.91k|		    dns_message_rendersection(message, DNS_SECTION_ANSWER, 0));
  122|  8.90k|	CHECKRESULT(result, dns_message_rendersection(
  ------------------
  |  |   92|  8.90k|	{                                 \
  |  |   93|  8.90k|		r = (f);                  \
  |  |   94|  8.90k|		if (r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (94:7): [True: 78, False: 8.83k]
  |  |  ------------------
  |  |   95|     78|			goto cleanup;     \
  |  |   96|     78|		}                         \
  |  |   97|  8.90k|	}
  ------------------
  123|  8.90k|				    message, DNS_SECTION_AUTHORITY, 0));
  124|       |
  125|  8.83k|	CHECKRESULT(result, dns_message_rendersection(
  ------------------
  |  |   92|  8.83k|	{                                 \
  |  |   93|  8.83k|		r = (f);                  \
  |  |   94|  8.83k|		if (r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (94:7): [True: 68, False: 8.76k]
  |  |  ------------------
  |  |   95|     68|			goto cleanup;     \
  |  |   96|     68|		}                         \
  |  |   97|  8.83k|	}
  ------------------
  126|  8.83k|				    message, DNS_SECTION_ADDITIONAL, 0));
  127|       |
  128|  8.76k|	dns_message_renderend(message);
  129|       |
  130|  8.76k|	dns_compress_invalidate(&cctx);
  131|       |
  132|  8.76k|	message->from_to_wire = DNS_MESSAGE_INTENTPARSE;
  133|       |
  134|  8.76k|	dns_message_detach(messagep);
  135|       |
  136|  8.76k|	result = parse_message(&buffer, messagep);
  137|       |
  138|  8.76k|	return result;
  139|       |
  140|    154|cleanup:
  141|    154|	dns_compress_invalidate(&cctx);
  142|    154|	return result;
  143|  8.83k|}

dns__acl_initialize:
  470|      2|dns__acl_initialize(void) {}

dns_compress_init:
   34|  8.91k|		  dns_compress_flags_t flags) {
   35|  8.91k|	dns_compress_slot_t *set = NULL;
   36|  8.91k|	uint16_t mask;
   37|       |
   38|  8.91k|	REQUIRE(cctx != NULL);
  ------------------
  |  |  198|  8.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   39|  8.91k|	REQUIRE(mctx != NULL);
  ------------------
  |  |  198|  8.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|       |
   41|  8.91k|	if ((flags & DNS_COMPRESS_LARGE) != 0) {
  ------------------
  |  Branch (41:6): [True: 0, False: 8.91k]
  ------------------
   42|      0|		size_t count = (1 << DNS_COMPRESS_LARGEBITS);
   43|      0|		mask = count - 1;
   44|      0|		set = isc_mem_callocate(mctx, count, sizeof(*set));
  ------------------
  |  |  140|      0|	isc__mem_allocate((c), ISC_CHECKED_MUL((n), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  141|      0|			  ISC__MEM_ZERO _ISC_MEM_FILELINE)
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  ------------------
   45|  8.91k|	} else {
   46|  8.91k|		mask = ARRAY_SIZE(cctx->smallset) - 1;
  ------------------
  |  |   98|  8.91k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
   47|  8.91k|		set = cctx->smallset;
   48|  8.91k|	}
   49|       |
   50|       |	/*
   51|       |	 * The lifetime of this object is limited to the stack frame of the
   52|       |	 * caller, so we don't need to attach to the memory context.
   53|       |	 */
   54|  8.91k|	*cctx = (dns_compress_t){
   55|  8.91k|		.magic = CCTX_MAGIC,
  ------------------
  |  |   29|  8.91k|#define CCTX_MAGIC    ISC_MAGIC('C', 'C', 'T', 'X')
  |  |  ------------------
  |  |  |  |   31|  8.91k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
   56|  8.91k|		.flags = flags | DNS_COMPRESS_PERMITTED,
   57|  8.91k|		.mctx = mctx,
   58|  8.91k|		.mask = mask,
   59|  8.91k|		.set = set,
   60|  8.91k|		.coff = 0xffff,
   61|  8.91k|	};
   62|  8.91k|}
dns_compress_invalidate:
   65|  8.91k|dns_compress_invalidate(dns_compress_t *cctx) {
   66|  8.91k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|  8.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8.91k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|  8.91k|	if (cctx->set != cctx->smallset) {
  ------------------
  |  Branch (67:6): [True: 0, False: 8.91k]
  ------------------
   68|       |		isc_mem_free(cctx->mctx, cctx->set);
  ------------------
  |  |  164|      0|	do {                                                  \
  |  |  165|      0|		isc__mem_free((c), (p), 0 _ISC_MEM_FILELINE); \
  |  |  166|      0|		(p) = NULL;                                   \
  |  |  167|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (167:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
   69|      0|	}
   70|  8.91k|	*cctx = (dns_compress_t){ 0 };
   71|  8.91k|}
dns_compress_setmultiuse:
   74|   415k|dns_compress_setmultiuse(dns_compress_t *cctx, bool multi) {
   75|   415k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|   415k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   831k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 415k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 415k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   415k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   76|   415k|	if (multi) {
  ------------------
  |  Branch (76:6): [True: 157k, False: 258k]
  ------------------
   77|   157k|		cctx->flags |= DNS_COMPRESS_MULTIUSE;
   78|   258k|	} else {
   79|   258k|		cctx->flags &= ~DNS_COMPRESS_MULTIUSE;
   80|   258k|	}
   81|   415k|	cctx->coff = 0xffff;
   82|   415k|}
dns_compress_getmultiuse:
   85|   240k|dns_compress_getmultiuse(dns_compress_t *cctx) {
   86|   240k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|   240k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   480k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 240k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 240k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   240k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   87|   240k|	return (cctx->flags & DNS_COMPRESS_MULTIUSE) != 0;
   88|   240k|}
dns_compress_setpermitted:
   91|   258k|dns_compress_setpermitted(dns_compress_t *cctx, bool permitted) {
   92|   258k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|   258k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   516k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 258k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 258k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   258k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   93|   258k|	if (permitted) {
  ------------------
  |  Branch (93:6): [True: 237k, False: 21.4k]
  ------------------
   94|   237k|		cctx->flags |= DNS_COMPRESS_PERMITTED;
   95|   237k|	} else {
   96|  21.4k|		cctx->flags &= ~DNS_COMPRESS_PERMITTED;
   97|  21.4k|	}
   98|       |	dns_compress_setmultiuse(cctx, false);
   99|   258k|}
dns_compress_getpermitted:
  102|   263k|dns_compress_getpermitted(dns_compress_t *cctx) {
  103|   263k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|   263k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   527k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 263k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 263k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   263k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|   263k|	return (cctx->flags & DNS_COMPRESS_PERMITTED) != 0;
  105|   263k|}
dns_compress_name:
  297|   263k|		  unsigned int *return_coff) {
  298|   263k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|   263k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   527k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 263k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 263k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   263k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  299|   263k|	REQUIRE(ISC_BUFFER_VALID(buffer));
  ------------------
  |  |  198|   263k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   527k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 263k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 263k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   263k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  300|   263k|	REQUIRE(dns_name_isabsolute(name));
  ------------------
  |  |  198|   263k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   263k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 263k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   263k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  301|   263k|	REQUIRE(return_prefix != NULL);
  ------------------
  |  |  198|   263k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   263k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 263k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   263k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  302|   263k|	REQUIRE(return_coff != NULL);
  ------------------
  |  |  198|   263k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   263k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 263k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   263k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  303|   263k|	REQUIRE(*return_coff == 0);
  ------------------
  |  |  198|   263k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   263k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 263k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   263k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  304|       |
  305|   263k|	if ((cctx->flags & DNS_COMPRESS_DISABLED) != 0) {
  ------------------
  |  Branch (305:6): [True: 0, False: 263k]
  ------------------
  306|      0|		return;
  307|      0|	}
  308|       |
  309|   263k|	dns_offsets_t offsets;
  310|   263k|	size_t labels = dns_name_offsets(name, offsets);
  311|   263k|	INSIST(labels > 0);
  ------------------
  |  |  202|   263k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   263k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 263k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   263k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  312|       |
  313|   263k|	bool sensitive = (cctx->flags & DNS_COMPRESS_CASE) != 0;
  314|       |
  315|   263k|	uint16_t hash = HASH_INIT_DJB2;
  ------------------
  |  |   27|   263k|#define HASH_INIT_DJB2 5381
  ------------------
  316|   263k|	size_t label = labels - 1; /* skip the root label */
  317|       |
  318|       |	/*
  319|       |	 * find out how much of the name's suffix is in the hash set,
  320|       |	 * stepping backwards from the end one label at a time
  321|       |	 */
  322|   791k|	while (label-- > 0) {
  ------------------
  |  Branch (322:9): [True: 620k, False: 170k]
  ------------------
  323|   620k|		unsigned int prefix_len = offsets[label];
  324|   620k|		unsigned int suffix_len = name->length - prefix_len;
  325|   620k|		uint8_t *suffix_ptr = name->ndata + prefix_len;
  326|   620k|		hash = hash_label(hash, suffix_ptr, sensitive);
  327|       |
  328|  2.17M|		for (unsigned int probe = 0; true; probe++) {
  ------------------
  |  Branch (328:32): [True: 2.17M, Folded]
  ------------------
  329|  2.17M|			unsigned int slot = slot_index(cctx, hash, probe);
  330|  2.17M|			unsigned int coff = cctx->set[slot].coff;
  331|       |
  332|       |			/*
  333|       |			 * if we would have inserted this entry here (as in
  334|       |			 * insert_label() above), our suffix cannot be in the
  335|       |			 * hash set, so stop searching and switch to inserting
  336|       |			 * the rest of the name (its prefix) into the set
  337|       |			 */
  338|  2.17M|			if (coff == 0 || probe > probe_distance(cctx, slot)) {
  ------------------
  |  Branch (338:8): [True: 22.8k, False: 2.15M]
  |  Branch (338:21): [True: 70.3k, False: 2.08M]
  ------------------
  339|  93.2k|				insert(cctx, buffer, name, offsets, label, hash,
  340|  93.2k|				       probe);
  341|  93.2k|				return;
  342|  93.2k|			}
  343|       |
  344|       |			/*
  345|       |			 * this slot matches, so provisionally set the
  346|       |			 * return values and continue with the next label
  347|       |			 */
  348|  2.08M|			if (hash == cctx->set[slot].hash &&
  ------------------
  |  Branch (348:8): [True: 539k, False: 1.54M]
  ------------------
  349|   539k|			    match_suffix(buffer, coff, suffix_ptr, suffix_len,
  ------------------
  |  Branch (349:8): [True: 527k, False: 12.0k]
  ------------------
  350|   539k|					 *return_coff, sensitive))
  351|   527k|			{
  352|   527k|				*return_coff = coff;
  353|   527k|				*return_prefix = prefix_len;
  354|   527k|				break;
  355|   527k|			}
  356|  2.08M|		}
  357|   620k|	}
  358|   263k|}
dns_compress_rollback:
  361|  1.77k|dns_compress_rollback(dns_compress_t *cctx, unsigned int coff) {
  362|  1.77k|	REQUIRE(CCTX_VALID(cctx));
  ------------------
  |  |  198|  1.77k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.54k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.77k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.77k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.77k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  363|       |
  364|   115k|	for (unsigned int slot = 0; slot <= cctx->mask; slot++) {
  ------------------
  |  Branch (364:30): [True: 113k, False: 1.77k]
  ------------------
  365|   113k|		if (cctx->set[slot].coff < coff) {
  ------------------
  |  Branch (365:7): [True: 29.0k, False: 84.4k]
  ------------------
  366|  29.0k|			continue;
  367|  29.0k|		}
  368|       |		/*
  369|       |		 * The next few elements might be part of the deleted element's
  370|       |		 * probe sequence, so we slide them down to overwrite the entry
  371|       |		 * we are deleting and preserve the probe sequence. Moving an
  372|       |		 * element to the previous slot reduces its probe distance, so
  373|       |		 * we stop when we find an element whose probe distance is zero.
  374|       |		 */
  375|  84.4k|		unsigned int prev = slot;
  376|  84.4k|		unsigned int next = slot_index(cctx, prev, 1);
  377|  86.0k|		while (cctx->set[next].coff != 0 &&
  ------------------
  |  Branch (377:10): [True: 4.21k, False: 81.7k]
  ------------------
  378|  4.21k|		       probe_distance(cctx, next) != 0)
  ------------------
  |  Branch (378:10): [True: 1.54k, False: 2.67k]
  ------------------
  379|  1.54k|		{
  380|  1.54k|			cctx->set[prev] = cctx->set[next];
  381|  1.54k|			prev = next;
  382|  1.54k|			next = slot_index(cctx, prev, 1);
  383|  1.54k|		}
  384|  84.4k|		cctx->set[prev].coff = 0;
  385|  84.4k|		cctx->set[prev].hash = 0;
  386|  84.4k|		cctx->count--;
  387|  84.4k|	}
  388|  1.77k|}
compress.c:hash_label:
  116|   639k|hash_label(uint16_t init, uint8_t *ptr, bool sensitive) {
  117|   639k|	unsigned int len = ptr[0] + 1;
  118|   639k|	uint32_t hash = init;
  119|       |
  120|   639k|	if (sensitive) {
  ------------------
  |  Branch (120:6): [True: 0, False: 639k]
  ------------------
  121|      0|		while (len-- > 0) {
  ------------------
  |  Branch (121:10): [True: 0, False: 0]
  ------------------
  122|      0|			hash = hash * 33 + *ptr++;
  123|      0|		}
  124|   639k|	} else {
  125|       |		/* using the autovectorize-friendly tolower() */
  126|  10.6M|		while (len-- > 0) {
  ------------------
  |  Branch (126:10): [True: 9.98M, False: 639k]
  ------------------
  127|  9.98M|			hash = hash * 33 + isc__ascii_tolower1(*ptr++);
  128|  9.98M|		}
  129|   639k|	}
  130|       |
  131|   639k|	return isc_hash_bits32(hash, 16);
  132|   639k|}
compress.c:slot_index:
  235|  2.31M|slot_index(dns_compress_t *cctx, unsigned int hash, unsigned int probe) {
  236|  2.31M|	return (hash + probe) & cctx->mask;
  237|  2.31M|}
compress.c:probe_distance:
  230|  2.18M|probe_distance(dns_compress_t *cctx, unsigned int slot) {
  231|  2.18M|	return (slot - cctx->set[slot].hash) & cctx->mask;
  232|  2.18M|}
compress.c:insert:
  277|  93.2k|       unsigned int probe) {
  278|  93.2k|	bool sensitive = (cctx->flags & DNS_COMPRESS_CASE) != 0;
  279|       |	/*
  280|       |	 * this insertion loop continues from the search loop inside
  281|       |	 * dns_compress_name() below, iterating over the remaining labels
  282|       |	 * of the name and accumulating the hash in the same manner
  283|       |	 */
  284|   112k|	while (insert_label(cctx, buffer, offsets, label, hash, probe) &&
  ------------------
  |  Branch (284:9): [True: 31.2k, False: 81.4k]
  ------------------
  285|  31.2k|	       label-- > 0)
  ------------------
  |  Branch (285:9): [True: 19.4k, False: 11.7k]
  ------------------
  286|  19.4k|	{
  287|  19.4k|		unsigned int prefix_len = offsets[label];
  288|  19.4k|		uint8_t *suffix_ptr = name->ndata + prefix_len;
  289|  19.4k|		hash = hash_label(hash, suffix_ptr, sensitive);
  290|  19.4k|		probe = 0;
  291|  19.4k|	}
  292|  93.2k|}
compress.c:insert_label:
  242|   112k|	     unsigned int probe) {
  243|       |	/*
  244|       |	 * hash set entries must have valid compression offsets
  245|       |	 * and the hash set must not get too full (75% load)
  246|       |	 */
  247|   112k|	unsigned int prefix_len = offsets[label];
  248|   112k|	unsigned int coff = isc_buffer_usedlength(buffer) + prefix_len;
  ------------------
  |  |  157|   112k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
  249|   112k|	if (coff >= 0x4000 || cctx->count > cctx->mask * 3 / 4) {
  ------------------
  |  Branch (249:6): [True: 73.8k, False: 38.7k]
  |  Branch (249:24): [True: 7.57k, False: 31.2k]
  ------------------
  250|  81.4k|		return false;
  251|  81.4k|	}
  252|  49.7k|	for (;;) {
  253|  49.7k|		unsigned int slot = slot_index(cctx, hash, probe);
  254|       |		/* we can stop when we find an empty slot */
  255|  49.7k|		if (cctx->set[slot].coff == 0) {
  ------------------
  |  Branch (255:7): [True: 31.2k, False: 18.5k]
  ------------------
  256|  31.2k|			cctx->set[slot].hash = hash;
  257|  31.2k|			cctx->set[slot].coff = coff;
  258|  31.2k|			cctx->count++;
  259|  31.2k|			return true;
  260|  31.2k|		}
  261|       |		/* he steals from the rich and gives to the poor */
  262|  18.5k|		if (probe > probe_distance(cctx, slot)) {
  ------------------
  |  Branch (262:7): [True: 6.02k, False: 12.4k]
  ------------------
  263|  6.02k|			probe = probe_distance(cctx, slot);
  264|  6.02k|			ISC_SWAP(cctx->set[slot].hash, hash);
  ------------------
  |  |  305|  6.02k|	{                                 \
  |  |  306|  6.02k|		typeof(a) __tmp_swap = a; \
  |  |  307|  6.02k|		a = b;                    \
  |  |  308|  6.02k|		b = __tmp_swap;           \
  |  |  309|  6.02k|	}
  ------------------
  265|  6.02k|			ISC_SWAP(cctx->set[slot].coff, coff);
  ------------------
  |  |  305|  6.02k|	{                                 \
  |  |  306|  6.02k|		typeof(a) __tmp_swap = a; \
  |  |  307|  6.02k|		a = b;                    \
  |  |  308|  6.02k|		b = __tmp_swap;           \
  |  |  309|  6.02k|	}
  ------------------
  266|  6.02k|		}
  267|  18.5k|		probe++;
  268|  18.5k|	}
  269|  31.2k|}
compress.c:match_suffix:
  177|   539k|	     unsigned int slen, unsigned int old_coff, bool sensitive) {
  178|   539k|	uint8_t pptr[] = { 0xC0 | (old_coff >> 8), old_coff & 0xff };
  179|   539k|	uint8_t *bptr = isc_buffer_base(buffer);
  ------------------
  |  |  143|   539k|#define isc_buffer_base(b) ((void *)(b)->base) /*a*/
  ------------------
  180|   539k|	unsigned int blen = isc_buffer_usedlength(buffer);
  ------------------
  |  |  157|   539k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
  181|   539k|	unsigned int llen = sptr[0] + 1;
  182|       |
  183|   539k|	INSIST(llen <= 64 && llen < slen);
  ------------------
  |  |  202|   539k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.07M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 539k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 539k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   539k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  184|       |
  185|   539k|	if (blen < new_coff + llen) {
  ------------------
  |  Branch (185:6): [True: 56, False: 539k]
  ------------------
  186|     56|		return false;
  187|     56|	}
  188|       |
  189|   539k|	blen -= new_coff;
  190|   539k|	bptr += new_coff;
  191|       |
  192|       |	/* does the first label of the suffix appear here? */
  193|   539k|	if (!match_wirename(bptr, sptr, llen, sensitive)) {
  ------------------
  |  Branch (193:6): [True: 1.51k, False: 537k]
  ------------------
  194|  1.51k|		return false;
  195|  1.51k|	}
  196|       |
  197|       |	/* is this label followed by the previously matched suffix? */
  198|   537k|	if (old_coff == new_coff + llen) {
  ------------------
  |  Branch (198:6): [True: 417k, False: 120k]
  ------------------
  199|   417k|		return true;
  200|   417k|	}
  201|       |
  202|   120k|	blen -= llen;
  203|   120k|	bptr += llen;
  204|   120k|	slen -= llen;
  205|   120k|	sptr += llen;
  206|       |
  207|       |	/* are both labels followed by the root label? */
  208|   120k|	if (blen >= 1 && slen == 1 && bptr[0] == 0 && sptr[0] == 0) {
  ------------------
  |  Branch (208:6): [True: 120k, False: 3]
  |  Branch (208:19): [True: 101k, False: 18.6k]
  |  Branch (208:32): [True: 101k, False: 198]
  |  Branch (208:48): [True: 101k, False: 0]
  ------------------
  209|   101k|		return true;
  210|   101k|	}
  211|       |
  212|       |	/* is this label followed by a pointer to the previous match? */
  213|  18.8k|	if (blen >= 2 && bptr[0] == pptr[0] && bptr[1] == pptr[1]) {
  ------------------
  |  Branch (213:6): [True: 18.8k, False: 10]
  |  Branch (213:19): [True: 7.24k, False: 11.6k]
  |  Branch (213:41): [True: 6.85k, False: 386]
  ------------------
  214|  6.85k|		return true;
  215|  6.85k|	}
  216|       |
  217|       |	/* is this label followed by a copy of the rest of the suffix? */
  218|  12.0k|	return blen >= slen && match_wirename(bptr, sptr, slen, sensitive);
  ------------------
  |  Branch (218:9): [True: 8.20k, False: 3.81k]
  |  Branch (218:25): [True: 1.50k, False: 6.70k]
  ------------------
  219|  18.8k|}
compress.c:match_wirename:
  135|   547k|match_wirename(uint8_t *a, uint8_t *b, unsigned int len, bool sensitive) {
  136|   547k|	if (sensitive) {
  ------------------
  |  Branch (136:6): [True: 0, False: 547k]
  ------------------
  137|      0|		return memcmp(a, b, len) == 0;
  138|   547k|	} else {
  139|       |		/* label lengths are < 'A' so unaffected by tolower() */
  140|   547k|		return isc_ascii_lowerequal(a, b, len);
  141|   547k|	}
  142|   547k|}

dns__db_initialize:
   76|      2|dns__db_initialize(void) {
   77|      2|	isc_rwlock_init(&implock);
   78|       |
   79|      2|	ISC_LIST_INIT(implementations);
  ------------------
  |  |   43|      2|	do {                        \
  |  |   44|      2|		(list).head = NULL; \
  |  |   45|      2|		(list).tail = NULL; \
  |  |   46|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
   80|       |
   81|      2|	qpimp = (dns_dbimplementation_t){
   82|      2|		.name = "qpcache",
   83|      2|		.create = dns__qpcache_create,
   84|      2|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|      2|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|      2|	{                                         \
  |  |  |  |   27|      2|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      2|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|      2|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      2|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|      2|	}
  |  |  ------------------
  ------------------
   85|      2|	};
   86|       |
   87|      2|	qpzoneimp = (dns_dbimplementation_t){
   88|      2|		.name = "qpzone",
   89|      2|		.create = dns__qpzone_create,
   90|      2|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|      2|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|      2|	{                                         \
  |  |  |  |   27|      2|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      2|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|      2|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      2|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|      2|	}
  |  |  ------------------
  ------------------
   91|      2|	};
   92|       |
   93|      2|	ISC_LIST_APPEND(implementations, &qpimp, link);
  ------------------
  |  |  100|      2|	do {                                                  \
  |  |  101|      2|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|      2|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|      2|	do {                                            \
  |  |  |  |   89|      2|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 0, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   90|      0|			(list).tail->link.next = (elt); \
  |  |  |  |   91|      2|		} else {                                \
  |  |  |  |   92|      2|			(list).head = (elt);            \
  |  |  |  |   93|      2|		}                                       \
  |  |  |  |   94|      2|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|      2|		(elt)->link.next = NULL;                \
  |  |  |  |   96|      2|		(list).tail = (elt);                    \
  |  |  |  |   97|      2|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
   94|       |	ISC_LIST_APPEND(implementations, &qpzoneimp, link);
  ------------------
  |  |  100|      2|	do {                                                  \
  |  |  101|      2|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|      2|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|      2|	do {                                            \
  |  |  |  |   89|      2|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   90|      2|			(list).tail->link.next = (elt); \
  |  |  |  |   91|      2|		} else {                                \
  |  |  |  |   92|      0|			(list).head = (elt);            \
  |  |  |  |   93|      0|		}                                       \
  |  |  |  |   94|      2|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|      2|		(elt)->link.next = NULL;                \
  |  |  |  |   96|      2|		(list).tail = (elt);                    \
  |  |  |  |   97|      2|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 2]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
   95|      2|}

dns__dlz_initialize:
   86|      2|dns__dlz_initialize(void) {
   87|      2|	isc_rwlock_init(&dlz_implock);
   88|       |	ISC_LIST_INIT(dlz_implementations);
  ------------------
  |  |   43|      2|	do {                        \
  |  |   44|      2|		(list).head = NULL; \
  |  |   45|      2|		(list).tail = NULL; \
  |  |   46|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
   89|      2|}

dst__lib_initialize:
  198|      2|dst__lib_initialize(void) {
  199|      2|	isc_mem_create("dst", &dst__mctx);
  ------------------
  |  |  198|      2|#define isc_mem_create(name, cp) isc__mem_create((name), (cp)_ISC_MEM_FILELINE)
  ------------------
  200|       |
  201|      2|	dst__hmacmd5_init(&dst_t_func[DST_ALG_HMACMD5]);
  202|      2|	dst__hmacsha1_init(&dst_t_func[DST_ALG_HMACSHA1]);
  203|      2|	dst__hmacsha224_init(&dst_t_func[DST_ALG_HMACSHA224]);
  204|      2|	dst__hmacsha256_init(&dst_t_func[DST_ALG_HMACSHA256]);
  205|      2|	dst__hmacsha384_init(&dst_t_func[DST_ALG_HMACSHA384]);
  206|      2|	dst__hmacsha512_init(&dst_t_func[DST_ALG_HMACSHA512]);
  207|       |
  208|       |	/* RSASHA1 (NSEC3RSASHA1) is verify only in FIPS mode. */
  209|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA1], DST_ALG_RSASHA1);
  210|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_NSEC3RSASHA1],
  211|      2|			     DST_ALG_NSEC3RSASHA1);
  212|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA256], DST_ALG_RSASHA256);
  213|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA512], DST_ALG_RSASHA512);
  214|      2|	dst__opensslecdsa_init(&dst_t_func[DST_ALG_ECDSA256]);
  215|      2|	dst__opensslecdsa_init(&dst_t_func[DST_ALG_ECDSA384]);
  216|      2|	dst__openssleddsa_init(&dst_t_func[DST_ALG_ED25519], DST_ALG_ED25519);
  217|      2|#ifdef HAVE_OPENSSL_ED448
  218|      2|	dst__openssleddsa_init(&dst_t_func[DST_ALG_ED448], DST_ALG_ED448);
  219|      2|#endif /* ifdef HAVE_OPENSSL_ED448 */
  220|       |
  221|       |#if HAVE_GSSAPI
  222|       |	dst__gssapi_init(&dst_t_func[DST_ALG_GSSAPI]);
  223|       |#endif /* HAVE_GSSAPI */
  224|       |	/*
  225|       |	 * RSASHA256 using assigned OID 1.2.840.113549.1.1.11 as
  226|       |	 * a private OID example.
  227|       |	 */
  228|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA256PRIVATEOID],
  229|      2|			     DST_ALG_RSASHA256PRIVATEOID);
  230|       |	/*
  231|       |	 * RSASHA512 using assigned OID 1.2.840.113549.1.1.13 as
  232|       |	 * a private OID example.
  233|       |	 */
  234|      2|	dst__opensslrsa_init(&dst_t_func[DST_ALG_RSASHA512PRIVATEOID],
  235|      2|			     DST_ALG_RSASHA512PRIVATEOID);
  236|      2|}

dns__dyndb_initialize:
   55|      2|dns__dyndb_initialize(void) {
   56|      2|	isc_mutex_init(&dyndb_lock);
  ------------------
  |  |   68|      2|#define isc_mutex_init(mp)    isc__mutex_init(mp)
  |  |  ------------------
  |  |  |  |   79|      2|	{                                                                 \
  |  |  |  |   80|      2|		int _ret = pthread_mutex_init(mp, &isc__mutex_init_attr); \
  |  |  |  |   81|      2|		PTHREADS_RUNTIME_CHECK(pthread_mutex_init, _ret);         \
  |  |  |  |  ------------------
  |  |  |  |  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  ------------------
  |  |  |  |   82|      2|	}
  |  |  ------------------
  ------------------
   57|       |	ISC_LIST_INIT(dyndb_implementations);
  ------------------
  |  |   43|      2|	do {                        \
  |  |   44|      2|		(list).head = NULL; \
  |  |   45|      2|		(list).tail = NULL; \
  |  |   46|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
   58|      2|}

dns_fixedname_init:
   19|   950k|dns_fixedname_init(dns_fixedname_t *fixed) {
   20|   950k|	dns_name_init(&fixed->name);
   21|   950k|	isc_buffer_init(&fixed->buffer, fixed->data, DNS_NAME_MAXWIRE);
  ------------------
  |  |  190|   950k|#define DNS_NAME_MAXWIRE   255
  ------------------
   22|   950k|	dns_name_setbuffer(&fixed->name, &fixed->buffer);
   23|   950k|}
dns_fixedname_name:
   31|   711k|dns_fixedname_name(dns_fixedname_t *fixed) {
   32|   711k|	return &fixed->name;
   33|   711k|}
dns_fixedname_initname:
   36|   711k|dns_fixedname_initname(dns_fixedname_t *fixed) {
   37|   711k|	dns_fixedname_init(fixed);
   38|   711k|	return dns_fixedname_name(fixed);
   39|   711k|}

name.c:dns_decompress_getpermitted:
  251|  1.58M|dns_decompress_getpermitted(dns_decompress_t dctx) {
  252|  1.58M|	return dctx == DNS_DECOMPRESS_ALWAYS ||
  ------------------
  |  Branch (252:9): [True: 1.58M, False: 174]
  ------------------
  253|    174|	       dctx == DNS_DECOMPRESS_PERMITTED;
  ------------------
  |  Branch (253:9): [True: 0, False: 174]
  ------------------
  254|  1.58M|}
rdata.c:dns_decompress_setpermitted:
  237|   154k|dns_decompress_setpermitted(dns_decompress_t dctx, bool permitted) {
  238|   154k|	if (dctx == DNS_DECOMPRESS_NEVER || dctx == DNS_DECOMPRESS_ALWAYS) {
  ------------------
  |  Branch (238:6): [True: 0, False: 154k]
  |  Branch (238:38): [True: 154k, False: 0]
  ------------------
  239|   154k|		return dctx;
  240|   154k|	} else if (permitted) {
  ------------------
  |  Branch (240:13): [True: 0, False: 0]
  ------------------
  241|      0|		return DNS_DECOMPRESS_PERMITTED;
  242|      0|	} else {
  243|      0|		return DNS_DECOMPRESS_DEFAULT;
  244|      0|	}
  245|   154k|}

dns_lib_initialize:
   36|      2|dns_lib_initialize(void) {
   37|      2|	isc__lib_initialize();
   38|      2|	dns__lib_initialize();
   39|      2|}

message.c:dns_name_reset:
  229|  21.6k|dns_name_reset(dns_name_t *name) {
  230|  21.6k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  21.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  231|  21.6k|	REQUIRE(DNS_NAME_BINDABLE(name));
  ------------------
  |  |  198|  21.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  232|       |
  233|  21.6k|	name->ndata = NULL;
  234|  21.6k|	name->length = 0;
  235|  21.6k|	name->attributes.absolute = false;
  236|  21.6k|	if (name->buffer != NULL) {
  ------------------
  |  Branch (236:6): [True: 21.6k, False: 0]
  ------------------
  237|  21.6k|		isc_buffer_clear(name->buffer);
  238|  21.6k|	}
  239|  21.6k|}
message.c:dns_name_init:
  209|  20.8k|dns_name_init(dns_name_t *name) {
  210|  20.8k|	*name = (dns_name_t){
  211|  20.8k|		.magic = DNS_NAME_MAGIC,
  ------------------
  |  |  121|  20.8k|#define DNS_NAME_MAGIC	  ISC_MAGIC('D', 'N', 'S', 'n')
  |  |  ------------------
  |  |  |  |   31|  20.8k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  212|  20.8k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  20.8k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  20.8k|	{                                         \
  |  |  |  |   27|  20.8k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  20.8k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  20.8k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  20.8k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  20.8k|	}
  |  |  ------------------
  ------------------
  213|       |		.list = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  20.8k|	{                     \
  |  |   22|  20.8k|		.head = NULL, \
  |  |   23|  20.8k|		.tail = NULL, \
  |  |   24|  20.8k|	}
  ------------------
  214|  20.8k|	};
  215|  20.8k|}
message.c:dns_name_countlabels:
  595|  3.70k|dns_name_countlabels(const dns_name_t *name) {
  596|  3.70k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  3.70k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  7.40k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 3.70k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 3.70k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.70k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  597|       |
  598|       |	return dns_name_offsets(name, NULL);
  599|  3.70k|}
message.c:dns_name_split:
 1025|    762|	       dns_name_t *prefix, dns_name_t *suffix) {
 1026|    762|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|    762|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    762|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1027|    762|	REQUIRE(suffixlabels > 0);
  ------------------
  |  |  198|    762|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    762|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 762, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    762|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1028|    762|	REQUIRE(prefix != NULL || suffix != NULL);
  ------------------
  |  |  198|    762|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 762]
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    762|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1029|    762|	REQUIRE(prefix == NULL ||
  ------------------
  |  |  198|    762|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    762|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    762|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1030|    762|		(DNS_NAME_VALID(prefix) && DNS_NAME_BINDABLE(prefix)));
 1031|    762|	REQUIRE(suffix == NULL ||
  ------------------
  |  |  198|    762|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.09k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 762]
  |  |  |  |  ------------------
  |  |  |  |   43|    762|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1032|    762|		(DNS_NAME_VALID(suffix) && DNS_NAME_BINDABLE(suffix)));
 1033|       |
 1034|    762|	uint8_t labels = dns_name_countlabels(name);
 1035|    762|	INSIST(suffixlabels <= labels);
  ------------------
  |  |  202|    762|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    762|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 762, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    762|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1036|       |
 1037|    762|	if (prefix != NULL) {
  ------------------
  |  Branch (1037:6): [True: 0, False: 762]
  ------------------
 1038|      0|		dns_name_getlabelsequence(name, 0, labels - suffixlabels,
 1039|      0|					  prefix);
 1040|      0|	}
 1041|    762|	if (suffix != NULL) {
  ------------------
  |  Branch (1041:6): [True: 762, False: 0]
  ------------------
 1042|    762|		dns_name_getlabelsequence(name, labels - suffixlabels,
 1043|    762|					  suffixlabels, suffix);
 1044|    762|	}
 1045|    762|}
name.c:dns_name_countlabels:
  595|   871k|dns_name_countlabels(const dns_name_t *name) {
  596|   871k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   871k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.74M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 871k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 871k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   871k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  597|       |
  598|       |	return dns_name_offsets(name, NULL);
  599|   871k|}
rdata.c:dns_name_init:
  209|  1.60M|dns_name_init(dns_name_t *name) {
  210|  1.60M|	*name = (dns_name_t){
  211|  1.60M|		.magic = DNS_NAME_MAGIC,
  ------------------
  |  |  121|  1.60M|#define DNS_NAME_MAGIC	  ISC_MAGIC('D', 'N', 'S', 'n')
  |  |  ------------------
  |  |  |  |   31|  1.60M|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  212|  1.60M|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  1.60M|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  1.60M|	{                                         \
  |  |  |  |   27|  1.60M|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  1.60M|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  1.60M|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  1.60M|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  1.60M|	}
  |  |  ------------------
  ------------------
  213|       |		.list = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  1.60M|	{                     \
  |  |   22|  1.60M|		.head = NULL, \
  |  |   23|  1.60M|		.tail = NULL, \
  |  |   24|  1.60M|	}
  ------------------
  214|  1.60M|	};
  215|  1.60M|}
fixedname.c:dns_name_init:
  209|   950k|dns_name_init(dns_name_t *name) {
  210|   950k|	*name = (dns_name_t){
  211|   950k|		.magic = DNS_NAME_MAGIC,
  ------------------
  |  |  121|   950k|#define DNS_NAME_MAGIC	  ISC_MAGIC('D', 'N', 'S', 'n')
  |  |  ------------------
  |  |  |  |   31|   950k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  212|   950k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|   950k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|   950k|	{                                         \
  |  |  |  |   27|   950k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   950k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|   950k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   950k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|   950k|	}
  |  |  ------------------
  ------------------
  213|       |		.list = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|   950k|	{                     \
  |  |   22|   950k|		.head = NULL, \
  |  |   23|   950k|		.tail = NULL, \
  |  |   24|   950k|	}
  ------------------
  214|   950k|	};
  215|   950k|}
fixedname.c:dns_name_setbuffer:
  298|   950k|dns_name_setbuffer(dns_name_t *name, isc_buffer_t *buffer) {
  299|   950k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   950k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.90M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 950k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 950k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   950k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  300|   950k|	REQUIRE((buffer != NULL && name->buffer == NULL) || (buffer == NULL));
  ------------------
  |  |  198|   950k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.85M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 950k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 950k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   950k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  301|       |
  302|   950k|	name->buffer = buffer;
  303|   950k|}

message.c:dns_rdatatype_ismeta:
  581|  4.04k|dns_rdatatype_ismeta(dns_rdatatype_t type) {
  582|  4.04k|	return (dns_rdatatype_attributes(type) & DNS_RDATATYPEATTR_META) != 0;
  583|  4.04k|}
message.c:dns_rdatatype_issig:
  735|  3.67k|dns_rdatatype_issig(dns_rdatatype_t type) {
  736|  3.67k|	return type == dns_rdatatype_rrsig;
  ------------------
  |  |  160|  3.67k|#define dns_rdatatype_rrsig	((dns_rdatatype_t)dns_rdatatype_rrsig)
  ------------------
  737|  3.67k|}
message.c:dns_rdatatype_questiononly:
  622|   262k|dns_rdatatype_questiononly(dns_rdatatype_t type) {
  623|   262k|	return (dns_rdatatype_attributes(type) &
  624|   262k|		DNS_RDATATYPEATTR_QUESTIONONLY) != 0;
  625|   262k|}
message.c:dns_rdatatype_issingleton:
  594|   165k|dns_rdatatype_issingleton(dns_rdatatype_t type) {
  595|   165k|	return (dns_rdatatype_attributes(type) & DNS_RDATATYPEATTR_SINGLETON) !=
  596|   165k|	       0;
  597|   165k|}
rdata.c:dns_rdatatype_isknown:
  717|   119k|dns_rdatatype_isknown(dns_rdatatype_t type) {
  718|   119k|	return (dns_rdatatype_attributes(type) & DNS_RDATATYPEATTR_UNKNOWN) ==
  719|   119k|	       0;
  720|   119k|}

dns__lib_initialize:
   44|      2|dns__lib_initialize(void) {
   45|      2|	if (isc_refcount_increment0(&dns__lib_references) > 0) {
  ------------------
  |  |   68|      2|	({                                                 \
  |  |   69|      2|		uint_fast32_t __v;                         \
  |  |   70|      2|		__v = atomic_fetch_add_release(target, 1); \
  |  |  ------------------
  |  |  |  |   52|      2|	atomic_fetch_add_explicit((o), (v), memory_order_release)
  |  |  ------------------
  |  |   71|      2|		INSIST(__v < UINT32_MAX);                  \
  |  |  ------------------
  |  |  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   72|      2|		__v;                                       \
  |  |   73|      2|	})
  ------------------
  |  Branch (45:6): [True: 0, False: 2]
  ------------------
   46|      0|		return;
   47|      0|	}
   48|       |
   49|      2|	dst__lib_initialize();
   50|      2|	dns__acl_initialize();
   51|      2|	dns__dlz_initialize();
   52|      2|	dns__db_initialize();
   53|      2|	dns__dyndb_initialize();
   54|      2|	dns__qp_initialize();
   55|      2|	dns__qpzone_initialize();
   56|      2|	dns__zone_keymgmt_initialize();
   57|      2|}

dns_master_rdatasettotext:
  910|   120k|			  isc_buffer_t *target) {
  911|   120k|	dns_totext_ctx_t ctx;
  912|   120k|	isc_result_t result;
  913|   120k|	result = totext_ctx_init(style, indent, &ctx);
  914|   120k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (914:6): [True: 0, False: 120k]
  ------------------
  915|      0|		UNEXPECTED_ERROR("could not set master file style");
  ------------------
  |  |  217|      0|	isc_error_unexpected(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  916|      0|		return ISC_R_UNEXPECTED;
  917|      0|	}
  918|       |
  919|   120k|	return rdataset_totext(rdataset, owner_name, &ctx, false, target);
  920|   120k|}
dns_master_questiontotext:
  926|   118k|			  isc_buffer_t *target) {
  927|   118k|	dns_totext_ctx_t ctx;
  928|   118k|	isc_result_t result;
  929|   118k|	result = totext_ctx_init(style, NULL, &ctx);
  930|   118k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (930:6): [True: 0, False: 118k]
  ------------------
  931|      0|		UNEXPECTED_ERROR("could not set master file style");
  ------------------
  |  |  217|      0|	isc_error_unexpected(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  932|      0|		return ISC_R_UNEXPECTED;
  933|      0|	}
  934|       |
  935|   118k|	return question_totext(rdataset, owner_name, &ctx, false, target);
  936|   118k|}
dns_master_styleflags:
 1885|   860k|dns_master_styleflags(const dns_master_style_t *style) {
 1886|   860k|	REQUIRE(style != NULL);
  ------------------
  |  |  198|   860k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   860k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 860k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   860k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1887|   860k|	return style->flags;
 1888|   860k|}
masterdump.c:totext_ctx_init:
  337|   239k|		dns_totext_ctx_t *ctx) {
  338|   239k|	isc_result_t result;
  339|       |
  340|   239k|	REQUIRE(style->tab_width != 0);
  ------------------
  |  |  198|   239k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   239k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 239k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   239k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  341|       |
  342|   239k|	if (indentctx == NULL) {
  ------------------
  |  Branch (342:6): [True: 118k, False: 120k]
  ------------------
  343|   118k|		if ((style->flags & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|   118k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (343:7): [True: 0, False: 118k]
  ------------------
  344|      0|			indentctx = &default_yamlindent;
  345|   118k|		} else {
  346|   118k|			indentctx = &default_indent;
  347|   118k|		}
  348|   118k|	}
  349|       |
  350|   239k|	ctx->style = *style;
  351|   239k|	ctx->class_printed = false;
  352|       |
  353|   239k|	dns_fixedname_init(&ctx->origin_fixname);
  354|       |
  355|       |	/*
  356|       |	 * Set up the line break string if needed.
  357|       |	 */
  358|   239k|	if ((ctx->style.flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|   239k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (358:6): [True: 0, False: 239k]
  ------------------
  359|      0|		isc_buffer_t buf;
  360|      0|		isc_region_t r;
  361|      0|		unsigned int col = 0;
  362|       |
  363|      0|		isc_buffer_init(&buf, ctx->linebreak_buf,
  364|      0|				sizeof(ctx->linebreak_buf));
  365|       |
  366|      0|		isc_buffer_availableregion(&buf, &r);
  367|      0|		if (r.length < 1) {
  ------------------
  |  Branch (367:7): [True: 0, False: 0]
  ------------------
  368|      0|			return DNS_R_TEXTTOOLONG;
  369|      0|		}
  370|      0|		r.base[0] = '\n';
  371|      0|		isc_buffer_add(&buf, 1);
  372|       |
  373|      0|		if ((ctx->style.flags & DNS_STYLEFLAG_INDENT) != 0 ||
  ------------------
  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  ------------------
  |  Branch (373:7): [True: 0, False: 0]
  ------------------
  374|      0|		    (ctx->style.flags & DNS_STYLEFLAG_YAML) != 0)
  ------------------
  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (374:7): [True: 0, False: 0]
  ------------------
  375|      0|		{
  376|      0|			unsigned int i, len = strlen(indentctx->string);
  377|      0|			for (i = 0; i < indentctx->count; i++) {
  ------------------
  |  Branch (377:16): [True: 0, False: 0]
  ------------------
  378|      0|				if (isc_buffer_availablelength(&buf) < len) {
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (378:9): [True: 0, False: 0]
  ------------------
  379|      0|					return DNS_R_TEXTTOOLONG;
  380|      0|				}
  381|      0|				isc_buffer_putstr(&buf, indentctx->string);
  382|      0|			}
  383|      0|		}
  384|       |
  385|      0|		if ((ctx->style.flags & DNS_STYLEFLAG_COMMENTDATA) != 0) {
  ------------------
  |  |   98|      0|#define DNS_STYLEFLAG_COMMENTDATA 0x010000000ULL
  ------------------
  |  Branch (385:7): [True: 0, False: 0]
  ------------------
  386|      0|			isc_buffer_availableregion(&buf, &r);
  387|      0|			if (r.length < 1) {
  ------------------
  |  Branch (387:8): [True: 0, False: 0]
  ------------------
  388|      0|				return DNS_R_TEXTTOOLONG;
  389|      0|			}
  390|      0|			r.base[0] = ';';
  391|      0|			isc_buffer_add(&buf, 1);
  392|      0|		}
  393|       |
  394|      0|		result = indent(&col, ctx->style.rdata_column,
  395|      0|				ctx->style.tab_width, &buf);
  396|       |		/*
  397|       |		 * Do not return ISC_R_NOSPACE if the line break string
  398|       |		 * buffer is too small, because that would just make
  399|       |		 * dump_rdataset() retry indefinitely with ever
  400|       |		 * bigger target buffers.  That's a different buffer,
  401|       |		 * so it won't help.  Use DNS_R_TEXTTOOLONG as a substitute.
  402|       |		 */
  403|      0|		if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (403:7): [True: 0, False: 0]
  ------------------
  404|      0|			return DNS_R_TEXTTOOLONG;
  405|      0|		}
  406|      0|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (406:7): [True: 0, False: 0]
  ------------------
  407|      0|			return result;
  408|      0|		}
  409|       |
  410|      0|		isc_buffer_availableregion(&buf, &r);
  411|      0|		if (r.length < 1) {
  ------------------
  |  Branch (411:7): [True: 0, False: 0]
  ------------------
  412|      0|			return DNS_R_TEXTTOOLONG;
  413|      0|		}
  414|      0|		r.base[0] = '\0';
  415|      0|		isc_buffer_add(&buf, 1);
  416|      0|		ctx->linebreak = ctx->linebreak_buf;
  417|   239k|	} else {
  418|   239k|		ctx->linebreak = NULL;
  419|   239k|	}
  420|       |
  421|   239k|	ctx->origin = NULL;
  422|   239k|	ctx->neworigin = NULL;
  423|   239k|	ctx->current_ttl = 0;
  424|   239k|	ctx->current_ttl_valid = false;
  425|   239k|	ctx->serve_stale_ttl = 0;
  426|   239k|	ctx->indent = *indentctx;
  427|       |
  428|   239k|	return ISC_R_SUCCESS;
  429|   239k|}
masterdump.c:indent:
  272|  1.25M|       isc_buffer_t *target) {
  273|  1.25M|	isc_region_t r;
  274|  1.25M|	unsigned char *p;
  275|  1.25M|	unsigned int from;
  276|  1.25M|	int ntabs, nspaces, t;
  277|       |
  278|  1.25M|	from = *current;
  279|       |
  280|  1.25M|	if (to < from + 1) {
  ------------------
  |  Branch (280:6): [True: 690k, False: 568k]
  ------------------
  281|   690k|		to = from + 1;
  282|   690k|	}
  283|       |
  284|  1.25M|	ntabs = to / tabwidth - from / tabwidth;
  285|  1.25M|	if (ntabs < 0) {
  ------------------
  |  Branch (285:6): [True: 0, False: 1.25M]
  ------------------
  286|      0|		ntabs = 0;
  287|      0|	}
  288|       |
  289|  1.25M|	if (ntabs > 0) {
  ------------------
  |  Branch (289:6): [True: 603k, False: 655k]
  ------------------
  290|   603k|		isc_buffer_availableregion(target, &r);
  291|   603k|		if (r.length < (unsigned int)ntabs) {
  ------------------
  |  Branch (291:7): [True: 2, False: 603k]
  ------------------
  292|      2|			return ISC_R_NOSPACE;
  293|      2|		}
  294|   603k|		p = r.base;
  295|       |
  296|   603k|		t = ntabs;
  297|  1.20M|		while (t) {
  ------------------
  |  Branch (297:10): [True: 603k, False: 603k]
  ------------------
  298|   603k|			int n = t;
  299|   603k|			if (n > N_TABS) {
  ------------------
  |  |  231|   603k|#define N_TABS 10
  ------------------
  |  Branch (299:8): [True: 0, False: 603k]
  ------------------
  300|      0|				n = N_TABS;
  ------------------
  |  |  231|      0|#define N_TABS 10
  ------------------
  301|      0|			}
  302|   603k|			memmove(p, tabs, n);
  303|   603k|			p += n;
  304|   603k|			t -= n;
  305|   603k|		}
  306|   603k|		isc_buffer_add(target, ntabs);
  307|   603k|		from = (to / tabwidth) * tabwidth;
  308|   603k|	}
  309|       |
  310|  1.25M|	nspaces = to - from;
  311|  1.25M|	INSIST(nspaces >= 0);
  ------------------
  |  |  202|  1.25M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.25M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.25M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.25M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  312|       |
  313|  1.25M|	isc_buffer_availableregion(target, &r);
  314|  1.25M|	if (r.length < (unsigned int)nspaces) {
  ------------------
  |  Branch (314:6): [True: 0, False: 1.25M]
  ------------------
  315|      0|		return ISC_R_NOSPACE;
  316|      0|	}
  317|  1.25M|	p = r.base;
  318|       |
  319|  1.25M|	t = nspaces;
  320|  1.91M|	while (t) {
  ------------------
  |  Branch (320:9): [True: 655k, False: 1.25M]
  ------------------
  321|   655k|		int n = t;
  322|   655k|		if (n > N_SPACES) {
  ------------------
  |  |  228|   655k|#define N_SPACES 10
  ------------------
  |  Branch (322:7): [True: 0, False: 655k]
  ------------------
  323|      0|			n = N_SPACES;
  ------------------
  |  |  228|      0|#define N_SPACES 10
  ------------------
  324|      0|		}
  325|   655k|		memmove(p, spaces, n);
  326|   655k|		p += n;
  327|   655k|		t -= n;
  328|   655k|	}
  329|  1.25M|	isc_buffer_add(target, nspaces);
  330|       |
  331|  1.25M|	*current = to;
  332|  1.25M|	return ISC_R_SUCCESS;
  333|  1.25M|}
masterdump.c:question_totext:
  808|   118k|		isc_buffer_t *target) {
  809|   118k|	unsigned int column;
  810|   118k|	isc_result_t result;
  811|   118k|	char *start = NULL;
  812|       |
  813|   118k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   118k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   237k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 118k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 118k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   118k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  814|   118k|	result = dns_rdataset_first(rdataset);
  815|   118k|	REQUIRE(result == ISC_R_NOMORE);
  ------------------
  |  |  198|   118k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   118k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 118k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   118k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  816|       |
  817|   118k|	column = 0;
  818|       |
  819|   118k|	if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|   118k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (819:6): [True: 0, False: 118k]
  ------------------
  820|      0|		RETERR(str_totext("- '", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  821|      0|		start = isc_buffer_used(target);
  ------------------
  |  |  149|      0|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  822|      0|	}
  823|       |
  824|       |	/* Owner name */
  825|   118k|	{
  826|   118k|		unsigned int name_start = target->used;
  827|   118k|		unsigned int opts = omit_final_dot ? DNS_NAME_OMITFINALDOT : 0;
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (827:23): [True: 0, False: 118k]
  ------------------
  828|   118k|		RETERR(dns_name_totext(owner_name, opts, target));
  ------------------
  |  |  276|   118k|	{                                  \
  |  |  277|   118k|		isc_result_t _r = (x);     \
  |  |  278|   118k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 118k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   118k|	}
  ------------------
  829|   118k|		column += target->used - name_start;
  830|   118k|	}
  831|       |
  832|       |	/* Class */
  833|      0|	{
  834|   118k|		unsigned int class_start;
  835|   118k|		INDENT_TO(class_column);
  ------------------
  |  |  432|   118k|	do {                                                                  \
  |  |  433|   118k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   118k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 118k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   118k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 0, False: 118k]
  |  |  ------------------
  |  |  438|   118k|					    ctx->style.tab_width, target)) != \
  |  |  439|   118k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   118k|			return ((result));                                    \
  |  |  441|   118k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 118k]
  |  |  ------------------
  ------------------
  836|   118k|		class_start = target->used;
  837|   118k|		if ((ctx->style.flags & DNS_STYLEFLAG_UNKNOWNFORMAT) != 0) {
  ------------------
  |  |  201|   118k|#define DNS_STYLEFLAG_UNKNOWNFORMAT 0x00000010ULL
  ------------------
  |  Branch (837:7): [True: 0, False: 118k]
  ------------------
  838|      0|			result = dns_rdataclass_tounknowntext(rdataset->rdclass,
  839|      0|							      target);
  840|   118k|		} else {
  841|   118k|			result = dns_rdataclass_totext(rdataset->rdclass,
  842|   118k|						       target);
  843|   118k|		}
  844|   118k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (844:7): [True: 0, False: 118k]
  ------------------
  845|      0|			return result;
  846|      0|		}
  847|   118k|		column += (target->used - class_start);
  848|   118k|	}
  849|       |
  850|       |	/* Type */
  851|      0|	{
  852|   118k|		unsigned int type_start;
  853|   118k|		INDENT_TO(type_column);
  ------------------
  |  |  432|   118k|	do {                                                                  \
  |  |  433|   118k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   118k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 118k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   118k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 0, False: 118k]
  |  |  ------------------
  |  |  438|   118k|					    ctx->style.tab_width, target)) != \
  |  |  439|   118k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   118k|			return ((result));                                    \
  |  |  441|   118k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 118k]
  |  |  ------------------
  ------------------
  854|   118k|		type_start = target->used;
  855|   118k|		if ((ctx->style.flags & DNS_STYLEFLAG_UNKNOWNFORMAT) != 0) {
  ------------------
  |  |  201|   118k|#define DNS_STYLEFLAG_UNKNOWNFORMAT 0x00000010ULL
  ------------------
  |  Branch (855:7): [True: 0, False: 118k]
  ------------------
  856|      0|			result = dns_rdatatype_tounknowntext(rdataset->type,
  857|      0|							     target);
  858|   118k|		} else {
  859|   118k|			result = dns_rdatatype_totext(rdataset->type, target);
  860|   118k|		}
  861|   118k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (861:7): [True: 0, False: 118k]
  ------------------
  862|      0|			return result;
  863|      0|		}
  864|   118k|		column += (target->used - type_start);
  865|   118k|	}
  866|       |
  867|   118k|	if (start != NULL) {
  ------------------
  |  Branch (867:6): [True: 0, False: 118k]
  ------------------
  868|      0|		RETERR(yaml_stringify(target, start));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  869|      0|		RETERR(str_totext("\'", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  870|      0|	}
  871|   118k|	RETERR(str_totext("\n", target));
  ------------------
  |  |  276|   118k|	{                                  \
  |  |  277|   118k|		isc_result_t _r = (x);     \
  |  |  278|   118k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 118k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   118k|	}
  ------------------
  872|       |
  873|   118k|	return ISC_R_SUCCESS;
  874|   118k|}
masterdump.c:str_totext:
  444|   374k|str_totext(const char *source, isc_buffer_t *target) {
  445|   374k|	unsigned int l;
  446|   374k|	isc_region_t region;
  447|       |
  448|   374k|	isc_buffer_availableregion(target, &region);
  449|   374k|	l = strlen(source);
  450|       |
  451|   374k|	if (l > region.length) {
  ------------------
  |  Branch (451:6): [True: 1, False: 374k]
  ------------------
  452|      1|		return ISC_R_NOSPACE;
  453|      1|	}
  454|       |
  455|   374k|	memmove(region.base, source, l);
  456|   374k|	isc_buffer_add(target, l);
  457|   374k|	return ISC_R_SUCCESS;
  458|   374k|}
masterdump.c:rdataset_totext:
  568|   120k|		isc_buffer_t *target) {
  569|   120k|	isc_result_t result;
  570|   120k|	unsigned int column;
  571|   120k|	bool first = true;
  572|   120k|	uint32_t current_ttl;
  573|   120k|	bool current_ttl_valid;
  574|   120k|	dns_rdatatype_t type;
  575|   120k|	unsigned int type_start;
  576|   120k|	dns_fixedname_t fixed;
  577|   120k|	dns_name_t *name = NULL;
  578|   120k|	unsigned int i;
  579|   120k|	char *start = NULL;
  580|       |
  581|   120k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   120k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   240k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 120k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 120k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   120k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  582|       |
  583|   120k|	current_ttl = ctx->current_ttl;
  584|   120k|	current_ttl_valid = ctx->current_ttl_valid;
  585|       |
  586|   120k|	if (owner_name != NULL) {
  ------------------
  |  Branch (586:6): [True: 120k, False: 0]
  ------------------
  587|   120k|		name = dns_fixedname_initname(&fixed);
  588|   120k|		dns_name_copy(owner_name, name);
  589|   120k|		dns_rdataset_getownercase(rdataset, name);
  590|   120k|	}
  591|       |
  592|   255k|	DNS_RDATASET_FOREACH(rdataset) {
  ------------------
  |  |  267|   120k|	DNS_RDATASET_FOREACH_RES(rds, DNS__RDATASET_CONCAT(x, __LINE__))
  |  |  ------------------
  |  |  |  |  264|   120k|	for (isc_result_t res = dns_rdataset_first((rds));       \
  |  |  |  |  265|   375k|	     res == ISC_R_SUCCESS; res = dns_rdataset_next((rds)))
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (265:7): [True: 255k, False: 120k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  593|   255k|		column = 0;
  594|       |
  595|       |		/*
  596|       |		 * Indent?
  597|       |		 */
  598|   255k|		if ((ctx->style.flags & DNS_STYLEFLAG_INDENT) != 0 ||
  ------------------
  |  |  104|   255k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  ------------------
  |  Branch (598:7): [True: 0, False: 255k]
  ------------------
  599|   255k|		    (ctx->style.flags & DNS_STYLEFLAG_YAML) != 0)
  ------------------
  |  |  107|   255k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (599:7): [True: 0, False: 255k]
  ------------------
  600|      0|		{
  601|      0|			for (i = 0; i < ctx->indent.count; i++) {
  ------------------
  |  Branch (601:16): [True: 0, False: 0]
  ------------------
  602|      0|				RETERR(str_totext(ctx->indent.string, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  603|      0|			}
  604|      0|		}
  605|       |
  606|       |		/*
  607|       |		 * YAML or comment prefix?
  608|       |		 */
  609|   255k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|   255k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (609:7): [True: 0, False: 255k]
  ------------------
  610|      0|			RETERR(str_totext("- '", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  611|      0|			start = isc_buffer_used(target);
  ------------------
  |  |  149|      0|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  612|   255k|		} else if ((ctx->style.flags & DNS_STYLEFLAG_COMMENTDATA) != 0)
  ------------------
  |  |   98|   255k|#define DNS_STYLEFLAG_COMMENTDATA 0x010000000ULL
  ------------------
  |  Branch (612:14): [True: 0, False: 255k]
  ------------------
  613|      0|		{
  614|      0|			RETERR(str_totext(";", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  615|      0|		}
  616|       |
  617|       |		/*
  618|       |		 * Owner name.
  619|       |		 */
  620|   255k|		if (name != NULL &&
  ------------------
  |  Branch (620:7): [True: 255k, False: 0]
  ------------------
  621|   255k|		    !((ctx->style.flags & DNS_STYLEFLAG_OMIT_OWNER) != 0 &&
  ------------------
  |  |   43|   255k|#define DNS_STYLEFLAG_OMIT_OWNER 0x000010000ULL
  ------------------
  |  Branch (621:9): [True: 0, False: 255k]
  ------------------
  622|      0|		      !first))
  ------------------
  |  Branch (622:9): [True: 0, False: 0]
  ------------------
  623|   255k|		{
  624|   255k|			unsigned int name_start = target->used;
  625|   255k|			RETERR(dns_name_totext(
  ------------------
  |  |  276|   255k|	{                                  \
  |  |  277|   510k|		isc_result_t _r = (x);     \
  |  |  ------------------
  |  |  |  Branch (277:22): [True: 0, False: 255k]
  |  |  ------------------
  |  |  278|   255k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 255k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   255k|	}
  ------------------
  626|   255k|				name,
  627|   255k|				omit_final_dot ? DNS_NAME_OMITFINALDOT : 0,
  628|   255k|				target));
  629|   255k|			column += target->used - name_start;
  630|   255k|		}
  631|       |
  632|       |		/*
  633|       |		 * TTL.
  634|       |		 */
  635|   255k|		if ((ctx->style.flags & DNS_STYLEFLAG_NO_TTL) == 0 &&
  ------------------
  |  |   86|   255k|#define DNS_STYLEFLAG_NO_TTL 0x001000000ULL
  ------------------
  |  Branch (635:7): [True: 255k, False: 0]
  ------------------
  636|   255k|		    !((ctx->style.flags & DNS_STYLEFLAG_OMIT_TTL) != 0 &&
  ------------------
  |  |   61|   255k|#define DNS_STYLEFLAG_OMIT_TTL 0x000020000ULL
  ------------------
  |  Branch (636:9): [True: 0, False: 255k]
  ------------------
  637|      0|		      current_ttl_valid && rdataset->ttl == current_ttl))
  ------------------
  |  Branch (637:9): [True: 0, False: 0]
  |  Branch (637:30): [True: 0, False: 0]
  ------------------
  638|   255k|		{
  639|   255k|			char ttlbuf[64];
  640|   255k|			isc_region_t r;
  641|   255k|			unsigned int length;
  642|       |
  643|   255k|			INDENT_TO(ttl_column);
  ------------------
  |  |  432|   255k|	do {                                                                  \
  |  |  433|   255k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   255k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 255k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   255k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 1, False: 255k]
  |  |  ------------------
  |  |  438|   255k|					    ctx->style.tab_width, target)) != \
  |  |  439|   255k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   255k|			return ((result));                                    \
  |  |  441|   255k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 255k]
  |  |  ------------------
  ------------------
  644|   255k|			if ((ctx->style.flags & DNS_STYLEFLAG_TTL_UNITS) != 0) {
  ------------------
  |  |  101|   255k|#define DNS_STYLEFLAG_TTL_UNITS 0x020000000ULL
  ------------------
  |  Branch (644:8): [True: 0, False: 255k]
  ------------------
  645|      0|				length = target->used;
  646|      0|				RETERR(dns_ttl_totext(rdataset->ttl, false,
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  647|      0|						      false, target));
  648|      0|				column += target->used - length;
  649|   255k|			} else {
  650|   255k|				length = snprintf(ttlbuf, sizeof(ttlbuf), "%u",
  651|   255k|						  rdataset->ttl);
  652|   255k|				INSIST(length <= sizeof(ttlbuf));
  ------------------
  |  |  202|   255k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   255k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 255k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   255k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  653|   255k|				isc_buffer_availableregion(target, &r);
  654|   255k|				if (r.length < length) {
  ------------------
  |  Branch (654:9): [True: 0, False: 255k]
  ------------------
  655|      0|					return ISC_R_NOSPACE;
  656|      0|				}
  657|   255k|				memmove(r.base, ttlbuf, length);
  658|   255k|				isc_buffer_add(target, length);
  659|   255k|				column += length;
  660|   255k|			}
  661|       |
  662|       |			/*
  663|       |			 * If the $TTL directive is not in use, the TTL we
  664|       |			 * just printed becomes the default for subsequent RRs.
  665|       |			 */
  666|   255k|			if ((ctx->style.flags & DNS_STYLEFLAG_TTL) == 0) {
  ------------------
  |  |   67|   255k|#define DNS_STYLEFLAG_TTL 0x000080000ULL
  ------------------
  |  Branch (666:8): [True: 255k, False: 0]
  ------------------
  667|   255k|				current_ttl = rdataset->ttl;
  668|   255k|				current_ttl_valid = true;
  669|   255k|			}
  670|   255k|		}
  671|       |
  672|       |		/*
  673|       |		 * Class.
  674|       |		 */
  675|   255k|		if ((ctx->style.flags & DNS_STYLEFLAG_NO_CLASS) == 0 &&
  ------------------
  |  |   89|   255k|#define DNS_STYLEFLAG_NO_CLASS 0x002000000ULL
  ------------------
  |  Branch (675:7): [True: 255k, False: 0]
  ------------------
  676|   255k|		    ((ctx->style.flags & DNS_STYLEFLAG_OMIT_CLASS) == 0 ||
  ------------------
  |  |   64|   255k|#define DNS_STYLEFLAG_OMIT_CLASS 0x000040000ULL
  ------------------
  |  Branch (676:8): [True: 255k, False: 0]
  ------------------
  677|      0|		     !ctx->class_printed))
  ------------------
  |  Branch (677:8): [True: 0, False: 0]
  ------------------
  678|   255k|		{
  679|   255k|			unsigned int class_start;
  680|   255k|			INDENT_TO(class_column);
  ------------------
  |  |  432|   255k|	do {                                                                  \
  |  |  433|   255k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   255k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 255k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   255k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 0, False: 255k]
  |  |  ------------------
  |  |  438|   255k|					    ctx->style.tab_width, target)) != \
  |  |  439|   255k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   255k|			return ((result));                                    \
  |  |  441|   255k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 255k]
  |  |  ------------------
  ------------------
  681|   255k|			class_start = target->used;
  682|   255k|			if ((ctx->style.flags & DNS_STYLEFLAG_UNKNOWNFORMAT) !=
  ------------------
  |  |  201|   255k|#define DNS_STYLEFLAG_UNKNOWNFORMAT 0x00000010ULL
  ------------------
  |  Branch (682:8): [True: 0, False: 255k]
  ------------------
  683|   255k|			    0)
  684|      0|			{
  685|      0|				result = dns_rdataclass_tounknowntext(
  686|      0|					rdataset->rdclass, target);
  687|   255k|			} else {
  688|   255k|				result = dns_rdataclass_totext(
  689|   255k|					rdataset->rdclass, target);
  690|   255k|			}
  691|   255k|			if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (691:8): [True: 0, False: 255k]
  ------------------
  692|      0|				return result;
  693|      0|			}
  694|   255k|			column += (target->used - class_start);
  695|   255k|		}
  696|       |
  697|       |		/*
  698|       |		 * Type.
  699|       |		 */
  700|       |
  701|   255k|		if (rdataset->attributes.negative) {
  ------------------
  |  Branch (701:7): [True: 0, False: 255k]
  ------------------
  702|      0|			type = rdataset->covers;
  703|   255k|		} else {
  704|   255k|			type = rdataset->type;
  705|   255k|		}
  706|       |
  707|   255k|		INDENT_TO(type_column);
  ------------------
  |  |  432|   255k|	do {                                                                  \
  |  |  433|   255k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   255k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 255k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   255k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 1, False: 255k]
  |  |  ------------------
  |  |  438|   255k|					    ctx->style.tab_width, target)) != \
  |  |  439|   255k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   255k|			return ((result));                                    \
  |  |  441|   255k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 255k]
  |  |  ------------------
  ------------------
  708|   255k|		type_start = target->used;
  709|   255k|		if (rdataset->attributes.negative) {
  ------------------
  |  Branch (709:7): [True: 0, False: 255k]
  ------------------
  710|      0|			RETERR(str_totext("\\-", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  711|      0|		}
  712|   255k|		switch (type) {
  713|  1.59k|		case dns_rdatatype_keydata:
  ------------------
  |  |  200|  1.59k|#define dns_rdatatype_keydata	((dns_rdatatype_t)dns_rdatatype_keydata)
  ------------------
  |  Branch (713:3): [True: 1.59k, False: 253k]
  ------------------
  714|  1.59k|#define KEYDATA "KEYDATA"
  715|  1.59k|			if ((ctx->style.flags & DNS_STYLEFLAG_KEYDATA) != 0) {
  ------------------
  |  |  198|  1.59k|#define DNS_STYLEFLAG_KEYDATA 0x00000008ULL
  ------------------
  |  Branch (715:8): [True: 0, False: 1.59k]
  ------------------
  716|      0|				if (isc_buffer_availablelength(target) <
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (716:9): [True: 0, False: 0]
  ------------------
  717|      0|				    (sizeof(KEYDATA) - 1))
  ------------------
  |  |  714|      0|#define KEYDATA "KEYDATA"
  ------------------
  718|      0|				{
  719|      0|					return ISC_R_NOSPACE;
  720|      0|				}
  721|      0|				isc_buffer_putstr(target, KEYDATA);
  ------------------
  |  |  714|      0|#define KEYDATA "KEYDATA"
  ------------------
  722|      0|				break;
  723|      0|			}
  724|  1.59k|			FALLTHROUGH;
  ------------------
  |  |  101|  1.59k|#define FALLTHROUGH [[fallthrough]]
  ------------------
  725|   255k|		default:
  ------------------
  |  Branch (725:3): [True: 253k, False: 1.59k]
  ------------------
  726|   255k|			if ((ctx->style.flags & DNS_STYLEFLAG_UNKNOWNFORMAT) !=
  ------------------
  |  |  201|   255k|#define DNS_STYLEFLAG_UNKNOWNFORMAT 0x00000010ULL
  ------------------
  |  Branch (726:8): [True: 0, False: 255k]
  ------------------
  727|   255k|			    0)
  728|      0|			{
  729|      0|				result = dns_rdatatype_tounknowntext(type,
  730|      0|								     target);
  731|   255k|			} else {
  732|   255k|				result = dns_rdatatype_totext(type, target);
  733|   255k|			}
  734|   255k|			if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (734:8): [True: 0, False: 255k]
  ------------------
  735|      0|				return result;
  736|      0|			}
  737|   255k|		}
  738|   255k|		column += (target->used - type_start);
  739|       |
  740|       |		/*
  741|       |		 * Rdata.
  742|       |		 */
  743|   255k|		INDENT_TO(rdata_column);
  ------------------
  |  |  432|   255k|	do {                                                                  \
  |  |  433|   255k|		if ((ctx->style.flags & DNS_STYLEFLAG_YAML) != 0) {           \
  |  |  ------------------
  |  |  |  |  107|   255k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (433:7): [True: 0, False: 255k]
  |  |  ------------------
  |  |  434|      0|			if ((result = str_totext(" ", target)) !=             \
  |  |  ------------------
  |  |  |  Branch (434:8): [True: 0, False: 0]
  |  |  ------------------
  |  |  435|      0|			    ISC_R_SUCCESS)                                    \
  |  |  436|      0|				return ((result));                            \
  |  |  437|   255k|		} else if ((result = indent(&column, ctx->style.col,          \
  |  |  ------------------
  |  |  |  Branch (437:14): [True: 0, False: 255k]
  |  |  ------------------
  |  |  438|   255k|					    ctx->style.tab_width, target)) != \
  |  |  439|   255k|			   ISC_R_SUCCESS)                                     \
  |  |  440|   255k|			return ((result));                                    \
  |  |  441|   255k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (441:11): [Folded, False: 255k]
  |  |  ------------------
  ------------------
  744|   255k|		if (rdataset->attributes.negative) {
  ------------------
  |  Branch (744:7): [True: 0, False: 255k]
  ------------------
  745|      0|			if (NXDOMAIN(rdataset)) {
  ------------------
  |  |  260|      0|#define NXDOMAIN(x) (((x)->attributes.nxdomain))
  |  |  ------------------
  |  |  |  Branch (260:21): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  746|      0|				RETERR(str_totext(";-$NXDOMAIN", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  747|      0|			} else {
  748|      0|				RETERR(str_totext(";-$NXRRSET", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  749|      0|			}
  750|      0|			if (start != NULL) {
  ------------------
  |  Branch (750:8): [True: 0, False: 0]
  ------------------
  751|      0|				RETERR(yaml_stringify(target, start));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  752|      0|				RETERR(str_totext("'\n", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  753|      0|			} else {
  754|      0|				RETERR(str_totext("\n", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  755|      0|			}
  756|       |
  757|       |			/*
  758|       |			 * Print a summary of the cached records which make
  759|       |			 * up the negative response.
  760|       |			 */
  761|      0|			RETERR(ncache_summary(rdataset, omit_final_dot, ctx,
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  762|      0|					      target));
  763|      0|			break;
  764|   255k|		} else {
  765|   255k|			dns_rdata_t rdata = DNS_RDATA_INIT;
  ------------------
  |  |  147|   255k|	{                                     \
  |  |  148|   255k|		.data = NULL,                 \
  |  |  149|   255k|		.link = ISC_LINK_INITIALIZER, \
  |  |  ------------------
  |  |  |  |   30|   255k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|   255k|	{                                         \
  |  |  |  |  |  |   27|   255k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   255k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   28|   255k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   255k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   29|   255k|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  150|   255k|	}
  ------------------
  766|       |
  767|   255k|			dns_rdataset_current(rdataset, &rdata);
  768|       |
  769|   255k|			RETERR(dns_rdata_tofmttext(
  ------------------
  |  |  276|   255k|	{                                  \
  |  |  277|   255k|		isc_result_t _r = (x);     \
  |  |  278|   255k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 8, False: 255k]
  |  |  ------------------
  |  |  279|      8|			return ((_r));     \
  |  |  280|      8|		}                          \
  |  |  281|   255k|	}
  ------------------
  770|   255k|				&rdata, ctx->origin, ctx->style.flags,
  771|   255k|				ctx->style.line_length -
  772|   255k|					ctx->style.rdata_column,
  773|   255k|				ctx->style.split_width, ctx->linebreak,
  774|   255k|				target));
  775|   255k|			if (start != NULL) {
  ------------------
  |  Branch (775:8): [True: 0, False: 255k]
  ------------------
  776|      0|				RETERR(yaml_stringify(target, start));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  777|      0|				RETERR(str_totext("'\n", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  778|   255k|			} else {
  779|   255k|				RETERR(str_totext("\n", target));
  ------------------
  |  |  276|   255k|	{                                  \
  |  |  277|   255k|		isc_result_t _r = (x);     \
  |  |  278|   255k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 255k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|   255k|	}
  ------------------
  780|   255k|			}
  781|   255k|		}
  782|       |
  783|   255k|		first = false;
  784|   255k|	}
  785|       |
  786|       |	/*
  787|       |	 * Update the ctx state to reflect what we just printed.
  788|       |	 * This is done last, only when we are sure we will return
  789|       |	 * success, because this function may be called multiple
  790|       |	 * times with increasing buffer sizes until it succeeds,
  791|       |	 * and failed attempts must not update the state prematurely.
  792|       |	 */
  793|   120k|	ctx->class_printed = true;
  794|   120k|	ctx->current_ttl = current_ttl;
  795|   120k|	ctx->current_ttl_valid = current_ttl_valid;
  796|       |
  797|   120k|	return ISC_R_SUCCESS;
  798|   120k|}

dns_message_create:
  694|  21.9k|		   dns_message_t **msgp) {
  695|  21.9k|	REQUIRE(mctx != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  696|  21.9k|	REQUIRE(msgp != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  697|  21.9k|	REQUIRE(*msgp == NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  698|  21.9k|	REQUIRE(intent == DNS_MESSAGE_INTENTPARSE ||
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  699|  21.9k|		intent == DNS_MESSAGE_INTENTRENDER);
  700|  21.9k|	REQUIRE((namepool != NULL && rdspool != NULL) ||
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   109k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 21.9k]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  701|  21.9k|		(namepool == NULL && rdspool == NULL));
  702|       |
  703|  21.9k|	dns_message_t *msg = isc_mem_get(mctx, sizeof(dns_message_t));
  ------------------
  |  |  128|  21.9k|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
  704|  21.9k|	*msg = (dns_message_t){
  705|  21.9k|		.from_to_wire = intent,
  706|  21.9k|		.references = ISC_REFCOUNT_INITIALIZER(1),
  ------------------
  |  |   34|  21.9k|#define ISC_REFCOUNT_INITIALIZER(a) (a)
  ------------------
  707|  21.9k|		.scratchpad = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  708|  21.9k|		.cleanup = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  709|  21.9k|		.rdatas = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  710|  21.9k|		.rdatalists = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  711|  21.9k|		.freerdata = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  712|  21.9k|		.freerdatalist = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|  21.9k|	{                     \
  |  |   22|  21.9k|		.head = NULL, \
  |  |   23|  21.9k|		.tail = NULL, \
  |  |   24|  21.9k|	}
  ------------------
  713|  21.9k|		.magic = DNS_MESSAGE_MAGIC,
  ------------------
  |  |  147|  21.9k|#define DNS_MESSAGE_MAGIC      ISC_MAGIC('M', 'S', 'G', '@')
  |  |  ------------------
  |  |  |  |   31|  21.9k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  714|  21.9k|		.namepool = namepool,
  715|  21.9k|		.rdspool = rdspool,
  716|  21.9k|		.free_pools = (namepool == NULL && rdspool == NULL),
  ------------------
  |  Branch (716:18): [True: 21.9k, False: 0]
  |  Branch (716:38): [True: 21.9k, False: 0]
  ------------------
  717|  21.9k|	};
  718|       |
  719|  21.9k|	isc_mem_attach(mctx, &msg->mctx);
  720|       |
  721|  21.9k|	if (msg->free_pools) {
  ------------------
  |  Branch (721:6): [True: 21.9k, False: 0]
  ------------------
  722|  21.9k|		dns_message_createpools(mctx, &msg->namepool, &msg->rdspool);
  723|  21.9k|	}
  724|       |
  725|  21.9k|	msginit(msg);
  726|       |
  727|   109k|	for (size_t i = 0; i < DNS_SECTION_MAX; i++) {
  ------------------
  |  Branch (727:21): [True: 87.8k, False: 21.9k]
  ------------------
  728|  87.8k|		ISC_LIST_INIT(msg->sections[i]);
  ------------------
  |  |   43|  87.8k|	do {                        \
  |  |   44|  87.8k|		(list).head = NULL; \
  |  |   45|  87.8k|		(list).tail = NULL; \
  |  |   46|  87.8k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 87.8k]
  |  |  ------------------
  ------------------
  729|  87.8k|	}
  730|       |
  731|  21.9k|	isc_buffer_t *dynbuf = NULL;
  732|  21.9k|	isc_buffer_allocate(mctx, &dynbuf, SCRATCHPAD_SIZE);
  ------------------
  |  |  123|  21.9k|#define SCRATCHPAD_SIZE	   1232
  ------------------
  733|  21.9k|	ISC_LIST_APPEND(msg->scratchpad, dynbuf, link);
  ------------------
  |  |  100|  21.9k|	do {                                                  \
  |  |  101|  21.9k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  21.9k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  21.9k|	do {                                            \
  |  |  |  |   89|  21.9k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 0, False: 21.9k]
  |  |  |  |  ------------------
  |  |  |  |   90|      0|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  21.9k|		} else {                                \
  |  |  |  |   92|  21.9k|			(list).head = (elt);            \
  |  |  |  |   93|  21.9k|		}                                       \
  |  |  |  |   94|  21.9k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  21.9k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  21.9k|		(list).tail = (elt);                    \
  |  |  |  |   97|  21.9k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 21.9k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  21.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 21.9k]
  |  |  ------------------
  ------------------
  734|       |
  735|  21.9k|	*msgp = msg;
  736|  21.9k|}
dns_message_parse:
 1578|  21.9k|		  unsigned int options) {
 1579|  21.9k|	isc_region_t r;
 1580|  21.9k|	dns_decompress_t dctx;
 1581|  21.9k|	isc_result_t result;
 1582|  21.9k|	uint16_t tmpflags;
 1583|  21.9k|	isc_buffer_t origsource;
 1584|  21.9k|	bool seen_problem;
 1585|  21.9k|	bool ignore_tc;
 1586|       |
 1587|  21.9k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1588|  21.9k|	REQUIRE(source != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1589|  21.9k|	REQUIRE(msg->from_to_wire == DNS_MESSAGE_INTENTPARSE);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1590|       |
 1591|  21.9k|	seen_problem = false;
 1592|  21.9k|	ignore_tc = ((options & DNS_MESSAGEPARSE_IGNORETRUNCATION) != 0);
  ------------------
  |  |  209|  21.9k|	0x0008 /*%< truncation errors are \
  ------------------
 1593|       |
 1594|  21.9k|	origsource = *source;
 1595|       |
 1596|  21.9k|	msg->header_ok = 0;
 1597|  21.9k|	msg->question_ok = 0;
 1598|       |
 1599|  21.9k|	if ((options & DNS_MESSAGEPARSE_CLONEBUFFER) == 0) {
  ------------------
  |  |  206|  21.9k|	0x0004 /*%< save a copy of the \
  ------------------
  |  Branch (1599:6): [True: 21.9k, False: 0]
  ------------------
 1600|  21.9k|		isc_buffer_usedregion(&origsource, &msg->saved);
 1601|  21.9k|	} else {
 1602|      0|		msg->saved.length = isc_buffer_usedlength(&origsource);
  ------------------
  |  |  157|      0|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
 1603|      0|		msg->saved.base = isc_mem_get(msg->mctx, msg->saved.length);
  ------------------
  |  |  128|      0|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1604|      0|		memmove(msg->saved.base, isc_buffer_base(&origsource),
  ------------------
  |  |  143|      0|#define isc_buffer_base(b) ((void *)(b)->base) /*a*/
  ------------------
 1605|      0|			msg->saved.length);
 1606|      0|		msg->free_saved = 1;
 1607|      0|	}
 1608|       |
 1609|  21.9k|	isc_buffer_remainingregion(source, &r);
 1610|  21.9k|	if (r.length < DNS_MESSAGE_HEADERLEN) {
  ------------------
  |  |  145|  21.9k|#define DNS_MESSAGE_HEADERLEN 12 /*%< 6 uint16_t's */
  ------------------
  |  Branch (1610:6): [True: 20, False: 21.9k]
  ------------------
 1611|     20|		return ISC_R_UNEXPECTEDEND;
 1612|     20|	}
 1613|       |
 1614|  21.9k|	msg->id = isc_buffer_getuint16(source);
 1615|  21.9k|	tmpflags = isc_buffer_getuint16(source);
 1616|  21.9k|	msg->opcode = ((tmpflags & DNS_MESSAGE_OPCODE_MASK) >>
  ------------------
  |  |   84|  21.9k|#define DNS_MESSAGE_OPCODE_MASK	      0x7800U
  ------------------
 1617|  21.9k|		       DNS_MESSAGE_OPCODE_SHIFT);
  ------------------
  |  |   85|  21.9k|#define DNS_MESSAGE_OPCODE_SHIFT      11
  ------------------
 1618|  21.9k|	msg->rcode = (dns_rcode_t)(tmpflags & DNS_MESSAGE_RCODE_MASK);
  ------------------
  |  |   86|  21.9k|#define DNS_MESSAGE_RCODE_MASK	      0x000fU
  ------------------
 1619|  21.9k|	msg->flags = (tmpflags & DNS_MESSAGE_FLAG_MASK);
  ------------------
  |  |   87|  21.9k|#define DNS_MESSAGE_FLAG_MASK	      0x8ff0U
  ------------------
 1620|  21.9k|	msg->counts[DNS_SECTION_QUESTION] = isc_buffer_getuint16(source);
 1621|  21.9k|	msg->counts[DNS_SECTION_ANSWER] = isc_buffer_getuint16(source);
 1622|  21.9k|	msg->counts[DNS_SECTION_AUTHORITY] = isc_buffer_getuint16(source);
 1623|  21.9k|	msg->counts[DNS_SECTION_ADDITIONAL] = isc_buffer_getuint16(source);
 1624|       |
 1625|  21.9k|	msg->header_ok = 1;
 1626|  21.9k|	msg->state = DNS_SECTION_QUESTION;
 1627|       |
 1628|  21.9k|	dctx = DNS_DECOMPRESS_ALWAYS;
 1629|       |
 1630|  21.9k|	bool strict_parse = ((options & DNS_MESSAGEPARSE_BESTEFFORT) == 0);
  ------------------
  |  |  202|  21.9k|	0x0002 /*%< return a message if a \
  ------------------
 1631|  21.9k|	isc_result_t early_check_ret = early_sanity_check(msg);
 1632|  21.9k|	if (strict_parse && (early_check_ret != ISC_R_SUCCESS)) {
  ------------------
  |  Branch (1632:6): [True: 0, False: 21.9k]
  |  Branch (1632:22): [True: 0, False: 0]
  ------------------
 1633|      0|		return early_check_ret;
 1634|      0|	}
 1635|       |
 1636|  21.9k|	result = getquestions(source, msg, dctx, options);
 1637|       |
 1638|  21.9k|	if (result == ISC_R_UNEXPECTEDEND && ignore_tc) {
  ------------------
  |  Branch (1638:6): [True: 103, False: 21.8k]
  |  Branch (1638:39): [True: 0, False: 103]
  ------------------
 1639|      0|		goto truncated;
 1640|      0|	}
 1641|  21.9k|	if (result == DNS_R_RECOVERABLE) {
  ------------------
  |  Branch (1641:6): [True: 2.20k, False: 19.7k]
  ------------------
 1642|  2.20k|		seen_problem = true;
 1643|  2.20k|		result = ISC_R_SUCCESS;
 1644|  2.20k|	}
 1645|  21.9k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1645:6): [True: 116, False: 21.8k]
  ------------------
 1646|    116|		return result;
 1647|    116|	}
 1648|  21.8k|	msg->question_ok = 1;
 1649|       |
 1650|  21.8k|	result = getsection(source, msg, dctx, DNS_SECTION_ANSWER, options);
 1651|  21.8k|	if (result == ISC_R_UNEXPECTEDEND && ignore_tc) {
  ------------------
  |  Branch (1651:6): [True: 1.44k, False: 20.3k]
  |  Branch (1651:39): [True: 0, False: 1.44k]
  ------------------
 1652|      0|		goto truncated;
 1653|      0|	}
 1654|  21.8k|	if (result == DNS_R_RECOVERABLE) {
  ------------------
  |  Branch (1654:6): [True: 2.38k, False: 19.4k]
  ------------------
 1655|  2.38k|		seen_problem = true;
 1656|  2.38k|		result = ISC_R_SUCCESS;
 1657|  2.38k|	}
 1658|  21.8k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1658:6): [True: 2.37k, False: 19.4k]
  ------------------
 1659|  2.37k|		return result;
 1660|  2.37k|	}
 1661|       |
 1662|  19.4k|	result = getsection(source, msg, dctx, DNS_SECTION_AUTHORITY, options);
 1663|  19.4k|	if (result == ISC_R_UNEXPECTEDEND && ignore_tc) {
  ------------------
  |  Branch (1663:6): [True: 696, False: 18.7k]
  |  Branch (1663:39): [True: 0, False: 696]
  ------------------
 1664|      0|		goto truncated;
 1665|      0|	}
 1666|  19.4k|	if (result == DNS_R_RECOVERABLE) {
  ------------------
  |  Branch (1666:6): [True: 3.15k, False: 16.2k]
  ------------------
 1667|  3.15k|		seen_problem = true;
 1668|  3.15k|		result = ISC_R_SUCCESS;
 1669|  3.15k|	}
 1670|  19.4k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1670:6): [True: 1.04k, False: 18.4k]
  ------------------
 1671|  1.04k|		return result;
 1672|  1.04k|	}
 1673|       |
 1674|  18.4k|	result = getsection(source, msg, dctx, DNS_SECTION_ADDITIONAL, options);
 1675|  18.4k|	if (result == ISC_R_UNEXPECTEDEND && ignore_tc) {
  ------------------
  |  Branch (1675:6): [True: 550, False: 17.8k]
  |  Branch (1675:39): [True: 0, False: 550]
  ------------------
 1676|      0|		goto truncated;
 1677|      0|	}
 1678|  18.4k|	if (result == DNS_R_RECOVERABLE) {
  ------------------
  |  Branch (1678:6): [True: 3.78k, False: 14.6k]
  ------------------
 1679|  3.78k|		seen_problem = true;
 1680|  3.78k|		result = ISC_R_SUCCESS;
 1681|  3.78k|	}
 1682|  18.4k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1682:6): [True: 806, False: 17.5k]
  ------------------
 1683|    806|		return result;
 1684|    806|	}
 1685|       |
 1686|  17.5k|	isc_buffer_remainingregion(source, &r);
 1687|  17.5k|	if (r.length != 0) {
  ------------------
  |  Branch (1687:6): [True: 2.23k, False: 15.3k]
  ------------------
 1688|  2.23k|		isc_log_write(ISC_LOGCATEGORY_GENERAL, DNS_LOGMODULE_MESSAGE,
 1689|  2.23k|			      ISC_LOG_DEBUG(3),
  ------------------
  |  |   36|  2.23k|#define ISC_LOG_DEBUG(level) (level)
  ------------------
 1690|  2.23k|			      "message has %u byte(s) of trailing garbage",
 1691|  2.23k|			      r.length);
 1692|  2.23k|	}
 1693|       |
 1694|  17.5k|truncated:
 1695|       |
 1696|  17.5k|	if (result == ISC_R_UNEXPECTEDEND && ignore_tc) {
  ------------------
  |  Branch (1696:6): [True: 0, False: 17.5k]
  |  Branch (1696:39): [True: 0, False: 0]
  ------------------
 1697|      0|		return DNS_R_RECOVERABLE;
 1698|      0|	}
 1699|  17.5k|	if (seen_problem) {
  ------------------
  |  Branch (1699:6): [True: 8.16k, False: 9.43k]
  ------------------
 1700|  8.16k|		return DNS_R_RECOVERABLE;
 1701|  8.16k|	}
 1702|  9.43k|	return ISC_R_SUCCESS;
 1703|  17.5k|}
dns_message_renderbegin:
 1707|  8.91k|			isc_buffer_t *buffer) {
 1708|  8.91k|	isc_region_t r;
 1709|       |
 1710|  8.91k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  8.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8.91k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1711|  8.91k|	REQUIRE(buffer != NULL);
  ------------------
  |  |  198|  8.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1712|  8.91k|	REQUIRE(isc_buffer_length(buffer) < 65536);
  ------------------
  |  |  198|  8.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1713|  8.91k|	REQUIRE(msg->buffer == NULL);
  ------------------
  |  |  198|  8.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1714|  8.91k|	REQUIRE(msg->from_to_wire == DNS_MESSAGE_INTENTRENDER);
  ------------------
  |  |  198|  8.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1715|       |
 1716|  8.91k|	msg->cctx = cctx;
 1717|       |
 1718|       |	/*
 1719|       |	 * Erase the contents of this buffer.
 1720|       |	 */
 1721|  8.91k|	isc_buffer_clear(buffer);
 1722|       |
 1723|       |	/*
 1724|       |	 * Make certain there is enough for at least the header in this
 1725|       |	 * buffer.
 1726|       |	 */
 1727|  8.91k|	isc_buffer_availableregion(buffer, &r);
 1728|  8.91k|	if (r.length < DNS_MESSAGE_HEADERLEN) {
  ------------------
  |  |  145|  8.91k|#define DNS_MESSAGE_HEADERLEN 12 /*%< 6 uint16_t's */
  ------------------
  |  Branch (1728:6): [True: 0, False: 8.91k]
  ------------------
 1729|      0|		return ISC_R_NOSPACE;
 1730|      0|	}
 1731|       |
 1732|  8.91k|	if (r.length - DNS_MESSAGE_HEADERLEN < msg->reserved) {
  ------------------
  |  |  145|  8.91k|#define DNS_MESSAGE_HEADERLEN 12 /*%< 6 uint16_t's */
  ------------------
  |  Branch (1732:6): [True: 0, False: 8.91k]
  ------------------
 1733|      0|		return ISC_R_NOSPACE;
 1734|      0|	}
 1735|       |
 1736|       |	/*
 1737|       |	 * Reserve enough space for the header in this buffer.
 1738|       |	 */
 1739|  8.91k|	isc_buffer_add(buffer, DNS_MESSAGE_HEADERLEN);
  ------------------
  |  |  145|  8.91k|#define DNS_MESSAGE_HEADERLEN 12 /*%< 6 uint16_t's */
  ------------------
 1740|       |
 1741|  8.91k|	msg->buffer = buffer;
 1742|       |
 1743|  8.91k|	return ISC_R_SUCCESS;
 1744|  8.91k|}
dns_message_renderrelease:
 1776|  2.11k|dns_message_renderrelease(dns_message_t *msg, unsigned int space) {
 1777|  2.11k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  2.11k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.11k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.11k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.11k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1778|  2.11k|	REQUIRE(space <= msg->reserved);
  ------------------
  |  |  198|  2.11k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.11k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.11k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.11k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1779|       |
 1780|  2.11k|	msg->reserved -= space;
 1781|  2.11k|}
dns_message_rendersection:
 1882|  36.8k|			  unsigned int options) {
 1883|  36.8k|	dns_namelist_t *section = NULL;
 1884|  36.8k|	dns_name_t *name = NULL;
 1885|  36.8k|	dns_rdataset_t *rdataset = NULL;
 1886|  36.8k|	unsigned int count, total;
 1887|  36.8k|	isc_result_t result;
 1888|  36.8k|	isc_buffer_t st; /* for rollbacks */
 1889|  36.8k|	int pass;
 1890|  36.8k|	bool partial = false;
 1891|  36.8k|	unsigned int rd_options;
 1892|  36.8k|	dns_rdatatype_t preferred_glue = 0;
 1893|       |
 1894|  36.8k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  36.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  73.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 36.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 36.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  36.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1895|  36.8k|	REQUIRE(msg->buffer != NULL);
  ------------------
  |  |  198|  36.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  36.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 36.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  36.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1896|  36.8k|	REQUIRE(VALID_NAMED_SECTION(sectionid));
  ------------------
  |  |  198|  36.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  73.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 36.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 36.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  36.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1897|       |
 1898|  36.8k|	section = &msg->sections[sectionid];
 1899|       |
 1900|  36.8k|	if ((sectionid == DNS_SECTION_ADDITIONAL) &&
  ------------------
  |  Branch (1900:6): [True: 8.83k, False: 28.0k]
  ------------------
 1901|  8.83k|	    (options & DNS_MESSAGERENDER_ORDERED) == 0)
  ------------------
  |  |  215|  8.83k|#define DNS_MESSAGERENDER_ORDERED    0x0001 /*%< don't change order */
  ------------------
  |  Branch (1901:6): [True: 8.83k, False: 0]
  ------------------
 1902|  8.83k|	{
 1903|  8.83k|		if ((options & DNS_MESSAGERENDER_PREFER_A) != 0) {
  ------------------
  |  |  219|  8.83k|	0x0008 /*%< prefer A records in \
  ------------------
  |  Branch (1903:7): [True: 0, False: 8.83k]
  ------------------
 1904|      0|			preferred_glue = dns_rdatatype_a;
  ------------------
  |  |  115|      0|#define dns_rdatatype_a		((dns_rdatatype_t)dns_rdatatype_a)
  ------------------
 1905|      0|			pass = 4;
 1906|  8.83k|		} else if ((options & DNS_MESSAGERENDER_PREFER_AAAA) != 0) {
  ------------------
  |  |  222|  8.83k|	0x0010 /*%< prefer AAAA records in \
  ------------------
  |  Branch (1906:14): [True: 0, False: 8.83k]
  ------------------
 1907|      0|			preferred_glue = dns_rdatatype_aaaa;
  ------------------
  |  |  142|      0|#define dns_rdatatype_aaaa	((dns_rdatatype_t)dns_rdatatype_aaaa)
  ------------------
 1908|      0|			pass = 4;
 1909|  8.83k|		} else {
 1910|  8.83k|			pass = 3;
 1911|  8.83k|		}
 1912|  28.0k|	} else {
 1913|  28.0k|		pass = 1;
 1914|  28.0k|	}
 1915|       |
 1916|  36.8k|	if ((options & DNS_MESSAGERENDER_OMITDNSSEC) == 0) {
  ------------------
  |  |  217|  36.8k|#define DNS_MESSAGERENDER_OMITDNSSEC 0x0004 /*%< omit DNSSEC records */
  ------------------
  |  Branch (1916:6): [True: 36.8k, False: 0]
  ------------------
 1917|  36.8k|		rd_options = 0;
 1918|  36.8k|	} else {
 1919|      0|		rd_options = DNS_RDATASETTOWIRE_OMITDNSSEC;
  ------------------
  |  |  274|      0|#define DNS_RDATASETTOWIRE_OMITDNSSEC 0x0001
  ------------------
 1920|      0|	}
 1921|       |
 1922|       |	/*
 1923|       |	 * Shrink the space in the buffer by the reserved amount.
 1924|       |	 */
 1925|  36.8k|	if (msg->buffer->length - msg->buffer->used < msg->reserved) {
  ------------------
  |  Branch (1925:6): [True: 0, False: 36.8k]
  ------------------
 1926|      0|		return ISC_R_NOSPACE;
 1927|      0|	}
 1928|  36.8k|	msg->buffer->length -= msg->reserved;
 1929|       |
 1930|  36.8k|	total = 0;
 1931|  36.8k|	if (msg->reserved == 0 && (options & DNS_MESSAGERENDER_PARTIAL) != 0) {
  ------------------
  |  |  216|  36.8k|#define DNS_MESSAGERENDER_PARTIAL    0x0002 /*%< allow a partial rdataset */
  ------------------
  |  Branch (1931:6): [True: 36.8k, False: 0]
  |  Branch (1931:28): [True: 0, False: 36.8k]
  ------------------
 1932|      0|		partial = true;
 1933|      0|	}
 1934|       |
 1935|       |	/*
 1936|       |	 * Render required glue first.  Set TC if it won't fit.
 1937|       |	 */
 1938|  36.8k|	name = ISC_LIST_HEAD(*section);
  ------------------
  |  |   62|  36.8k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1939|  36.8k|	if (name != NULL) {
  ------------------
  |  Branch (1939:6): [True: 11.3k, False: 25.5k]
  ------------------
 1940|  11.3k|		rdataset = ISC_LIST_HEAD(name->list);
  ------------------
  |  |   62|  11.3k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1941|  11.3k|		if (rdataset != NULL && rdataset->attributes.required &&
  ------------------
  |  Branch (1941:7): [True: 11.3k, False: 0]
  |  Branch (1941:27): [True: 0, False: 11.3k]
  ------------------
 1942|      0|		    !rdataset->attributes.rendered)
  ------------------
  |  Branch (1942:7): [True: 0, False: 0]
  ------------------
 1943|      0|		{
 1944|      0|			st = *(msg->buffer);
 1945|      0|			count = 0;
 1946|      0|			result = dns_rdataset_towire(
 1947|      0|				rdataset, name, msg->id, msg->cctx, msg->buffer,
 1948|      0|				partial, rd_options, &count);
 1949|      0|			total += count;
 1950|      0|			if (partial && result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (1950:8): [True: 0, False: 0]
  |  Branch (1950:19): [True: 0, False: 0]
  ------------------
 1951|      0|				msg->flags |= DNS_MESSAGEFLAG_TC;
 1952|      0|				msg->buffer->length += msg->reserved;
 1953|      0|				msg->counts[sectionid] += total;
 1954|      0|				return result;
 1955|      0|			}
 1956|      0|			if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (1956:8): [True: 0, False: 0]
  ------------------
 1957|      0|				msg->flags |= DNS_MESSAGEFLAG_TC;
 1958|      0|			}
 1959|      0|			if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1959:8): [True: 0, False: 0]
  ------------------
 1960|      0|				dns_compress_rollback(msg->cctx, st.used);
 1961|      0|				*(msg->buffer) = st; /* rollback */
 1962|      0|				msg->buffer->length += msg->reserved;
 1963|      0|				msg->counts[sectionid] += total;
 1964|      0|				return result;
 1965|      0|			}
 1966|       |
 1967|      0|			update_min_section_ttl(msg, sectionid, rdataset);
 1968|       |
 1969|      0|			rdataset->attributes.rendered = true;
 1970|      0|		}
 1971|  11.3k|	}
 1972|       |
 1973|  44.7k|	do {
 1974|  44.7k|		name = ISC_LIST_HEAD(*section);
  ------------------
  |  |   62|  44.7k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1975|  44.7k|		if (name == NULL) {
  ------------------
  |  Branch (1975:7): [True: 25.5k, False: 19.1k]
  ------------------
 1976|  25.5k|			msg->buffer->length += msg->reserved;
 1977|  25.5k|			msg->counts[sectionid] += total;
 1978|  25.5k|			return ISC_R_SUCCESS;
 1979|  25.5k|		}
 1980|       |
 1981|   162k|		ISC_LIST_FOREACH(*section, n, link) {
  ------------------
  |  |  234|  19.1k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  19.1k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  19.1k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|  19.1k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 19.1k, False: 0]
  |  |  ------------------
  |  |  236|   181k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 162k, False: 19.0k]
  |  |  ------------------
  |  |  237|   162k|	     elt = elt##_next,                                             \
  |  |  238|   162k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|   143k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 143k, False: 19.0k]
  |  |  ------------------
  ------------------
 1982|   206k|			ISC_LIST_FOREACH(n->list, rds, link) {
  ------------------
  |  |  234|   162k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|   162k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|   162k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|   162k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 162k, False: 0]
  |  |  ------------------
  |  |  236|   368k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 206k, False: 162k]
  |  |  ------------------
  |  |  237|   205k|	     elt = elt##_next,                                             \
  |  |  238|   205k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|  43.7k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 43.7k, False: 162k]
  |  |  ------------------
  ------------------
 1983|   206k|				if (rds->attributes.rendered) {
  ------------------
  |  Branch (1983:9): [True: 43.4k, False: 162k]
  ------------------
 1984|  43.4k|					continue;
 1985|  43.4k|				}
 1986|       |
 1987|   162k|				if (((options & DNS_MESSAGERENDER_ORDERED) ==
  ------------------
  |  |  215|   162k|#define DNS_MESSAGERENDER_ORDERED    0x0001 /*%< don't change order */
  ------------------
  |  Branch (1987:9): [True: 162k, False: 0]
  ------------------
 1988|   162k|				     0) &&
 1989|   162k|				    (sectionid == DNS_SECTION_ADDITIONAL) &&
  ------------------
  |  Branch (1989:9): [True: 33.1k, False: 129k]
  ------------------
 1990|  33.1k|				    wrong_priority(rds, pass, preferred_glue))
  ------------------
  |  Branch (1990:9): [True: 7.41k, False: 25.7k]
  ------------------
 1991|  7.41k|				{
 1992|  7.41k|					continue;
 1993|  7.41k|				}
 1994|       |
 1995|   155k|				st = *(msg->buffer);
 1996|       |
 1997|   155k|				count = 0;
 1998|   155k|				result = dns_rdataset_towire(
 1999|   155k|					rds, n, msg->id, msg->cctx, msg->buffer,
 2000|   155k|					partial, rd_options, &count);
 2001|       |
 2002|   155k|				total += count;
 2003|       |
 2004|       |				/*
 2005|       |				 * If out of space, record stats on what we
 2006|       |				 * rendered so far, and return that status.
 2007|       |				 *
 2008|       |				 * XXXMLG Need to change this when
 2009|       |				 * dns_rdataset_towire() can render partial
 2010|       |				 * sets starting at some arbitrary point in the
 2011|       |				 * set.  This will include setting a bit in the
 2012|       |				 * rdataset to indicate that a partial
 2013|       |				 * rendering was done, and some state saved
 2014|       |				 * somewhere (probably in the message struct)
 2015|       |				 * to indicate where to continue from.
 2016|       |				 */
 2017|   155k|				if (partial && result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (2017:9): [True: 0, False: 155k]
  |  Branch (2017:20): [True: 0, False: 0]
  ------------------
 2018|      0|					msg->buffer->length += msg->reserved;
 2019|      0|					msg->counts[sectionid] += total;
 2020|      0|					return result;
 2021|      0|				}
 2022|   155k|				if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (2022:9): [True: 154, False: 154k]
  ------------------
 2023|    154|					INSIST(st.used < 65536);
  ------------------
  |  |  202|    154|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    154|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 154, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    154|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2024|    154|					dns_compress_rollback(
 2025|    154|						msg->cctx, (uint16_t)st.used);
 2026|    154|					*(msg->buffer) = st; /* rollback */
 2027|    154|					msg->buffer->length += msg->reserved;
 2028|    154|					msg->counts[sectionid] += total;
 2029|    154|					maybe_clear_ad(msg, sectionid);
 2030|    154|					return result;
 2031|    154|				}
 2032|       |
 2033|       |				/*
 2034|       |				 * If we have rendered non-validated data,
 2035|       |				 * ensure that the AD bit is not set.
 2036|       |				 */
 2037|   154k|				if (rds->trust != dns_trust_secure &&
  ------------------
  |  |  376|   309k|#define dns_trust_secure ((dns_trust_t)dns_trust_secure)
  ------------------
  |  Branch (2037:9): [True: 154k, False: 0]
  ------------------
 2038|   154k|				    (sectionid == DNS_SECTION_ANSWER ||
  ------------------
  |  Branch (2038:10): [True: 17.6k, False: 137k]
  ------------------
 2039|   137k|				     sectionid == DNS_SECTION_AUTHORITY))
  ------------------
  |  Branch (2039:10): [True: 17.4k, False: 119k]
  ------------------
 2040|  35.1k|				{
 2041|  35.1k|					msg->flags &= ~DNS_MESSAGEFLAG_AD;
 2042|  35.1k|				}
 2043|   154k|				if (OPTOUT(rds)) {
  ------------------
  |  |  116|   154k|#define OPTOUT(x) (((x)->attributes.optout))
  |  |  ------------------
  |  |  |  Branch (116:19): [True: 0, False: 154k]
  |  |  ------------------
  ------------------
 2044|      0|					msg->flags &= ~DNS_MESSAGEFLAG_AD;
 2045|      0|				}
 2046|       |
 2047|   154k|				update_min_section_ttl(msg, sectionid, rds);
 2048|       |
 2049|   154k|				rds->attributes.rendered = true;
 2050|   154k|			}
 2051|   162k|		}
 2052|  19.1k|	} while (--pass != 0);
  ------------------
  |  Branch (2052:11): [True: 7.82k, False: 11.1k]
  ------------------
 2053|       |
 2054|  11.1k|	msg->buffer->length += msg->reserved;
 2055|  11.1k|	msg->counts[sectionid] += total;
 2056|       |
 2057|  11.1k|	return ISC_R_SUCCESS;
 2058|  36.8k|}
dns_message_renderheader:
 2061|  8.76k|dns_message_renderheader(dns_message_t *msg, isc_buffer_t *target) {
 2062|  8.76k|	uint16_t tmp;
 2063|  8.76k|	isc_region_t r;
 2064|       |
 2065|  8.76k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  8.76k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.5k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8.76k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.76k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2066|  8.76k|	REQUIRE(msg->buffer != NULL);
  ------------------
  |  |  198|  8.76k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.76k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.76k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2067|  8.76k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|  8.76k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.76k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.76k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2068|       |
 2069|  8.76k|	isc_buffer_availableregion(target, &r);
 2070|  8.76k|	REQUIRE(r.length >= DNS_MESSAGE_HEADERLEN);
  ------------------
  |  |  198|  8.76k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.76k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.76k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2071|       |
 2072|  8.76k|	isc_buffer_putuint16(target, msg->id);
 2073|       |
 2074|  8.76k|	tmp = ((msg->opcode << DNS_MESSAGE_OPCODE_SHIFT) &
  ------------------
  |  |   85|  8.76k|#define DNS_MESSAGE_OPCODE_SHIFT      11
  ------------------
 2075|  8.76k|	       DNS_MESSAGE_OPCODE_MASK);
  ------------------
  |  |   84|  8.76k|#define DNS_MESSAGE_OPCODE_MASK	      0x7800U
  ------------------
 2076|  8.76k|	tmp |= (msg->rcode & DNS_MESSAGE_RCODE_MASK);
  ------------------
  |  |   86|  8.76k|#define DNS_MESSAGE_RCODE_MASK	      0x000fU
  ------------------
 2077|  8.76k|	tmp |= (msg->flags & DNS_MESSAGE_FLAG_MASK);
  ------------------
  |  |   87|  8.76k|#define DNS_MESSAGE_FLAG_MASK	      0x8ff0U
  ------------------
 2078|       |
 2079|  8.76k|	INSIST(msg->counts[DNS_SECTION_QUESTION] < 65536 &&
  ------------------
  |  |  202|  8.76k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  52.5k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 8.76k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 8.76k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 8.76k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 8.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  8.76k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2080|  8.76k|	       msg->counts[DNS_SECTION_ANSWER] < 65536 &&
 2081|  8.76k|	       msg->counts[DNS_SECTION_AUTHORITY] < 65536 &&
 2082|  8.76k|	       msg->counts[DNS_SECTION_ADDITIONAL] < 65536);
 2083|       |
 2084|  8.76k|	isc_buffer_putuint16(target, tmp);
 2085|  8.76k|	isc_buffer_putuint16(target,
 2086|  8.76k|			     (uint16_t)msg->counts[DNS_SECTION_QUESTION]);
 2087|  8.76k|	isc_buffer_putuint16(target, (uint16_t)msg->counts[DNS_SECTION_ANSWER]);
 2088|  8.76k|	isc_buffer_putuint16(target,
 2089|  8.76k|			     (uint16_t)msg->counts[DNS_SECTION_AUTHORITY]);
 2090|  8.76k|	isc_buffer_putuint16(target,
 2091|  8.76k|			     (uint16_t)msg->counts[DNS_SECTION_ADDITIONAL]);
 2092|  8.76k|}
dns_message_renderend:
 2095|  8.76k|dns_message_renderend(dns_message_t *msg) {
 2096|  8.76k|	isc_buffer_t tmpbuf;
 2097|  8.76k|	isc_region_t r;
 2098|  8.76k|	int result;
 2099|  8.76k|	unsigned int count;
 2100|       |
 2101|  8.76k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  8.76k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.5k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8.76k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.76k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2102|  8.76k|	REQUIRE(msg->buffer != NULL);
  ------------------
  |  |  198|  8.76k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.76k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.76k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2103|       |
 2104|  8.76k|	if ((msg->rcode & ~DNS_MESSAGE_RCODE_MASK) != 0 && msg->opt == NULL) {
  ------------------
  |  |   86|  8.76k|#define DNS_MESSAGE_RCODE_MASK	      0x000fU
  ------------------
  |  Branch (2104:6): [True: 1.51k, False: 7.25k]
  |  Branch (2104:53): [True: 0, False: 1.51k]
  ------------------
 2105|       |		/*
 2106|       |		 * We have an extended rcode but are not using EDNS.
 2107|       |		 */
 2108|      0|		return DNS_R_FORMERR;
 2109|      0|	}
 2110|       |
 2111|       |	/*
 2112|       |	 * If we're adding a OPT, TSIG or SIG(0) to a truncated message,
 2113|       |	 * clear all rdatasets from the message except for the question
 2114|       |	 * before adding the OPT, TSIG or SIG(0).  If the question doesn't
 2115|       |	 * fit, don't include it.
 2116|       |	 */
 2117|  8.76k|	if ((msg->tsigkey != NULL || msg->sig0key != NULL || msg->opt) &&
  ------------------
  |  Branch (2117:7): [True: 0, False: 8.76k]
  |  Branch (2117:31): [True: 0, False: 8.76k]
  |  Branch (2117:55): [True: 2.11k, False: 6.65k]
  ------------------
 2118|  2.11k|	    (msg->flags & DNS_MESSAGEFLAG_TC) != 0)
  ------------------
  |  Branch (2118:6): [True: 1.31k, False: 793]
  ------------------
 2119|  1.31k|	{
 2120|  1.31k|		isc_buffer_t *buf;
 2121|       |
 2122|  1.31k|		msgresetnames(msg, DNS_SECTION_ANSWER);
 2123|  1.31k|		buf = msg->buffer;
 2124|  1.31k|		dns_message_renderreset(msg);
 2125|  1.31k|		msg->buffer = buf;
 2126|  1.31k|		isc_buffer_clear(msg->buffer);
 2127|  1.31k|		isc_buffer_add(msg->buffer, DNS_MESSAGE_HEADERLEN);
  ------------------
  |  |  145|  1.31k|#define DNS_MESSAGE_HEADERLEN 12 /*%< 6 uint16_t's */
  ------------------
 2128|  1.31k|		dns_compress_rollback(msg->cctx, 0);
 2129|  1.31k|		result = dns_message_rendersection(msg, DNS_SECTION_QUESTION,
 2130|  1.31k|						   0);
 2131|  1.31k|		if (result != ISC_R_SUCCESS && result != ISC_R_NOSPACE) {
  ------------------
  |  Branch (2131:7): [True: 0, False: 1.31k]
  |  Branch (2131:34): [True: 0, False: 0]
  ------------------
 2132|      0|			return result;
 2133|      0|		}
 2134|  1.31k|	}
 2135|       |
 2136|       |	/*
 2137|       |	 * If we've got an OPT record, render it.
 2138|       |	 */
 2139|  8.76k|	if (msg->opt != NULL) {
  ------------------
  |  Branch (2139:6): [True: 2.11k, False: 6.65k]
  ------------------
 2140|  2.11k|		dns_message_renderrelease(msg, msg->opt_reserved);
 2141|  2.11k|		msg->opt_reserved = 0;
 2142|       |		/*
 2143|       |		 * Set the extended rcode.  Cast msg->rcode to dns_ttl_t
 2144|       |		 * so that we do a unsigned shift.
 2145|       |		 */
 2146|  2.11k|		msg->opt->ttl &= ~DNS_MESSAGE_EDNSRCODE_MASK;
  ------------------
  |  |   88|  2.11k|#define DNS_MESSAGE_EDNSRCODE_MASK    0xff000000U
  ------------------
 2147|  2.11k|		msg->opt->ttl |= (((dns_ttl_t)(msg->rcode) << 20) &
 2148|  2.11k|				  DNS_MESSAGE_EDNSRCODE_MASK);
  ------------------
  |  |   88|  2.11k|#define DNS_MESSAGE_EDNSRCODE_MASK    0xff000000U
  ------------------
 2149|       |		/*
 2150|       |		 * Render.
 2151|       |		 */
 2152|  2.11k|		count = 0;
 2153|  2.11k|		result = renderset(msg->opt, dns_rootname, msg->id, msg->cctx,
 2154|  2.11k|				   msg->buffer, msg->reserved, 0, &count);
 2155|  2.11k|		msg->counts[DNS_SECTION_ADDITIONAL] += count;
 2156|  2.11k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (2156:7): [True: 3, False: 2.10k]
  ------------------
 2157|      3|			return result;
 2158|      3|		}
 2159|  2.11k|	}
 2160|       |
 2161|       |	/*
 2162|       |	 * Deal with EDNS padding.
 2163|       |	 *
 2164|       |	 * padding_off is the length of the OPT with the 0-length PAD
 2165|       |	 * at the end.
 2166|       |	 */
 2167|  8.76k|	if (msg->padding_off > 0) {
  ------------------
  |  Branch (2167:6): [True: 0, False: 8.76k]
  ------------------
 2168|      0|		unsigned char *cp = isc_buffer_used(msg->buffer);
  ------------------
  |  |  149|      0|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 2169|      0|		unsigned int used, remaining;
 2170|      0|		uint16_t len, padsize = 0;
 2171|       |
 2172|       |		/* Check PAD */
 2173|      0|		if ((cp[-4] != 0) || (cp[-3] != DNS_OPT_PAD) || (cp[-2] != 0) ||
  ------------------
  |  Branch (2173:7): [True: 0, False: 0]
  |  Branch (2173:24): [True: 0, False: 0]
  |  Branch (2173:51): [True: 0, False: 0]
  ------------------
 2174|      0|		    (cp[-1] != 0))
  ------------------
  |  Branch (2174:7): [True: 0, False: 0]
  ------------------
 2175|      0|		{
 2176|      0|			return ISC_R_UNEXPECTED;
 2177|      0|		}
 2178|       |
 2179|       |		/*
 2180|       |		 * Zero-fill the PAD to the computed size;
 2181|       |		 * patch PAD length and OPT rdlength
 2182|       |		 */
 2183|       |
 2184|       |		/* Aligned used length + reserved to padding block */
 2185|      0|		used = isc_buffer_usedlength(msg->buffer);
  ------------------
  |  |  157|      0|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
 2186|      0|		if (msg->padding != 0) {
  ------------------
  |  Branch (2186:7): [True: 0, False: 0]
  ------------------
 2187|      0|			padsize = ((uint16_t)used + msg->reserved) %
 2188|      0|				  msg->padding;
 2189|      0|		}
 2190|      0|		if (padsize != 0) {
  ------------------
  |  Branch (2190:7): [True: 0, False: 0]
  ------------------
 2191|      0|			padsize = msg->padding - padsize;
 2192|      0|		}
 2193|       |		/* Stay below the available length */
 2194|      0|		remaining = isc_buffer_availablelength(msg->buffer);
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
 2195|      0|		if (padsize > remaining) {
  ------------------
  |  Branch (2195:7): [True: 0, False: 0]
  ------------------
 2196|      0|			padsize = remaining;
 2197|      0|		}
 2198|       |
 2199|      0|		isc_buffer_add(msg->buffer, padsize);
 2200|      0|		memset(cp, 0, padsize);
 2201|      0|		cp[-2] = (unsigned char)((padsize & 0xff00U) >> 8);
 2202|      0|		cp[-1] = (unsigned char)(padsize & 0x00ffU);
 2203|      0|		cp -= msg->padding_off;
 2204|      0|		len = ((uint16_t)(cp[-2])) << 8;
 2205|      0|		len |= ((uint16_t)(cp[-1]));
 2206|      0|		len += padsize;
 2207|      0|		cp[-2] = (unsigned char)((len & 0xff00U) >> 8);
 2208|      0|		cp[-1] = (unsigned char)(len & 0x00ffU);
 2209|      0|	}
 2210|       |
 2211|       |	/*
 2212|       |	 * If we're adding a TSIG record, generate and render it.
 2213|       |	 */
 2214|  8.76k|	if (msg->tsigkey != NULL) {
  ------------------
  |  Branch (2214:6): [True: 0, False: 8.76k]
  ------------------
 2215|      0|		dns_message_renderrelease(msg, msg->sig_reserved);
 2216|      0|		msg->sig_reserved = 0;
 2217|      0|		RETERR(dns_tsig_sign(msg));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
 2218|      0|		count = 0;
 2219|      0|		result = renderset(msg->tsig, msg->tsigname, msg->id, msg->cctx,
 2220|      0|				   msg->buffer, msg->reserved, 0, &count);
 2221|      0|		msg->counts[DNS_SECTION_ADDITIONAL] += count;
 2222|      0|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (2222:7): [True: 0, False: 0]
  ------------------
 2223|      0|			return result;
 2224|      0|		}
 2225|      0|	}
 2226|       |
 2227|       |	/*
 2228|       |	 * If we're adding a SIG(0) record, generate and render it.
 2229|       |	 */
 2230|  8.76k|	if (msg->sig0key != NULL) {
  ------------------
  |  Branch (2230:6): [True: 0, False: 8.76k]
  ------------------
 2231|      0|		dns_message_renderrelease(msg, msg->sig_reserved);
 2232|      0|		msg->sig_reserved = 0;
 2233|      0|		RETERR(dns_dnssec_signmessage(msg, msg->sig0key));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
 2234|      0|		count = 0;
 2235|       |		/*
 2236|       |		 * Note: dns_rootname is used here, not msg->sig0name, since
 2237|       |		 * the owner name of a SIG(0) is irrelevant, and will not
 2238|       |		 * be set in a message being rendered.
 2239|       |		 */
 2240|      0|		result = renderset(msg->sig0, dns_rootname, msg->id, msg->cctx,
 2241|      0|				   msg->buffer, msg->reserved, 0, &count);
 2242|      0|		msg->counts[DNS_SECTION_ADDITIONAL] += count;
 2243|      0|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (2243:7): [True: 0, False: 0]
  ------------------
 2244|      0|			return result;
 2245|      0|		}
 2246|      0|	}
 2247|       |
 2248|  8.76k|	isc_buffer_usedregion(msg->buffer, &r);
 2249|  8.76k|	isc_buffer_init(&tmpbuf, r.base, r.length);
 2250|       |
 2251|  8.76k|	dns_message_renderheader(msg, &tmpbuf);
 2252|       |
 2253|  8.76k|	msg->buffer = NULL; /* forget about this buffer only on success XXX */
 2254|       |
 2255|  8.76k|	return ISC_R_SUCCESS;
 2256|  8.76k|}
dns_message_renderreset:
 2259|  1.31k|dns_message_renderreset(dns_message_t *msg) {
 2260|       |	/*
 2261|       |	 * Reset the message so that it may be rendered again.
 2262|       |	 */
 2263|       |
 2264|  1.31k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  1.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.63k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.31k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2265|  1.31k|	REQUIRE(msg->from_to_wire == DNS_MESSAGE_INTENTRENDER);
  ------------------
  |  |  198|  1.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2266|       |
 2267|  1.31k|	msg->buffer = NULL;
 2268|       |
 2269|  6.59k|	for (size_t i = 0; i < DNS_SECTION_MAX; i++) {
  ------------------
  |  Branch (2269:21): [True: 5.27k, False: 1.31k]
  ------------------
 2270|  5.27k|		msg->cursors[i] = NULL;
 2271|  5.27k|		msg->counts[i] = 0;
 2272|  5.27k|		MSG_SECTION_FOREACH(msg, i, name) {
  ------------------
  |  |  228|  5.27k|        for (dns_name_t *elt = ISC_LIST_HEAD((msg)->sections[(section)]); \
  |  |  ------------------
  |  |  |  |   62|  5.27k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  229|  6.52k|             elt != NULL;                                                 \
  |  |  ------------------
  |  |  |  Branch (229:14): [True: 1.25k, False: 5.27k]
  |  |  ------------------
  |  |  230|  5.27k|             elt = ISC_LIST_NEXT(elt, link))
  |  |  ------------------
  |  |  |  |  140|  1.25k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  ------------------
 2273|  1.25k|			ISC_LIST_FOREACH(name->list, rds, link) {
  ------------------
  |  |  234|  1.25k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  1.25k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  1.25k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|  1.25k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 1.25k, False: 0]
  |  |  ------------------
  |  |  236|  2.50k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 1.25k, False: 1.25k]
  |  |  ------------------
  |  |  237|  1.25k|	     elt = elt##_next,                                             \
  |  |  238|  1.25k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 0, False: 1.25k]
  |  |  ------------------
  ------------------
 2274|  1.25k|				rds->attributes.rendered = false;
 2275|  1.25k|			}
 2276|  1.25k|		}
 2277|  5.27k|	}
 2278|  1.31k|	if (msg->tsigname != NULL) {
  ------------------
  |  Branch (2278:6): [True: 2, False: 1.31k]
  ------------------
 2279|      2|		dns_message_puttempname(msg, &msg->tsigname);
 2280|      2|	}
 2281|  1.31k|	if (msg->tsig != NULL) {
  ------------------
  |  Branch (2281:6): [True: 2, False: 1.31k]
  ------------------
 2282|      2|		dns__message_putassociatedrdataset(msg, &msg->tsig);
 2283|      2|	}
 2284|  1.31k|	if (msg->sig0name != NULL) {
  ------------------
  |  Branch (2284:6): [True: 4, False: 1.31k]
  ------------------
 2285|      4|		dns_message_puttempname(msg, &msg->sig0name);
 2286|      4|	}
 2287|  1.31k|	if (msg->sig0 != NULL) {
  ------------------
  |  Branch (2287:6): [True: 4, False: 1.31k]
  ------------------
 2288|      4|		dns__message_putassociatedrdataset(msg, &msg->sig0);
 2289|      4|	}
 2290|  1.31k|}
dns_message_gettempname:
 2405|   426k|dns_message_gettempname(dns_message_t *msg, dns_name_t **item) {
 2406|   426k|	dns_fixedname_t *fn = NULL;
 2407|       |
 2408|   426k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|   426k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   853k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 426k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 426k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   426k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2409|   426k|	REQUIRE(item != NULL && *item == NULL);
  ------------------
  |  |  198|   426k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   853k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 426k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 426k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   426k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2410|       |
 2411|   426k|	fn = isc_mempool_get(msg->namepool);
  ------------------
  |  |  145|   426k|#define isc_mempool_get(c)   isc__mempool_get((c)_ISC_MEM_FILELINE)
  ------------------
 2412|   426k|	*item = dns_fixedname_initname(fn);
 2413|   426k|}
dns_message_gettemprdataset:
 2424|   422k|dns_message_gettemprdataset(dns_message_t *msg, dns_rdataset_t **item) {
 2425|   422k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   844k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2426|   422k|	REQUIRE(item != NULL && *item == NULL);
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   844k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2427|       |
 2428|   422k|	*item = isc_mempool_get(msg->rdspool);
  ------------------
  |  |  145|   422k|#define isc_mempool_get(c)   isc__mempool_get((c)_ISC_MEM_FILELINE)
  ------------------
 2429|   422k|	dns_rdataset_init(*item);
 2430|   422k|}
dns_message_puttempname:
 2441|   426k|dns_message_puttempname(dns_message_t *msg, dns_name_t **itemp) {
 2442|   426k|	dns_name_t *item = NULL;
 2443|       |
 2444|   426k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|   426k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   853k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 426k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 426k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   426k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2445|   426k|	REQUIRE(itemp != NULL && *itemp != NULL);
  ------------------
  |  |  198|   426k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   853k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 426k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 426k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   426k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2446|       |
 2447|   426k|	item = *itemp;
 2448|   426k|	*itemp = NULL;
 2449|       |
 2450|   426k|	REQUIRE(!ISC_LINK_LINKED(item, link));
  ------------------
  |  |  198|   426k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   426k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 426k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   426k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2451|   426k|	REQUIRE(ISC_LIST_HEAD(item->list) == NULL);
  ------------------
  |  |  198|   426k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   426k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 426k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   426k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2452|       |
 2453|   426k|	if (item->hashmap != NULL) {
  ------------------
  |  Branch (2453:6): [True: 0, False: 426k]
  ------------------
 2454|      0|		isc_hashmap_destroy(&item->hashmap);
 2455|      0|	}
 2456|       |
 2457|       |	/*
 2458|       |	 * we need to check this in case dns_name_dup() was used.
 2459|       |	 */
 2460|   426k|	if (dns_name_dynamic(item)) {
  ------------------
  |  Branch (2460:6): [True: 0, False: 426k]
  ------------------
 2461|      0|		dns_name_free(item, msg->mctx);
 2462|      0|	}
 2463|       |
 2464|       |	/*
 2465|       |	 * 'name' is the first field in dns_fixedname_t, so putting
 2466|       |	 * back the address of name is the same as putting back
 2467|       |	 * the fixedname.
 2468|       |	 */
 2469|       |	isc_mempool_put(msg->namepool, item);
  ------------------
  |  |  169|   426k|	do {                                                 \
  |  |  170|   426k|		isc__mempool_put((c), (p)_ISC_MEM_FILELINE); \
  |  |  171|   426k|		(p) = NULL;                                  \
  |  |  172|   426k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (172:11): [Folded, False: 426k]
  |  |  ------------------
  ------------------
 2470|   426k|}
dns_message_puttemprdataset:
 2488|   422k|dns_message_puttemprdataset(dns_message_t *msg, dns_rdataset_t **item) {
 2489|   422k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   844k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2490|   422k|	REQUIRE(item != NULL && *item != NULL);
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   844k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2491|       |
 2492|   422k|	REQUIRE(!dns_rdataset_isassociated(*item));
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   422k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2493|       |	isc_mempool_put(msg->rdspool, *item);
  ------------------
  |  |  169|   422k|	do {                                                 \
  |  |  170|   422k|		isc__mempool_put((c), (p)_ISC_MEM_FILELINE); \
  |  |  171|   422k|		(p) = NULL;                                  \
  |  |  172|   422k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (172:11): [Folded, False: 422k]
  |  |  ------------------
  ------------------
 2494|   422k|}
dns_message_getopt:
 2604|  17.6k|dns_message_getopt(dns_message_t *msg) {
 2605|       |	/*
 2606|       |	 * Get the OPT record for 'msg'.
 2607|       |	 */
 2608|       |
 2609|  17.6k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  17.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  35.2k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2610|       |
 2611|  17.6k|	return msg->opt;
 2612|  17.6k|}
dns_message_gettsig:
 2665|  17.5k|dns_message_gettsig(dns_message_t *msg, const dns_name_t **owner) {
 2666|       |	/*
 2667|       |	 * Get the TSIG record and owner for 'msg'.
 2668|       |	 */
 2669|       |
 2670|  17.5k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  17.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  35.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2671|  17.5k|	REQUIRE(owner == NULL || *owner == NULL);
  ------------------
  |  |  198|  17.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  35.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 17.5k]
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2672|       |
 2673|       |	SET_IF_NOT_NULL(owner, msg->tsigname);
  ------------------
  |  |  104|  17.5k|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 17.5k, False: 0]
  |  |  ------------------
  |  |  105|  17.5k|		*(obj) = (val);   \
  |  |  106|  17.5k|	}
  ------------------
 2674|  17.5k|	return msg->tsig;
 2675|  17.5k|}
dns_message_getsig0:
 2778|  17.5k|dns_message_getsig0(dns_message_t *msg, const dns_name_t **owner) {
 2779|       |	/*
 2780|       |	 * Get the SIG(0) record for 'msg'.
 2781|       |	 */
 2782|       |
 2783|  17.5k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  17.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  35.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2784|  17.5k|	REQUIRE(owner == NULL || *owner == NULL);
  ------------------
  |  |  198|  17.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  35.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 17.5k]
  |  |  |  |  |  Branch (42:11): [True: 17.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2785|       |
 2786|  17.5k|	if (msg->sig0 != NULL && owner != NULL) {
  ------------------
  |  Branch (2786:6): [True: 67, False: 17.5k]
  |  Branch (2786:27): [True: 67, False: 0]
  ------------------
 2787|       |		/* If dns_message_getsig0 is called on a rendered message
 2788|       |		 * after the SIG(0) has been applied, we need to return the
 2789|       |		 * root name, not NULL.
 2790|       |		 */
 2791|     67|		if (msg->sig0name == NULL) {
  ------------------
  |  Branch (2791:7): [True: 0, False: 67]
  ------------------
 2792|      0|			*owner = dns_rootname;
 2793|     67|		} else {
 2794|     67|			*owner = msg->sig0name;
 2795|     67|		}
 2796|     67|	}
 2797|  17.5k|	return msg->sig0;
 2798|  17.5k|}
dns_message_sectiontotext:
 3207|  70.4k|			  dns_messagetextflag_t flags, isc_buffer_t *target) {
 3208|  70.4k|	dns_name_t empty_name;
 3209|  70.4k|	isc_result_t result = ISC_R_SUCCESS;
 3210|  70.4k|	bool seensoa = false;
 3211|  70.4k|	size_t saved_count;
 3212|  70.4k|	dns_masterstyle_flags_t sflags;
 3213|       |
 3214|  70.4k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  70.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   140k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 70.4k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 70.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  70.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 3215|  70.4k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|  70.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  70.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 70.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  70.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 3216|  70.4k|	REQUIRE(VALID_NAMED_SECTION(section));
  ------------------
  |  |  198|  70.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   140k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 70.4k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 70.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  70.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 3217|       |
 3218|  70.4k|	saved_count = msg->indent.count;
 3219|       |
 3220|  70.4k|	if (ISC_LIST_EMPTY(msg->sections[section])) {
  ------------------
  |  |   64|  70.4k|#define ISC_LIST_EMPTY(list) ((list).head == NULL)
  |  |  ------------------
  |  |  |  Branch (64:30): [True: 49.5k, False: 20.8k]
  |  |  ------------------
  ------------------
 3221|  49.5k|		goto cleanup;
 3222|  49.5k|	}
 3223|       |
 3224|  20.8k|	sflags = dns_master_styleflags(style);
 3225|       |
 3226|  20.8k|	INDENT(style);
  ------------------
  |  | 3191|  20.8k|	do {                                                                 \
  |  | 3192|  20.8k|		unsigned int __i;                                            \
  |  | 3193|  20.8k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  20.8k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  20.8k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 20.8k, False: 0]
  |  |  ------------------
  |  | 3195|  20.8k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  20.8k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 20.8k, False: 0]
  |  |  ------------------
  |  | 3196|  20.8k|		{                                                            \
  |  | 3197|  20.8k|			break;                                               \
  |  | 3198|  20.8k|		}                                                            \
  |  | 3199|  20.8k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3227|  20.8k|	if ((sflags & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|  20.8k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (3227:6): [True: 0, False: 20.8k]
  ------------------
 3228|      0|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (3228:7): [True: 0, False: 0]
  ------------------
 3229|      0|			ADD_STRING(target, sectiontext[section]);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3230|      0|		} else {
 3231|      0|			ADD_STRING(target, updsectiontext[section]);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3232|      0|		}
 3233|      0|		ADD_STRING(target, "_SECTION:\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3234|  20.8k|	} else if ((flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0) {
  ------------------
  |  Branch (3234:13): [True: 20.8k, False: 0]
  ------------------
 3235|  20.8k|		ADD_STRING(target, ";; ");
  ------------------
  |  |   97|  20.8k|	{                                                         \
  |  |   98|  20.8k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  20.8k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 20.8k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  20.8k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  20.8k|	}
  ------------------
 3236|  20.8k|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (3236:7): [True: 17.9k, False: 2.84k]
  ------------------
 3237|  17.9k|			ADD_STRING(target, sectiontext[section]);
  ------------------
  |  |   97|  17.9k|	{                                                         \
  |  |   98|  17.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.9k|	}
  ------------------
 3238|  17.9k|		} else {
 3239|  2.84k|			ADD_STRING(target, updsectiontext[section]);
  ------------------
  |  |   97|  2.84k|	{                                                         \
  |  |   98|  2.84k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.84k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.84k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.84k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.84k|	}
  ------------------
 3240|  2.84k|		}
 3241|  20.8k|		ADD_STRING(target, " SECTION:\n");
  ------------------
  |  |   97|  20.8k|	{                                                         \
  |  |   98|  20.8k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  20.8k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 20.8k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  20.8k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  20.8k|	}
  ------------------
 3242|  20.8k|	}
 3243|       |
 3244|  20.8k|	dns_name_init(&empty_name);
 3245|  20.8k|	if (ISC_LIST_EMPTY(msg->sections[section])) {
  ------------------
  |  |   64|  20.8k|#define ISC_LIST_EMPTY(list) ((list).head == NULL)
  |  |  ------------------
  |  |  |  Branch (64:30): [True: 0, False: 20.8k]
  |  |  ------------------
  ------------------
 3246|      0|		goto cleanup;
 3247|      0|	}
 3248|  20.8k|	bool has_yaml = (sflags & DNS_STYLEFLAG_YAML) != 0;
  ------------------
  |  |  107|  20.8k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
 3249|  20.8k|	msg->indent.count += has_yaml;
 3250|       |
 3251|   190k|	MSG_SECTION_FOREACH(msg, section, name) {
  ------------------
  |  |  228|  20.8k|        for (dns_name_t *elt = ISC_LIST_HEAD((msg)->sections[(section)]); \
  |  |  ------------------
  |  |  |  |   62|  20.8k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  229|   210k|             elt != NULL;                                                 \
  |  |  ------------------
  |  |  |  Branch (229:14): [True: 190k, False: 20.8k]
  |  |  ------------------
  |  |  230|   190k|             elt = ISC_LIST_NEXT(elt, link))
  |  |  ------------------
  |  |  |  |  140|   190k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  ------------------
 3252|   239k|		ISC_LIST_FOREACH(name->list, rds, link) {
  ------------------
  |  |  234|   190k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|   190k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|   190k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|   190k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 190k, False: 0]
  |  |  ------------------
  |  |  236|   429k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 239k, False: 190k]
  |  |  ------------------
  |  |  237|   239k|	     elt = elt##_next,                                             \
  |  |  238|   239k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|  49.0k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 49.0k, False: 190k]
  |  |  ------------------
  ------------------
 3253|   239k|			if (section == DNS_SECTION_ANSWER &&
  ------------------
  |  Branch (3253:8): [True: 34.3k, False: 204k]
  ------------------
 3254|  34.3k|			    rds->type == dns_rdatatype_soa)
  ------------------
  |  |  120|  34.3k|#define dns_rdatatype_soa	((dns_rdatatype_t)dns_rdatatype_soa)
  ------------------
  |  Branch (3254:8): [True: 804, False: 33.5k]
  ------------------
 3255|    804|			{
 3256|    804|				if ((flags & DNS_MESSAGETEXTFLAG_OMITSOA) != 0)
  ------------------
  |  Branch (3256:9): [True: 0, False: 804]
  ------------------
 3257|      0|				{
 3258|      0|					continue;
 3259|      0|				}
 3260|    804|				if (seensoa &&
  ------------------
  |  Branch (3260:9): [True: 678, False: 126]
  ------------------
 3261|    678|				    (flags & DNS_MESSAGETEXTFLAG_ONESOA) != 0)
  ------------------
  |  Branch (3261:9): [True: 0, False: 678]
  ------------------
 3262|      0|				{
 3263|      0|					continue;
 3264|      0|				}
 3265|    804|				seensoa = true;
 3266|    804|			}
 3267|   239k|			if (section == DNS_SECTION_QUESTION) {
  ------------------
  |  Branch (3267:8): [True: 118k, False: 120k]
  ------------------
 3268|   118k|				INDENT(style);
  ------------------
  |  | 3191|   118k|	do {                                                                 \
  |  | 3192|   118k|		unsigned int __i;                                            \
  |  | 3193|   118k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|   118k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|   118k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 118k, False: 0]
  |  |  ------------------
  |  | 3195|   118k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|   118k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 118k, False: 0]
  |  |  ------------------
  |  | 3196|   118k|		{                                                            \
  |  | 3197|   118k|			break;                                               \
  |  | 3198|   118k|		}                                                            \
  |  | 3199|   118k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3269|   118k|				if ((sflags & DNS_STYLEFLAG_YAML) == 0) {
  ------------------
  |  |  107|   118k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (3269:9): [True: 118k, False: 0]
  ------------------
 3270|   118k|					ADD_STRING(target, ";");
  ------------------
  |  |   97|   118k|	{                                                         \
  |  |   98|   118k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   118k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 118k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   118k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   118k|	}
  ------------------
 3271|   118k|				}
 3272|   118k|				result = dns_master_questiontotext(
 3273|   118k|					name, rds, style, target);
 3274|   120k|			} else {
 3275|   120k|				result = dns_master_rdatasettotext(
 3276|   120k|					name, rds, style, &msg->indent, target);
 3277|   120k|			}
 3278|   239k|			if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (3278:8): [True: 11, False: 239k]
  ------------------
 3279|     11|				goto cleanup;
 3280|     11|			}
 3281|   239k|		}
 3282|   190k|	}
 3283|  20.8k|	msg->indent.count -= has_yaml;
 3284|       |
 3285|  20.8k|	if ((flags & DNS_MESSAGETEXTFLAG_NOHEADERS) == 0 &&
  ------------------
  |  Branch (3285:6): [True: 20.8k, False: 0]
  ------------------
 3286|  20.8k|	    (flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0 &&
  ------------------
  |  Branch (3286:6): [True: 20.8k, False: 0]
  ------------------
 3287|  20.8k|	    (sflags & DNS_STYLEFLAG_YAML) == 0)
  ------------------
  |  |  107|  20.8k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (3287:6): [True: 20.8k, False: 0]
  ------------------
 3288|  20.8k|	{
 3289|  20.8k|		INDENT(style);
  ------------------
  |  | 3191|  20.8k|	do {                                                                 \
  |  | 3192|  20.8k|		unsigned int __i;                                            \
  |  | 3193|  20.8k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  20.8k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  20.8k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 20.8k, False: 0]
  |  |  ------------------
  |  | 3195|  20.8k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  20.8k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 20.8k, False: 0]
  |  |  ------------------
  |  | 3196|  20.8k|		{                                                            \
  |  | 3197|  20.8k|			break;                                               \
  |  | 3198|  20.8k|		}                                                            \
  |  | 3199|  20.8k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3290|  20.8k|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|  20.8k|	{                                                         \
  |  |   98|  20.8k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  20.8k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 1, False: 20.8k]
  |  |  ------------------
  |  |   99|      1|			result = ISC_R_NOSPACE;                   \
  |  |  100|      1|			goto cleanup;                             \
  |  |  101|      1|		} else                                            \
  |  |  102|  20.8k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  20.8k|	}
  ------------------
 3291|  20.8k|	}
 3292|       |
 3293|  70.4k|cleanup:
 3294|  70.4k|	msg->indent.count = saved_count;
 3295|  70.4k|	return result;
 3296|  20.8k|}
dns_message_pseudosectiontotext:
 4045|  52.8k|				isc_buffer_t *target) {
 4046|  52.8k|	dns_rdataset_t *ps = NULL;
 4047|  52.8k|	const dns_name_t *name = NULL;
 4048|  52.8k|	isc_result_t result;
 4049|  52.8k|	char buf[sizeof(" (65000 bytes)")];
 4050|  52.8k|	uint32_t mbz;
 4051|  52.8k|	dns_rdata_t rdata;
 4052|  52.8k|	isc_buffer_t optbuf;
 4053|  52.8k|	uint16_t optcode, optlen;
 4054|  52.8k|	unsigned char *optdata = NULL;
 4055|  52.8k|	isc_buffer_t ecsbuf;
 4056|       |
 4057|  52.8k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  52.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   105k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 52.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 52.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  52.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4058|  52.8k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|  52.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  52.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 52.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  52.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4059|  52.8k|	REQUIRE(VALID_NAMED_PSEUDOSECTION(section));
  ------------------
  |  |  198|  52.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   105k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 52.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 52.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  52.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4060|       |
 4061|  52.8k|	if ((dns_master_styleflags(style) & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|  52.8k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (4061:6): [True: 0, False: 52.8k]
  ------------------
 4062|      0|		return dns_message_pseudosectiontoyaml(msg, section, style,
 4063|      0|						       flags, target);
 4064|      0|	}
 4065|       |
 4066|  52.8k|	switch (section) {
 4067|  17.6k|	case DNS_PSEUDOSECTION_OPT:
  ------------------
  |  Branch (4067:2): [True: 17.6k, False: 35.1k]
  ------------------
 4068|  17.6k|		ps = dns_message_getopt(msg);
 4069|  17.6k|		if (ps == NULL) {
  ------------------
  |  Branch (4069:7): [True: 13.3k, False: 4.23k]
  ------------------
 4070|  13.3k|			return ISC_R_SUCCESS;
 4071|  13.3k|		}
 4072|  4.23k|		if ((flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0) {
  ------------------
  |  Branch (4072:7): [True: 4.23k, False: 0]
  ------------------
 4073|  4.23k|			INDENT(style);
  ------------------
  |  | 3191|  4.23k|	do {                                                                 \
  |  | 3192|  4.23k|		unsigned int __i;                                            \
  |  | 3193|  4.23k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  4.23k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  4.23k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 4.23k, False: 0]
  |  |  ------------------
  |  | 3195|  4.23k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  4.23k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 4.23k, False: 0]
  |  |  ------------------
  |  | 3196|  4.23k|		{                                                            \
  |  | 3197|  4.23k|			break;                                               \
  |  | 3198|  4.23k|		}                                                            \
  |  | 3199|  4.23k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4074|  4.23k|			ADD_STRING(target, ";; OPT PSEUDOSECTION:\n");
  ------------------
  |  |   97|  4.23k|	{                                                         \
  |  |   98|  4.23k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.23k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.23k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.23k|	}
  ------------------
 4075|  4.23k|		}
 4076|       |
 4077|  4.23k|		INDENT(style);
  ------------------
  |  | 3191|  4.23k|	do {                                                                 \
  |  | 3192|  4.23k|		unsigned int __i;                                            \
  |  | 3193|  4.23k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  4.23k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  4.23k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 4.23k, False: 0]
  |  |  ------------------
  |  | 3195|  4.23k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  4.23k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 4.23k, False: 0]
  |  |  ------------------
  |  | 3196|  4.23k|		{                                                            \
  |  | 3197|  4.23k|			break;                                               \
  |  | 3198|  4.23k|		}                                                            \
  |  | 3199|  4.23k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4078|  4.23k|		ADD_STRING(target, "; EDNS: version: ");
  ------------------
  |  |   97|  4.23k|	{                                                         \
  |  |   98|  4.23k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.23k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.23k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.23k|	}
  ------------------
 4079|  4.23k|		snprintf(buf, sizeof(buf), "%u",
 4080|  4.23k|			 (unsigned int)((ps->ttl & 0x00ff0000) >> 16));
 4081|  4.23k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  4.23k|	{                                                         \
  |  |   98|  4.23k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.23k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.23k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.23k|	}
  ------------------
 4082|  4.23k|		ADD_STRING(target, ", flags:");
  ------------------
  |  |   97|  4.23k|	{                                                         \
  |  |   98|  4.23k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.23k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.23k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.23k|	}
  ------------------
 4083|  4.23k|		if ((ps->ttl & DNS_MESSAGEEXTFLAG_DO) != 0) {
  ------------------
  |  Branch (4083:7): [True: 1.04k, False: 3.18k]
  ------------------
 4084|  1.04k|			ADD_STRING(target, " do");
  ------------------
  |  |   97|  1.04k|	{                                                         \
  |  |   98|  1.04k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.04k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.04k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.04k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.04k|	}
  ------------------
 4085|  1.04k|		}
 4086|  4.23k|		if ((ps->ttl & DNS_MESSAGEEXTFLAG_CO) != 0) {
  ------------------
  |  Branch (4086:7): [True: 1.06k, False: 3.17k]
  ------------------
 4087|  1.06k|			ADD_STRING(target, " co");
  ------------------
  |  |   97|  1.06k|	{                                                         \
  |  |   98|  1.06k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.06k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.06k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.06k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.06k|	}
  ------------------
 4088|  1.06k|		}
 4089|  4.23k|		mbz = ps->ttl & 0xffff;
 4090|       |		/* Exclude Known Flags. */
 4091|  4.23k|		mbz &= ~(DNS_MESSAGEEXTFLAG_DO | DNS_MESSAGEEXTFLAG_CO);
 4092|  4.23k|		if (mbz != 0) {
  ------------------
  |  Branch (4092:7): [True: 3.36k, False: 869]
  ------------------
 4093|  3.36k|			ADD_STRING(target, "; MBZ: ");
  ------------------
  |  |   97|  3.36k|	{                                                         \
  |  |   98|  3.36k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.36k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.36k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.36k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.36k|	}
  ------------------
 4094|  3.36k|			snprintf(buf, sizeof(buf), "0x%.4x", mbz);
 4095|  3.36k|			ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.36k|	{                                                         \
  |  |   98|  3.36k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.36k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.36k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.36k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.36k|	}
  ------------------
 4096|  3.36k|			ADD_STRING(target, ", udp: ");
  ------------------
  |  |   97|  3.36k|	{                                                         \
  |  |   98|  3.36k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.36k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.36k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.36k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.36k|	}
  ------------------
 4097|  3.36k|		} else {
 4098|    869|			ADD_STRING(target, "; udp: ");
  ------------------
  |  |   97|    869|	{                                                         \
  |  |   98|    869|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|    869|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 869]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|    869|			isc_buffer_putstr(b, s);                  \
  |  |  103|    869|	}
  ------------------
 4099|    869|		}
 4100|  4.23k|		snprintf(buf, sizeof(buf), "%u\n", (unsigned int)ps->rdclass);
 4101|  4.23k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  4.23k|	{                                                         \
  |  |   98|  4.23k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.23k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.23k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.23k|	}
  ------------------
 4102|       |
 4103|  4.23k|		result = dns_rdataset_first(ps);
 4104|  4.23k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (4104:7): [True: 0, False: 4.23k]
  ------------------
 4105|      0|			return ISC_R_SUCCESS;
 4106|      0|		}
 4107|       |
 4108|       |		/*
 4109|       |		 * Print EDNS info, if any.
 4110|       |		 *
 4111|       |		 * WARNING: The option contents may be malformed as
 4112|       |		 * dig +ednsopt=value:<content> does no validity
 4113|       |		 * checking.
 4114|       |		 */
 4115|  4.23k|		dns_rdata_init(&rdata);
 4116|  4.23k|		dns_rdataset_current(ps, &rdata);
 4117|       |
 4118|  4.23k|		isc_buffer_init(&optbuf, rdata.data, rdata.length);
 4119|  4.23k|		isc_buffer_add(&optbuf, rdata.length);
 4120|   399k|		while (isc_buffer_remaininglength(&optbuf) != 0) {
  ------------------
  |  |  159|   399k|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
  |  Branch (4120:10): [True: 395k, False: 4.23k]
  ------------------
 4121|   395k|			const char *option_name = NULL;
 4122|       |
 4123|   395k|			INSIST(isc_buffer_remaininglength(&optbuf) >= 4U);
  ------------------
  |  |  202|   395k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   395k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 395k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   395k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 4124|   395k|			optcode = isc_buffer_getuint16(&optbuf);
 4125|   395k|			optlen = isc_buffer_getuint16(&optbuf);
 4126|       |
 4127|   395k|			INSIST(isc_buffer_remaininglength(&optbuf) >= optlen);
  ------------------
  |  |  202|   395k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   395k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 395k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   395k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 4128|       |
 4129|   395k|			INDENT(style);
  ------------------
  |  | 3191|   395k|	do {                                                                 \
  |  | 3192|   395k|		unsigned int __i;                                            \
  |  | 3193|   395k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|   395k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|   395k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 395k, False: 0]
  |  |  ------------------
  |  | 3195|   395k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|   395k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 395k, False: 0]
  |  |  ------------------
  |  | 3196|   395k|		{                                                            \
  |  | 3197|   395k|			break;                                               \
  |  | 3198|   395k|		}                                                            \
  |  | 3199|   395k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4130|   395k|			ADD_STRING(target, "; ");
  ------------------
  |  |   97|   395k|	{                                                         \
  |  |   98|   395k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   395k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 395k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   395k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   395k|	}
  ------------------
 4131|   395k|			if (optcode < ARRAY_SIZE(option_names)) {
  ------------------
  |  |   98|   395k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (4131:8): [True: 315k, False: 80.7k]
  ------------------
 4132|   315k|				option_name = option_names[optcode];
 4133|   315k|			}
 4134|   395k|			if (option_name != NULL) {
  ------------------
  |  Branch (4134:8): [True: 110k, False: 284k]
  ------------------
 4135|   110k|				ADD_STRING(target, option_names[optcode])
  ------------------
  |  |   97|   110k|	{                                                         \
  |  |   98|   110k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   110k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 110k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   110k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   110k|	}
  ------------------
 4136|   284k|			} else {
 4137|   284k|				snprintf(buf, sizeof(buf), "OPT=%u", optcode);
 4138|   284k|				ADD_STRING(target, buf);
  ------------------
  |  |   97|   284k|	{                                                         \
  |  |   98|   284k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   284k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 284k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   284k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   284k|	}
  ------------------
 4139|   284k|			}
 4140|   395k|			ADD_STRING(target, ":");
  ------------------
  |  |   97|   395k|	{                                                         \
  |  |   98|   395k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   395k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 395k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   395k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   395k|	}
  ------------------
 4141|       |
 4142|   395k|			switch (optcode) {
 4143|  3.30k|			case DNS_OPT_LLQ:
  ------------------
  |  Branch (4143:4): [True: 3.30k, False: 392k]
  ------------------
 4144|  3.30k|				if (optlen == 18U) {
  ------------------
  |  Branch (4144:9): [True: 3.30k, False: 0]
  ------------------
 4145|  3.30k|					RETERR(render_llq(&optbuf, msg, style,
  ------------------
  |  |  276|  3.30k|	{                                  \
  |  |  277|  3.30k|		isc_result_t _r = (x);     \
  |  |  278|  3.30k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 3.30k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  3.30k|	}
  ------------------
 4146|  3.30k|							  target));
 4147|  3.30k|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 4148|  3.30k|					continue;
 4149|  3.30k|				}
 4150|      0|				break;
 4151|  10.6k|			case DNS_OPT_UL:
  ------------------
  |  Branch (4151:4): [True: 10.6k, False: 385k]
  ------------------
 4152|  10.6k|				if (optlen == 4U || optlen == 8U) {
  ------------------
  |  Branch (4152:9): [True: 5.44k, False: 5.22k]
  |  Branch (4152:25): [True: 5.22k, False: 0]
  ------------------
 4153|  10.6k|					uint32_t secs, key = 0;
 4154|  10.6k|					secs = isc_buffer_getuint32(&optbuf);
 4155|  10.6k|					snprintf(buf, sizeof(buf), " %u", secs);
 4156|  10.6k|					ADD_STRING(target, buf);
  ------------------
  |  |   97|  10.6k|	{                                                         \
  |  |   98|  10.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  10.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 10.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  10.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  10.6k|	}
  ------------------
 4157|  10.6k|					if (optlen == 8U) {
  ------------------
  |  Branch (4157:10): [True: 5.22k, False: 5.44k]
  ------------------
 4158|  5.22k|						key = isc_buffer_getuint32(
 4159|  5.22k|							&optbuf);
 4160|  5.22k|						snprintf(buf, sizeof(buf),
 4161|  5.22k|							 "/%u", key);
 4162|  5.22k|						ADD_STRING(target, buf);
  ------------------
  |  |   97|  5.22k|	{                                                         \
  |  |   98|  5.22k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  5.22k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 5.22k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  5.22k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  5.22k|	}
  ------------------
 4163|  5.22k|					}
 4164|  10.6k|					ADD_STRING(target, " (");
  ------------------
  |  |   97|  10.6k|	{                                                         \
  |  |   98|  10.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  10.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 10.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  10.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  10.6k|	}
  ------------------
 4165|  10.6k|					CHECK(dns_ttl_totext(secs, true, true,
  ------------------
  |  |  255|  10.6k|	{                                      \
  |  |  256|  10.6k|		result = (r);                  \
  |  |  257|  10.6k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 10.6k]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  10.6k|	}
  ------------------
 4166|  10.6k|							     target));
 4167|  10.6k|					if (optlen == 8U) {
  ------------------
  |  Branch (4167:10): [True: 5.22k, False: 5.44k]
  ------------------
 4168|  5.22k|						ADD_STRING(target, "/");
  ------------------
  |  |   97|  5.22k|	{                                                         \
  |  |   98|  5.22k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  5.22k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 5.22k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  5.22k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  5.22k|	}
  ------------------
 4169|  5.22k|						CHECK(dns_ttl_totext(key, true,
  ------------------
  |  |  255|  5.22k|	{                                      \
  |  |  256|  5.22k|		result = (r);                  \
  |  |  257|  5.22k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 5.22k]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  5.22k|	}
  ------------------
 4170|  5.22k|								     true,
 4171|  5.22k|								     target));
 4172|  5.22k|					}
 4173|  10.6k|					ADD_STRING(target, ")\n");
  ------------------
  |  |   97|  10.6k|	{                                                         \
  |  |   98|  10.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  10.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 10.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  10.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  10.6k|	}
  ------------------
 4174|  10.6k|					continue;
 4175|  10.6k|				}
 4176|      0|				break;
 4177|  12.1k|			case DNS_OPT_CLIENT_SUBNET:
  ------------------
  |  Branch (4177:4): [True: 12.1k, False: 383k]
  ------------------
 4178|  12.1k|				isc_buffer_init(&ecsbuf,
 4179|  12.1k|						isc_buffer_current(&optbuf),
  ------------------
  |  |  145|  12.1k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
 4180|  12.1k|						optlen);
 4181|  12.1k|				isc_buffer_add(&ecsbuf, optlen);
 4182|  12.1k|				result = render_ecs(&ecsbuf, target);
 4183|  12.1k|				if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (4183:9): [True: 0, False: 12.1k]
  ------------------
 4184|      0|					return result;
 4185|      0|				}
 4186|  12.1k|				if (result == ISC_R_SUCCESS) {
  ------------------
  |  Branch (4186:9): [True: 12.1k, False: 0]
  ------------------
 4187|  12.1k|					isc_buffer_forward(&optbuf, optlen);
 4188|  12.1k|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|  12.1k|	{                                                         \
  |  |   98|  12.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  12.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  12.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  12.1k|	}
  ------------------
 4189|  12.1k|					continue;
 4190|  12.1k|				}
 4191|      0|				break;
 4192|  15.9k|			case DNS_OPT_EXPIRE:
  ------------------
  |  Branch (4192:4): [True: 15.9k, False: 379k]
  ------------------
 4193|  15.9k|				if (optlen == 4) {
  ------------------
  |  Branch (4193:9): [True: 10.9k, False: 5.00k]
  ------------------
 4194|  10.9k|					uint32_t secs;
 4195|  10.9k|					secs = isc_buffer_getuint32(&optbuf);
 4196|  10.9k|					snprintf(buf, sizeof(buf), " %u", secs);
 4197|  10.9k|					ADD_STRING(target, buf);
  ------------------
  |  |   97|  10.9k|	{                                                         \
  |  |   98|  10.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  10.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 10.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  10.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  10.9k|	}
  ------------------
 4198|  10.9k|					ADD_STRING(target, " (");
  ------------------
  |  |   97|  10.9k|	{                                                         \
  |  |   98|  10.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  10.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 10.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  10.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  10.9k|	}
  ------------------
 4199|  10.9k|					RETERR(dns_ttl_totext(secs, true, true,
  ------------------
  |  |  276|  10.9k|	{                                  \
  |  |  277|  10.9k|		isc_result_t _r = (x);     \
  |  |  278|  10.9k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 10.9k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  10.9k|	}
  ------------------
 4200|  10.9k|							      target));
 4201|  10.9k|					ADD_STRING(target, ")\n");
  ------------------
  |  |   97|  10.9k|	{                                                         \
  |  |   98|  10.9k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  10.9k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 10.9k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  10.9k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  10.9k|	}
  ------------------
 4202|  10.9k|					continue;
 4203|  10.9k|				}
 4204|  5.00k|				break;
 4205|  5.00k|			case DNS_OPT_TCP_KEEPALIVE:
  ------------------
  |  Branch (4205:4): [True: 2.87k, False: 392k]
  ------------------
 4206|  2.87k|				if (optlen == 2) {
  ------------------
  |  Branch (4206:9): [True: 2.00k, False: 873]
  ------------------
 4207|  2.00k|					unsigned int dsecs;
 4208|  2.00k|					dsecs = isc_buffer_getuint16(&optbuf);
 4209|  2.00k|					snprintf(buf, sizeof(buf), " %u.%u",
 4210|  2.00k|						 dsecs / 10U, dsecs % 10U);
 4211|  2.00k|					ADD_STRING(target, buf);
  ------------------
  |  |   97|  2.00k|	{                                                         \
  |  |   98|  2.00k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.00k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.00k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.00k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.00k|	}
  ------------------
 4212|  2.00k|					ADD_STRING(target, " secs\n");
  ------------------
  |  |   97|  2.00k|	{                                                         \
  |  |   98|  2.00k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.00k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.00k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.00k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.00k|	}
  ------------------
 4213|  2.00k|					continue;
 4214|  2.00k|				}
 4215|    873|				break;
 4216|  7.93k|			case DNS_OPT_PAD:
  ------------------
  |  Branch (4216:4): [True: 7.93k, False: 387k]
  ------------------
 4217|  7.93k|				if (optlen > 0U) {
  ------------------
  |  Branch (4217:9): [True: 2.39k, False: 5.53k]
  ------------------
 4218|  2.39k|					snprintf(buf, sizeof(buf),
 4219|  2.39k|						 " (%u bytes)", optlen);
 4220|  2.39k|					ADD_STRING(target, buf);
  ------------------
  |  |   97|  2.39k|	{                                                         \
  |  |   98|  2.39k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.39k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.39k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.39k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.39k|	}
  ------------------
 4221|  2.39k|					isc_buffer_forward(&optbuf, optlen);
 4222|  2.39k|				}
 4223|  7.93k|				ADD_STRING(target, "\n");
  ------------------
  |  |   97|  7.93k|	{                                                         \
  |  |   98|  7.93k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  7.93k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 7.93k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  7.93k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  7.93k|	}
  ------------------
 4224|  7.93k|				continue;
 4225|  2.50k|			case DNS_OPT_CHAIN:
  ------------------
  |  Branch (4225:4): [True: 2.50k, False: 393k]
  ------------------
 4226|  4.02k|			case DNS_OPT_REPORT_CHANNEL:
  ------------------
  |  Branch (4226:4): [True: 1.52k, False: 394k]
  ------------------
 4227|  4.02k|				if (optlen > 0U) {
  ------------------
  |  Branch (4227:9): [True: 2.73k, False: 1.29k]
  ------------------
 4228|  2.73k|					isc_buffer_t sb = optbuf;
 4229|  2.73k|					isc_buffer_setactive(&optbuf, optlen);
 4230|  2.73k|					result = render_nameopt(&optbuf, false,
 4231|  2.73k|								target);
 4232|  2.73k|					if (result == ISC_R_SUCCESS) {
  ------------------
  |  Branch (4232:10): [True: 1.73k, False: 1.00k]
  ------------------
 4233|  1.73k|						ADD_STRING(target, "\n");
  ------------------
  |  |   97|  1.73k|	{                                                         \
  |  |   98|  1.73k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.73k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.73k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.73k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.73k|	}
  ------------------
 4234|  1.73k|						continue;
 4235|  1.73k|					}
 4236|  1.00k|					optbuf = sb;
 4237|  1.00k|				}
 4238|  2.29k|				ADD_STRING(target, "\n");
  ------------------
  |  |   97|  2.29k|	{                                                         \
  |  |   98|  2.29k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.29k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.29k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.29k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.29k|	}
  ------------------
 4239|  2.29k|				break;
 4240|  1.60k|			case DNS_OPT_KEY_TAG:
  ------------------
  |  Branch (4240:4): [True: 1.60k, False: 394k]
  ------------------
 4241|  1.60k|				if (optlen > 0U && (optlen % 2U) == 0U) {
  ------------------
  |  Branch (4241:9): [True: 1.60k, False: 0]
  |  Branch (4241:24): [True: 1.60k, False: 0]
  ------------------
 4242|  1.60k|					const char *sep = "";
 4243|  15.7k|					while (optlen > 0U) {
  ------------------
  |  Branch (4243:13): [True: 14.1k, False: 1.60k]
  ------------------
 4244|  14.1k|						uint16_t id =
 4245|  14.1k|							isc_buffer_getuint16(
 4246|  14.1k|								&optbuf);
 4247|  14.1k|						snprintf(buf, sizeof(buf),
 4248|  14.1k|							 "%s %u", sep, id);
 4249|  14.1k|						ADD_STRING(target, buf);
  ------------------
  |  |   97|  14.1k|	{                                                         \
  |  |   98|  14.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  14.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 14.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  14.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  14.1k|	}
  ------------------
 4250|  14.1k|						sep = ",";
 4251|  14.1k|						optlen -= 2;
 4252|  14.1k|					}
 4253|  1.60k|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|  1.60k|	{                                                         \
  |  |   98|  1.60k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.60k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.60k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.60k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.60k|	}
  ------------------
 4254|  1.60k|					continue;
 4255|  1.60k|				}
 4256|      0|				break;
 4257|  6.63k|			case DNS_OPT_EDE:
  ------------------
  |  Branch (4257:4): [True: 6.63k, False: 389k]
  ------------------
 4258|  6.63k|				if (optlen >= 2U) {
  ------------------
  |  Branch (4258:9): [True: 6.63k, False: 0]
  ------------------
 4259|  6.63k|					uint16_t ede;
 4260|  6.63k|					ede = isc_buffer_getuint16(&optbuf);
 4261|  6.63k|					snprintf(buf, sizeof(buf), " %u", ede);
 4262|  6.63k|					ADD_STRING(target, buf);
  ------------------
  |  |   97|  6.63k|	{                                                         \
  |  |   98|  6.63k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  6.63k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 6.63k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  6.63k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  6.63k|	}
  ------------------
 4263|  6.63k|					if (ede < ARRAY_SIZE(edetext)) {
  ------------------
  |  |   98|  6.63k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (4263:10): [True: 2.09k, False: 4.54k]
  ------------------
 4264|  2.09k|						ADD_STRING(target, " (");
  ------------------
  |  |   97|  2.09k|	{                                                         \
  |  |   98|  2.09k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.09k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.09k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.09k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.09k|	}
  ------------------
 4265|  2.09k|						ADD_STRING(target,
  ------------------
  |  |   97|  2.09k|	{                                                         \
  |  |   98|  2.09k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.09k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.09k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.09k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.09k|	}
  ------------------
 4266|  2.09k|							   edetext[ede]);
 4267|  2.09k|						ADD_STRING(target, ")");
  ------------------
  |  |   97|  2.09k|	{                                                         \
  |  |   98|  2.09k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.09k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.09k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.09k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.09k|	}
  ------------------
 4268|  2.09k|					}
 4269|  6.63k|					optlen -= 2;
 4270|  6.63k|					if (optlen != 0) {
  ------------------
  |  Branch (4270:10): [True: 4.55k, False: 2.08k]
  ------------------
 4271|  4.55k|						ADD_STRING(target, ":");
  ------------------
  |  |   97|  4.55k|	{                                                         \
  |  |   98|  4.55k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.55k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.55k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.55k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.55k|	}
  ------------------
 4272|  4.55k|					}
 4273|  6.63k|				} else if (optlen == 1U) {
  ------------------
  |  Branch (4273:16): [True: 0, False: 0]
  ------------------
 4274|       |					/* Malformed */
 4275|      0|					optdata = isc_buffer_current(&optbuf);
  ------------------
  |  |  145|      0|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
 4276|      0|					snprintf(buf, sizeof(buf),
 4277|      0|						 " %02x (\"%c\")\n", optdata[0],
 4278|      0|						 isprint(optdata[0])
  ------------------
  |  Branch (4278:8): [True: 0, False: 0]
  ------------------
 4279|      0|							 ? optdata[0]
 4280|      0|							 : '.');
 4281|      0|					isc_buffer_forward(&optbuf, optlen);
 4282|      0|					ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4283|      0|					continue;
 4284|      0|				}
 4285|  6.63k|				break;
 4286|  6.63k|			case DNS_OPT_CLIENT_TAG:
  ------------------
  |  Branch (4286:4): [True: 456, False: 395k]
  ------------------
 4287|  1.12k|			case DNS_OPT_SERVER_TAG:
  ------------------
  |  Branch (4287:4): [True: 671, False: 395k]
  ------------------
 4288|  1.12k|				if (optlen == 2U) {
  ------------------
  |  Branch (4288:9): [True: 1.12k, False: 0]
  ------------------
 4289|  1.12k|					uint16_t id =
 4290|  1.12k|						isc_buffer_getuint16(&optbuf);
 4291|  1.12k|					snprintf(buf, sizeof(buf), " %u\n", id);
 4292|  1.12k|					ADD_STRING(target, buf);
  ------------------
  |  |   97|  1.12k|	{                                                         \
  |  |   98|  1.12k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.12k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.12k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.12k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.12k|	}
  ------------------
 4293|  1.12k|					continue;
 4294|  1.12k|				}
 4295|      0|				break;
 4296|  39.1k|			case DNS_OPT_ZONEVERSION:
  ------------------
  |  Branch (4296:4): [True: 39.1k, False: 356k]
  ------------------
 4297|  39.1k|				if (optlen >= 2U) {
  ------------------
  |  Branch (4297:9): [True: 31.8k, False: 7.31k]
  ------------------
 4298|  31.8k|					isc_buffer_t zonebuf = optbuf;
 4299|  31.8k|					isc_buffer_setactive(&zonebuf, optlen);
 4300|  31.8k|					CHECK(render_zoneversion(
  ------------------
  |  |  255|  31.8k|	{                                      \
  |  |  256|  31.8k|		result = (r);                  \
  |  |  257|  31.8k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 31.8k]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  31.8k|	}
  ------------------
 4301|  31.8k|						msg, &zonebuf, style, target));
 4302|  31.8k|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|  31.8k|	{                                                         \
  |  |   98|  31.8k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  31.8k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 31.8k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  31.8k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  31.8k|	}
  ------------------
 4303|  31.8k|					isc_buffer_forward(&optbuf, optlen);
 4304|  31.8k|					continue;
 4305|  31.8k|				}
 4306|  7.31k|				break;
 4307|   290k|			default:
  ------------------
  |  Branch (4307:4): [True: 290k, False: 105k]
  ------------------
 4308|   290k|				break;
 4309|   395k|			}
 4310|       |
 4311|   312k|			if (optlen != 0) {
  ------------------
  |  Branch (4311:8): [True: 50.6k, False: 261k]
  ------------------
 4312|  50.6k|				int i;
 4313|  50.6k|				bool utf8ok = false;
 4314|       |
 4315|  50.6k|				ADD_STRING(target, " ");
  ------------------
  |  |   97|  50.6k|	{                                                         \
  |  |   98|  50.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  50.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 50.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  50.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  50.6k|	}
  ------------------
 4316|       |
 4317|  50.6k|				optdata = isc_buffer_current(&optbuf);
  ------------------
  |  |  145|  50.6k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
 4318|  50.6k|				if (optcode == DNS_OPT_EDE) {
  ------------------
  |  Branch (4318:9): [True: 4.55k, False: 46.1k]
  ------------------
 4319|  4.55k|					utf8ok = isc_utf8_valid(optdata,
 4320|  4.55k|								optlen);
 4321|  4.55k|				}
 4322|  50.6k|				if (!utf8ok) {
  ------------------
  |  Branch (4322:9): [True: 46.1k, False: 4.55k]
  ------------------
 4323|  2.17M|					for (i = 0; i < optlen; i++) {
  ------------------
  |  Branch (4323:18): [True: 2.13M, False: 46.1k]
  ------------------
 4324|  2.13M|						const char *sep;
 4325|  2.13M|						switch (optcode) {
 4326|  10.4k|						case DNS_OPT_COOKIE:
  ------------------
  |  Branch (4326:7): [True: 10.4k, False: 2.12M]
  ------------------
 4327|  10.4k|							sep = "";
 4328|  10.4k|							break;
 4329|  2.12M|						default:
  ------------------
  |  Branch (4329:7): [True: 2.12M, False: 10.4k]
  ------------------
 4330|  2.12M|							sep = " ";
 4331|  2.12M|							break;
 4332|  2.13M|						}
 4333|  2.13M|						snprintf(buf, sizeof(buf),
 4334|  2.13M|							 "%02x%s", optdata[i],
 4335|  2.13M|							 sep);
 4336|  2.13M|						ADD_STRING(target, buf);
  ------------------
  |  |   97|  2.13M|	{                                                         \
  |  |   98|  2.13M|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.13M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 1, False: 2.13M]
  |  |  ------------------
  |  |   99|      1|			result = ISC_R_NOSPACE;                   \
  |  |  100|      1|			goto cleanup;                             \
  |  |  101|      1|		} else                                            \
  |  |  102|  2.13M|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.13M|	}
  ------------------
 4337|  2.13M|					}
 4338|  46.1k|				}
 4339|       |
 4340|  50.6k|				isc_buffer_forward(&optbuf, optlen);
 4341|       |
 4342|  50.6k|				if (optcode == DNS_OPT_COOKIE) {
  ------------------
  |  Branch (4342:9): [True: 899, False: 49.7k]
  ------------------
 4343|       |					/*
 4344|       |					 * Valid server cookie?
 4345|       |					 */
 4346|    899|					if (msg->cc_ok && optlen >= 16) {
  ------------------
  |  Branch (4346:10): [True: 0, False: 899]
  |  Branch (4346:24): [True: 0, False: 0]
  ------------------
 4347|      0|						ADD_STRING(target, " (good)");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4348|      0|					}
 4349|       |					/*
 4350|       |					 * Server cookie is not valid but
 4351|       |					 * we had our cookie echoed back.
 4352|       |					 */
 4353|    899|					if (msg->cc_ok && optlen < 16) {
  ------------------
  |  Branch (4353:10): [True: 0, False: 899]
  |  Branch (4353:24): [True: 0, False: 0]
  ------------------
 4354|      0|						ADD_STRING(target, " (echoed)");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4355|      0|					}
 4356|       |					/*
 4357|       |					 * We didn't get our cookie echoed
 4358|       |					 * back.
 4359|       |					 */
 4360|    899|					if (msg->cc_bad) {
  ------------------
  |  Branch (4360:10): [True: 0, False: 899]
  ------------------
 4361|      0|						ADD_STRING(target, " (bad)");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4362|      0|					}
 4363|    899|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|    899|	{                                                         \
  |  |   98|    899|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|    899|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 899]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|    899|			isc_buffer_putstr(b, s);                  \
  |  |  103|    899|	}
  ------------------
 4364|    899|					continue;
 4365|    899|				}
 4366|       |
 4367|  49.7k|				if (optcode == DNS_OPT_CLIENT_SUBNET) {
  ------------------
  |  Branch (4367:9): [True: 0, False: 49.7k]
  ------------------
 4368|      0|					ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4369|      0|					continue;
 4370|      0|				}
 4371|       |
 4372|       |				/*
 4373|       |				 * For non-COOKIE options, add a printable
 4374|       |				 * version.
 4375|       |				 */
 4376|  49.7k|				if (optcode != DNS_OPT_EDE) {
  ------------------
  |  Branch (4376:9): [True: 45.2k, False: 4.55k]
  ------------------
 4377|  45.2k|					ADD_STRING(target, "(\"");
  ------------------
  |  |   97|  45.2k|	{                                                         \
  |  |   98|  45.2k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  45.2k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 45.2k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  45.2k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  45.2k|	}
  ------------------
 4378|  45.2k|				} else {
 4379|  4.55k|					ADD_STRING(target, "(");
  ------------------
  |  |   97|  4.55k|	{                                                         \
  |  |   98|  4.55k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.55k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.55k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.55k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.55k|	}
  ------------------
 4380|  4.55k|				}
 4381|  49.7k|				if (isc_buffer_availablelength(target) < optlen)
  ------------------
  |  |  161|  49.7k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (4381:9): [True: 0, False: 49.7k]
  ------------------
 4382|      0|				{
 4383|      0|					return ISC_R_NOSPACE;
 4384|      0|				}
 4385|  2.19M|				for (i = 0; i < optlen; i++) {
  ------------------
  |  Branch (4385:17): [True: 2.14M, False: 49.7k]
  ------------------
 4386|  2.14M|					if (isprint(optdata[i]) ||
  ------------------
  |  Branch (4386:10): [True: 173k, False: 1.97M]
  ------------------
 4387|  1.97M|					    (utf8ok && optdata[i] > 127))
  ------------------
  |  Branch (4387:11): [True: 20.1k, False: 1.95M]
  |  Branch (4387:21): [True: 3.65k, False: 16.5k]
  ------------------
 4388|   176k|					{
 4389|   176k|						isc_buffer_putmem(
 4390|   176k|							target, &optdata[i], 1);
 4391|  1.96M|					} else {
 4392|  1.96M|						isc_buffer_putstr(target, ".");
 4393|  1.96M|					}
 4394|  2.14M|				}
 4395|  49.7k|				if (optcode != DNS_OPT_EDE) {
  ------------------
  |  Branch (4395:9): [True: 45.2k, False: 4.55k]
  ------------------
 4396|  45.2k|					ADD_STRING(target, "\")");
  ------------------
  |  |   97|  45.2k|	{                                                         \
  |  |   98|  45.2k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  45.2k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 45.2k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  45.2k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  45.2k|	}
  ------------------
 4397|  45.2k|				} else {
 4398|  4.55k|					ADD_STRING(target, ")");
  ------------------
  |  |   97|  4.55k|	{                                                         \
  |  |   98|  4.55k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.55k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.55k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.55k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.55k|	}
  ------------------
 4399|  4.55k|				}
 4400|  49.7k|			}
 4401|   311k|			ADD_STRING(target, "\n");
  ------------------
  |  |   97|   311k|	{                                                         \
  |  |   98|   311k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   311k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 311k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   311k|			isc_buffer_putstr(b, s);                  \
  |  |  103|   311k|	}
  ------------------
 4402|   311k|		}
 4403|  4.23k|		return ISC_R_SUCCESS;
 4404|  17.5k|	case DNS_PSEUDOSECTION_TSIG:
  ------------------
  |  Branch (4404:2): [True: 17.5k, False: 35.2k]
  ------------------
 4405|  17.5k|		ps = dns_message_gettsig(msg, &name);
 4406|  17.5k|		if (ps == NULL) {
  ------------------
  |  Branch (4406:7): [True: 17.5k, False: 43]
  ------------------
 4407|  17.5k|			return ISC_R_SUCCESS;
 4408|  17.5k|		}
 4409|     43|		INDENT(style);
  ------------------
  |  | 3191|     43|	do {                                                                 \
  |  | 3192|     43|		unsigned int __i;                                            \
  |  | 3193|     43|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|     43|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|     43|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 43, False: 0]
  |  |  ------------------
  |  | 3195|     43|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|     43|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 43, False: 0]
  |  |  ------------------
  |  | 3196|     43|		{                                                            \
  |  | 3197|     43|			break;                                               \
  |  | 3198|     43|		}                                                            \
  |  | 3199|     43|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4410|     43|		if ((flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0) {
  ------------------
  |  Branch (4410:7): [True: 43, False: 0]
  ------------------
 4411|     43|			ADD_STRING(target, ";; TSIG PSEUDOSECTION:\n");
  ------------------
  |  |   97|     43|	{                                                         \
  |  |   98|     43|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     43|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 43]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     43|			isc_buffer_putstr(b, s);                  \
  |  |  103|     43|	}
  ------------------
 4412|     43|		}
 4413|     43|		result = dns_master_rdatasettotext(name, ps, style,
 4414|     43|						   &msg->indent, target);
 4415|     43|		if ((flags & DNS_MESSAGETEXTFLAG_NOHEADERS) == 0 &&
  ------------------
  |  Branch (4415:7): [True: 43, False: 0]
  ------------------
 4416|     43|		    (flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0)
  ------------------
  |  Branch (4416:7): [True: 43, False: 0]
  ------------------
 4417|     43|		{
 4418|     43|			ADD_STRING(target, "\n");
  ------------------
  |  |   97|     43|	{                                                         \
  |  |   98|     43|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     43|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 43]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     43|			isc_buffer_putstr(b, s);                  \
  |  |  103|     43|	}
  ------------------
 4419|     43|		}
 4420|     43|		return result;
 4421|  17.5k|	case DNS_PSEUDOSECTION_SIG0:
  ------------------
  |  Branch (4421:2): [True: 17.5k, False: 35.2k]
  ------------------
 4422|  17.5k|		ps = dns_message_getsig0(msg, &name);
 4423|  17.5k|		if (ps == NULL) {
  ------------------
  |  Branch (4423:7): [True: 17.5k, False: 67]
  ------------------
 4424|  17.5k|			return ISC_R_SUCCESS;
 4425|  17.5k|		}
 4426|     67|		INDENT(style);
  ------------------
  |  | 3191|     67|	do {                                                                 \
  |  | 3192|     67|		unsigned int __i;                                            \
  |  | 3193|     67|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|     67|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|     67|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 67, False: 0]
  |  |  ------------------
  |  | 3195|     67|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|     67|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 67, False: 0]
  |  |  ------------------
  |  | 3196|     67|		{                                                            \
  |  | 3197|     67|			break;                                               \
  |  | 3198|     67|		}                                                            \
  |  | 3199|     67|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4427|     67|		if ((flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0) {
  ------------------
  |  Branch (4427:7): [True: 67, False: 0]
  ------------------
 4428|     67|			ADD_STRING(target, ";; SIG0 PSEUDOSECTION:\n");
  ------------------
  |  |   97|     67|	{                                                         \
  |  |   98|     67|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     67|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 67]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     67|			isc_buffer_putstr(b, s);                  \
  |  |  103|     67|	}
  ------------------
 4429|     67|		}
 4430|     67|		result = dns_master_rdatasettotext(name, ps, style,
 4431|     67|						   &msg->indent, target);
 4432|     67|		if ((flags & DNS_MESSAGETEXTFLAG_NOHEADERS) == 0 &&
  ------------------
  |  Branch (4432:7): [True: 67, False: 0]
  ------------------
 4433|     67|		    (flags & DNS_MESSAGETEXTFLAG_NOCOMMENTS) == 0)
  ------------------
  |  Branch (4433:7): [True: 67, False: 0]
  ------------------
 4434|     67|		{
 4435|     67|			ADD_STRING(target, "\n");
  ------------------
  |  |   97|     67|	{                                                         \
  |  |   98|     67|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     67|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 67]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     67|			isc_buffer_putstr(b, s);                  \
  |  |  103|     67|	}
  ------------------
 4436|     67|		}
 4437|     67|		return result;
 4438|      0|	default:
  ------------------
  |  Branch (4438:2): [True: 0, False: 52.8k]
  ------------------
 4439|      0|		break;
 4440|  52.8k|	}
 4441|      0|	result = ISC_R_UNEXPECTED;
 4442|      1|cleanup:
 4443|      1|	return result;
 4444|      0|}
dns_message_headertotext:
 4448|  17.6k|			 dns_messagetextflag_t flags, isc_buffer_t *target) {
 4449|  17.6k|	char buf[sizeof("1234567890")];
 4450|  17.6k|	isc_result_t result = ISC_R_SUCCESS;
 4451|       |
 4452|  17.6k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  17.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  35.2k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4453|  17.6k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|  17.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 17.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4454|       |
 4455|  17.6k|	if ((flags & DNS_MESSAGETEXTFLAG_NOHEADERS) != 0) {
  ------------------
  |  Branch (4455:6): [True: 0, False: 17.6k]
  ------------------
 4456|      0|		return ISC_R_SUCCESS;
 4457|      0|	}
 4458|       |
 4459|  17.6k|	if (dns_master_styleflags(style) & DNS_STYLEFLAG_YAML) {
  ------------------
  |  |  107|  17.6k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (4459:6): [True: 0, False: 17.6k]
  ------------------
 4460|      0|		INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4461|      0|		ADD_STRING(target, "opcode: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4462|      0|		ADD_STRING(target, opcodetext[msg->opcode]);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4463|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4464|      0|		INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4465|      0|		ADD_STRING(target, "status: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4466|      0|		RETERR(dns_rcode_totext(msg->rcode, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
 4467|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4468|      0|		INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4469|      0|		ADD_STRING(target, "id: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4470|      0|		snprintf(buf, sizeof(buf), "%u", msg->id);
 4471|      0|		ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4472|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4473|      0|		INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4474|      0|		ADD_STRING(target, "flags:");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4475|      0|		if ((msg->flags & DNS_MESSAGEFLAG_QR) != 0) {
  ------------------
  |  Branch (4475:7): [True: 0, False: 0]
  ------------------
 4476|      0|			ADD_STRING(target, " qr");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4477|      0|		}
 4478|      0|		if ((msg->flags & DNS_MESSAGEFLAG_AA) != 0) {
  ------------------
  |  Branch (4478:7): [True: 0, False: 0]
  ------------------
 4479|      0|			ADD_STRING(target, " aa");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4480|      0|		}
 4481|      0|		if ((msg->flags & DNS_MESSAGEFLAG_TC) != 0) {
  ------------------
  |  Branch (4481:7): [True: 0, False: 0]
  ------------------
 4482|      0|			ADD_STRING(target, " tc");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4483|      0|		}
 4484|      0|		if ((msg->flags & DNS_MESSAGEFLAG_RD) != 0) {
  ------------------
  |  Branch (4484:7): [True: 0, False: 0]
  ------------------
 4485|      0|			ADD_STRING(target, " rd");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4486|      0|		}
 4487|      0|		if ((msg->flags & DNS_MESSAGEFLAG_RA) != 0) {
  ------------------
  |  Branch (4487:7): [True: 0, False: 0]
  ------------------
 4488|      0|			ADD_STRING(target, " ra");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4489|      0|		}
 4490|      0|		if ((msg->flags & DNS_MESSAGEFLAG_AD) != 0) {
  ------------------
  |  Branch (4490:7): [True: 0, False: 0]
  ------------------
 4491|      0|			ADD_STRING(target, " ad");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4492|      0|		}
 4493|      0|		if ((msg->flags & DNS_MESSAGEFLAG_CD) != 0) {
  ------------------
  |  Branch (4493:7): [True: 0, False: 0]
  ------------------
 4494|      0|			ADD_STRING(target, " cd");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4495|      0|		}
 4496|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4497|       |		/*
 4498|       |		 * The final unnamed flag must be zero.
 4499|       |		 */
 4500|      0|		if ((msg->flags & 0x0040U) != 0) {
  ------------------
  |  Branch (4500:7): [True: 0, False: 0]
  ------------------
 4501|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4502|      0|			ADD_STRING(target, "MBZ: 0x4");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4503|      0|			ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4504|      0|		}
 4505|      0|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4505:7): [True: 0, False: 0]
  ------------------
 4506|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4507|      0|			ADD_STRING(target, "QUESTION: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4508|      0|		} else {
 4509|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4510|      0|			ADD_STRING(target, "ZONE: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4511|      0|		}
 4512|      0|		snprintf(buf, sizeof(buf), "%1u",
 4513|      0|			 msg->counts[DNS_SECTION_QUESTION]);
 4514|      0|		ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4515|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4516|      0|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4516:7): [True: 0, False: 0]
  ------------------
 4517|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4518|      0|			ADD_STRING(target, "ANSWER: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4519|      0|		} else {
 4520|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4521|      0|			ADD_STRING(target, "PREREQ: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4522|      0|		}
 4523|      0|		snprintf(buf, sizeof(buf), "%1u",
 4524|      0|			 msg->counts[DNS_SECTION_ANSWER]);
 4525|      0|		ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4526|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4527|      0|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4527:7): [True: 0, False: 0]
  ------------------
 4528|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4529|      0|			ADD_STRING(target, "AUTHORITY: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4530|      0|		} else {
 4531|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4532|      0|			ADD_STRING(target, "UPDATE: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4533|      0|		}
 4534|      0|		snprintf(buf, sizeof(buf), "%1u",
 4535|      0|			 msg->counts[DNS_SECTION_AUTHORITY]);
 4536|      0|		ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4537|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4538|      0|		INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4539|      0|		ADD_STRING(target, "ADDITIONAL: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4540|      0|		snprintf(buf, sizeof(buf), "%1u",
 4541|      0|			 msg->counts[DNS_SECTION_ADDITIONAL]);
 4542|      0|		ADD_STRING(target, buf);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4543|      0|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 4544|  17.6k|	} else {
 4545|  17.6k|		INDENT(style);
  ------------------
  |  | 3191|  17.6k|	do {                                                                 \
  |  | 3192|  17.6k|		unsigned int __i;                                            \
  |  | 3193|  17.6k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  17.6k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  17.6k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 17.6k, False: 0]
  |  |  ------------------
  |  | 3195|  17.6k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  17.6k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 17.6k, False: 0]
  |  |  ------------------
  |  | 3196|  17.6k|		{                                                            \
  |  | 3197|  17.6k|			break;                                               \
  |  | 3198|  17.6k|		}                                                            \
  |  | 3199|  17.6k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4546|  17.6k|		ADD_STRING(target, ";; ->>HEADER<<- opcode: ");
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4547|  17.6k|		ADD_STRING(target, opcodetext[msg->opcode]);
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4548|  17.6k|		ADD_STRING(target, ", status: ");
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4549|  17.6k|		RETERR(dns_rcode_totext(msg->rcode, target));
  ------------------
  |  |  276|  17.6k|	{                                  \
  |  |  277|  17.6k|		isc_result_t _r = (x);     \
  |  |  278|  17.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.6k|	}
  ------------------
 4550|  17.6k|		ADD_STRING(target, ", id: ");
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4551|  17.6k|		snprintf(buf, sizeof(buf), "%6u", msg->id);
 4552|  17.6k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4553|  17.6k|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4554|  17.6k|		INDENT(style);
  ------------------
  |  | 3191|  17.6k|	do {                                                                 \
  |  | 3192|  17.6k|		unsigned int __i;                                            \
  |  | 3193|  17.6k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  17.6k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  17.6k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 17.6k, False: 0]
  |  |  ------------------
  |  | 3195|  17.6k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  17.6k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 17.6k, False: 0]
  |  |  ------------------
  |  | 3196|  17.6k|		{                                                            \
  |  | 3197|  17.6k|			break;                                               \
  |  | 3198|  17.6k|		}                                                            \
  |  | 3199|  17.6k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4555|  17.6k|		ADD_STRING(target, ";; flags:");
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4556|  17.6k|		if ((msg->flags & DNS_MESSAGEFLAG_QR) != 0) {
  ------------------
  |  Branch (4556:7): [True: 5.84k, False: 11.7k]
  ------------------
 4557|  5.84k|			ADD_STRING(target, " qr");
  ------------------
  |  |   97|  5.84k|	{                                                         \
  |  |   98|  5.84k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  5.84k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 5.84k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  5.84k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  5.84k|	}
  ------------------
 4558|  5.84k|		}
 4559|  17.6k|		if ((msg->flags & DNS_MESSAGEFLAG_AA) != 0) {
  ------------------
  |  Branch (4559:7): [True: 6.97k, False: 10.6k]
  ------------------
 4560|  6.97k|			ADD_STRING(target, " aa");
  ------------------
  |  |   97|  6.97k|	{                                                         \
  |  |   98|  6.97k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  6.97k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 6.97k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  6.97k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  6.97k|	}
  ------------------
 4561|  6.97k|		}
 4562|  17.6k|		if ((msg->flags & DNS_MESSAGEFLAG_TC) != 0) {
  ------------------
  |  Branch (4562:7): [True: 8.76k, False: 8.84k]
  ------------------
 4563|  8.76k|			ADD_STRING(target, " tc");
  ------------------
  |  |   97|  8.76k|	{                                                         \
  |  |   98|  8.76k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  8.76k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 8.76k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  8.76k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  8.76k|	}
  ------------------
 4564|  8.76k|		}
 4565|  17.6k|		if ((msg->flags & DNS_MESSAGEFLAG_RD) != 0) {
  ------------------
  |  Branch (4565:7): [True: 7.16k, False: 10.4k]
  ------------------
 4566|  7.16k|			ADD_STRING(target, " rd");
  ------------------
  |  |   97|  7.16k|	{                                                         \
  |  |   98|  7.16k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  7.16k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 7.16k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  7.16k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  7.16k|	}
  ------------------
 4567|  7.16k|		}
 4568|  17.6k|		if ((msg->flags & DNS_MESSAGEFLAG_RA) != 0) {
  ------------------
  |  Branch (4568:7): [True: 3.47k, False: 14.1k]
  ------------------
 4569|  3.47k|			ADD_STRING(target, " ra");
  ------------------
  |  |   97|  3.47k|	{                                                         \
  |  |   98|  3.47k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.47k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.47k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.47k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.47k|	}
  ------------------
 4570|  3.47k|		}
 4571|  17.6k|		if ((msg->flags & DNS_MESSAGEFLAG_AD) != 0) {
  ------------------
  |  Branch (4571:7): [True: 4.74k, False: 12.8k]
  ------------------
 4572|  4.74k|			ADD_STRING(target, " ad");
  ------------------
  |  |   97|  4.74k|	{                                                         \
  |  |   98|  4.74k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.74k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.74k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.74k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.74k|	}
  ------------------
 4573|  4.74k|		}
 4574|  17.6k|		if ((msg->flags & DNS_MESSAGEFLAG_CD) != 0) {
  ------------------
  |  Branch (4574:7): [True: 6.56k, False: 11.0k]
  ------------------
 4575|  6.56k|			ADD_STRING(target, " cd");
  ------------------
  |  |   97|  6.56k|	{                                                         \
  |  |   98|  6.56k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  6.56k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 6.56k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  6.56k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  6.56k|	}
  ------------------
 4576|  6.56k|		}
 4577|       |		/*
 4578|       |		 * The final unnamed flag must be zero.
 4579|       |		 */
 4580|  17.6k|		if ((msg->flags & 0x0040U) != 0) {
  ------------------
  |  Branch (4580:7): [True: 4.51k, False: 13.1k]
  ------------------
 4581|  4.51k|			INDENT(style);
  ------------------
  |  | 3191|  4.51k|	do {                                                                 \
  |  | 3192|  4.51k|		unsigned int __i;                                            \
  |  | 3193|  4.51k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  4.51k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  4.51k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 4.51k, False: 0]
  |  |  ------------------
  |  | 3195|  4.51k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  4.51k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 4.51k, False: 0]
  |  |  ------------------
  |  | 3196|  4.51k|		{                                                            \
  |  | 3197|  4.51k|			break;                                               \
  |  | 3198|  4.51k|		}                                                            \
  |  | 3199|  4.51k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4582|  4.51k|			ADD_STRING(target, "; MBZ: 0x4");
  ------------------
  |  |   97|  4.51k|	{                                                         \
  |  |   98|  4.51k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  4.51k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 4.51k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  4.51k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  4.51k|	}
  ------------------
 4583|  4.51k|		}
 4584|  17.6k|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4584:7): [True: 15.3k, False: 2.24k]
  ------------------
 4585|  15.3k|			INDENT(style);
  ------------------
  |  | 3191|  15.3k|	do {                                                                 \
  |  | 3192|  15.3k|		unsigned int __i;                                            \
  |  | 3193|  15.3k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  15.3k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  15.3k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 15.3k, False: 0]
  |  |  ------------------
  |  | 3195|  15.3k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  15.3k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 15.3k, False: 0]
  |  |  ------------------
  |  | 3196|  15.3k|		{                                                            \
  |  | 3197|  15.3k|			break;                                               \
  |  | 3198|  15.3k|		}                                                            \
  |  | 3199|  15.3k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4586|  15.3k|			ADD_STRING(target, "; QUESTION: ");
  ------------------
  |  |   97|  15.3k|	{                                                         \
  |  |   98|  15.3k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  15.3k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 15.3k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  15.3k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  15.3k|	}
  ------------------
 4587|  15.3k|		} else {
 4588|  2.24k|			INDENT(style);
  ------------------
  |  | 3191|  2.24k|	do {                                                                 \
  |  | 3192|  2.24k|		unsigned int __i;                                            \
  |  | 3193|  2.24k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  2.24k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  2.24k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 2.24k, False: 0]
  |  |  ------------------
  |  | 3195|  2.24k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  2.24k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 2.24k, False: 0]
  |  |  ------------------
  |  | 3196|  2.24k|		{                                                            \
  |  | 3197|  2.24k|			break;                                               \
  |  | 3198|  2.24k|		}                                                            \
  |  | 3199|  2.24k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 4589|  2.24k|			ADD_STRING(target, "; ZONE: ");
  ------------------
  |  |   97|  2.24k|	{                                                         \
  |  |   98|  2.24k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.24k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.24k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.24k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.24k|	}
  ------------------
 4590|  2.24k|		}
 4591|  17.6k|		snprintf(buf, sizeof(buf), "%1u",
 4592|  17.6k|			 msg->counts[DNS_SECTION_QUESTION]);
 4593|  17.6k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4594|  17.6k|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4594:7): [True: 15.3k, False: 2.24k]
  ------------------
 4595|  15.3k|			ADD_STRING(target, ", ANSWER: ");
  ------------------
  |  |   97|  15.3k|	{                                                         \
  |  |   98|  15.3k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  15.3k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 15.3k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  15.3k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  15.3k|	}
  ------------------
 4596|  15.3k|		} else {
 4597|  2.24k|			ADD_STRING(target, ", PREREQ: ");
  ------------------
  |  |   97|  2.24k|	{                                                         \
  |  |   98|  2.24k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.24k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.24k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.24k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.24k|	}
  ------------------
 4598|  2.24k|		}
 4599|  17.6k|		snprintf(buf, sizeof(buf), "%1u",
 4600|  17.6k|			 msg->counts[DNS_SECTION_ANSWER]);
 4601|  17.6k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4602|  17.6k|		if (msg->opcode != dns_opcode_update) {
  ------------------
  |  Branch (4602:7): [True: 15.3k, False: 2.24k]
  ------------------
 4603|  15.3k|			ADD_STRING(target, ", AUTHORITY: ");
  ------------------
  |  |   97|  15.3k|	{                                                         \
  |  |   98|  15.3k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  15.3k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 15.3k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  15.3k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  15.3k|	}
  ------------------
 4604|  15.3k|		} else {
 4605|  2.24k|			ADD_STRING(target, ", UPDATE: ");
  ------------------
  |  |   97|  2.24k|	{                                                         \
  |  |   98|  2.24k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  2.24k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 2.24k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  2.24k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  2.24k|	}
  ------------------
 4606|  2.24k|		}
 4607|  17.6k|		snprintf(buf, sizeof(buf), "%1u",
 4608|  17.6k|			 msg->counts[DNS_SECTION_AUTHORITY]);
 4609|  17.6k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4610|  17.6k|		ADD_STRING(target, ", ADDITIONAL: ");
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4611|  17.6k|		snprintf(buf, sizeof(buf), "%1u",
 4612|  17.6k|			 msg->counts[DNS_SECTION_ADDITIONAL]);
 4613|  17.6k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4614|  17.6k|		ADD_STRING(target, "\n");
  ------------------
  |  |   97|  17.6k|	{                                                         \
  |  |   98|  17.6k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  17.6k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  17.6k|	}
  ------------------
 4615|  17.6k|	}
 4616|       |
 4617|  17.6k|cleanup:
 4618|  17.6k|	return result;
 4619|  17.6k|}
dns_message_totext:
 4623|  17.6k|		   dns_messagetextflag_t flags, isc_buffer_t *target) {
 4624|  17.6k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  17.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  35.2k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4625|  17.6k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|  17.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 17.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 4626|       |
 4627|  17.6k|	RETERR(dns_message_headertotext(msg, style, flags, target));
  ------------------
  |  |  276|  17.6k|	{                                  \
  |  |  277|  17.6k|		isc_result_t _r = (x);     \
  |  |  278|  17.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.6k|	}
  ------------------
 4628|  17.6k|	RETERR(dns_message_pseudosectiontotext(msg, DNS_PSEUDOSECTION_OPT,
  ------------------
  |  |  276|  17.6k|	{                                  \
  |  |  277|  17.6k|		isc_result_t _r = (x);     \
  |  |  278|  17.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 2, False: 17.6k]
  |  |  ------------------
  |  |  279|      2|			return ((_r));     \
  |  |  280|      2|		}                          \
  |  |  281|  17.6k|	}
  ------------------
 4629|  17.6k|					       style, flags, target));
 4630|  17.6k|	RETERR(dns_message_sectiontotext(msg, DNS_SECTION_QUESTION, style,
  ------------------
  |  |  276|  17.6k|	{                                  \
  |  |  277|  17.6k|		isc_result_t _r = (x);     \
  |  |  278|  17.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.6k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.6k|	}
  ------------------
 4631|  17.6k|					 flags, target));
 4632|  17.6k|	RETERR(dns_message_sectiontotext(msg, DNS_SECTION_ANSWER, style, flags,
  ------------------
  |  |  276|  17.6k|	{                                  \
  |  |  277|  17.6k|		isc_result_t _r = (x);     \
  |  |  278|  17.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 2, False: 17.6k]
  |  |  ------------------
  |  |  279|      2|			return ((_r));     \
  |  |  280|      2|		}                          \
  |  |  281|  17.6k|	}
  ------------------
 4633|  17.6k|					 target));
 4634|  17.6k|	RETERR(dns_message_sectiontotext(msg, DNS_SECTION_AUTHORITY, style,
  ------------------
  |  |  276|  17.6k|	{                                  \
  |  |  277|  17.6k|		isc_result_t _r = (x);     \
  |  |  278|  17.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 3, False: 17.6k]
  |  |  ------------------
  |  |  279|      3|			return ((_r));     \
  |  |  280|      3|		}                          \
  |  |  281|  17.6k|	}
  ------------------
 4635|  17.6k|					 flags, target));
 4636|  17.6k|	RETERR(dns_message_sectiontotext(msg, DNS_SECTION_ADDITIONAL, style,
  ------------------
  |  |  276|  17.6k|	{                                  \
  |  |  277|  17.6k|		isc_result_t _r = (x);     \
  |  |  278|  17.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 7, False: 17.5k]
  |  |  ------------------
  |  |  279|      7|			return ((_r));     \
  |  |  280|      7|		}                          \
  |  |  281|  17.6k|	}
  ------------------
 4637|  17.6k|					 flags, target));
 4638|  17.5k|	RETERR(dns_message_pseudosectiontotext(msg, DNS_PSEUDOSECTION_TSIG,
  ------------------
  |  |  276|  17.5k|	{                                  \
  |  |  277|  17.5k|		isc_result_t _r = (x);     \
  |  |  278|  17.5k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.5k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.5k|	}
  ------------------
 4639|  17.5k|					       style, flags, target));
 4640|  17.5k|	return dns_message_pseudosectiontotext(msg, DNS_PSEUDOSECTION_SIG0,
 4641|  17.5k|					       style, flags, target);
 4642|  17.5k|}
dns_message_createpools:
 5029|  21.9k|			isc_mempool_t **rdspoolp) {
 5030|  21.9k|	REQUIRE(mctx != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 5031|  21.9k|	REQUIRE(namepoolp != NULL && *namepoolp == NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 5032|  21.9k|	REQUIRE(rdspoolp != NULL && *rdspoolp == NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 5033|       |
 5034|  21.9k|	isc_mempool_create(mctx, sizeof(dns_fixedname_t), "dns_fixedname_pool",
  ------------------
  |  |  344|  21.9k|	isc__mempool_create((c), (s), (n), (mp)_ISC_MEM_FILELINE)
  ------------------
 5035|  21.9k|			   namepoolp);
 5036|  21.9k|	isc_mempool_setfillcount(*namepoolp, NAME_FILLCOUNT);
  ------------------
  |  |  124|  21.9k|#define NAME_FILLCOUNT	   1024
  ------------------
 5037|  21.9k|	isc_mempool_setfreemax(*namepoolp, NAME_FREEMAX);
  ------------------
  |  |  125|  21.9k|#define NAME_FREEMAX	   8 * NAME_FILLCOUNT
  |  |  ------------------
  |  |  |  |  124|  21.9k|#define NAME_FILLCOUNT	   1024
  |  |  ------------------
  ------------------
 5038|       |
 5039|  21.9k|	isc_mempool_create(mctx, sizeof(dns_rdataset_t), "dns_rdataset_pool",
  ------------------
  |  |  344|  21.9k|	isc__mempool_create((c), (s), (n), (mp)_ISC_MEM_FILELINE)
  ------------------
 5040|  21.9k|			   rdspoolp);
 5041|  21.9k|	isc_mempool_setfillcount(*rdspoolp, RDATASET_FILLCOUNT);
  ------------------
  |  |  129|  21.9k|#define RDATASET_FILLCOUNT 1024
  ------------------
 5042|  21.9k|	isc_mempool_setfreemax(*rdspoolp, RDATASET_FREEMAX);
  ------------------
  |  |  130|  21.9k|#define RDATASET_FREEMAX   8 * RDATASET_FILLCOUNT
  |  |  ------------------
  |  |  |  |  129|  21.9k|#define RDATASET_FILLCOUNT 1024
  |  |  ------------------
  ------------------
 5043|  21.9k|}
dns_message_destroypools:
 5046|  21.9k|dns_message_destroypools(isc_mempool_t **namepoolp, isc_mempool_t **rdspoolp) {
 5047|  21.9k|	REQUIRE(namepoolp != NULL && *namepoolp != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 5048|  21.9k|	REQUIRE(rdspoolp != NULL && *rdspoolp != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 5049|       |
 5050|  21.9k|	ENSURE(isc_mempool_getallocated(*namepoolp) == 0);
  ------------------
  |  |  200|  21.9k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|  21.9k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
 5051|  21.9k|	ENSURE(isc_mempool_getallocated(*rdspoolp) == 0);
  ------------------
  |  |  200|  21.9k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|  21.9k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
 5052|       |
 5053|  21.9k|	isc_mempool_destroy(rdspoolp);
  ------------------
  |  |  361|  21.9k|#define isc_mempool_destroy(mp) isc__mempool_destroy((mp)_ISC_MEM_FILELINE)
  ------------------
 5054|  21.9k|	isc_mempool_destroy(namepoolp);
  ------------------
  |  |  361|  21.9k|#define isc_mempool_destroy(mp) isc__mempool_destroy((mp)_ISC_MEM_FILELINE)
  ------------------
 5055|  21.9k|}
message.c:msginit:
  425|  21.9k|msginit(dns_message_t *m) {
  426|  21.9k|	msginitheader(m);
  427|  21.9k|	msginitprivate(m);
  428|  21.9k|	msginittsig(m);
  429|  21.9k|	m->header_ok = 0;
  430|  21.9k|	m->question_ok = 0;
  431|  21.9k|	m->tcp_continuation = 0;
  432|  21.9k|	m->verified_sig = 0;
  433|  21.9k|	m->verify_attempted = 0;
  434|  21.9k|	m->query.base = NULL;
  435|  21.9k|	m->query.length = 0;
  436|  21.9k|	m->free_query = 0;
  437|  21.9k|	m->saved.base = NULL;
  438|  21.9k|	m->saved.length = 0;
  439|  21.9k|	m->free_saved = 0;
  440|  21.9k|	m->cc_ok = 0;
  441|  21.9k|	m->cc_bad = 0;
  442|  21.9k|	m->tkey = 0;
  443|  21.9k|	m->rdclass_set = 0;
  444|  21.9k|	m->has_dname = 0;
  445|       |	m->querytsig = NULL;
  446|  21.9k|	m->indent.string = "\t";
  447|  21.9k|	m->indent.count = 0;
  448|  21.9k|}
message.c:msginitheader:
  378|  21.9k|msginitheader(dns_message_t *m) {
  379|  21.9k|	m->id = 0;
  380|  21.9k|	m->flags = 0;
  381|  21.9k|	m->rcode = 0;
  382|  21.9k|	m->opcode = 0;
  383|  21.9k|	m->rdclass = 0;
  384|  21.9k|}
message.c:msginittsig:
  409|  21.9k|msginittsig(dns_message_t *m) {
  410|  21.9k|	m->tsigstatus = dns_rcode_noerror;
  ------------------
  |  |  269|  21.9k|#define dns_rcode_noerror ((dns_rcode_t)dns_rcode_noerror)
  ------------------
  411|  21.9k|	m->querytsigstatus = dns_rcode_noerror;
  ------------------
  |  |  269|  21.9k|#define dns_rcode_noerror ((dns_rcode_t)dns_rcode_noerror)
  ------------------
  412|  21.9k|	m->tsigkey = NULL;
  413|  21.9k|	m->tsigctx = NULL;
  414|  21.9k|	m->sigstart = -1;
  415|  21.9k|	m->sig0key = NULL;
  416|  21.9k|	m->sig0status = dns_rcode_noerror;
  ------------------
  |  |  269|  21.9k|#define dns_rcode_noerror ((dns_rcode_t)dns_rcode_noerror)
  ------------------
  417|  21.9k|	m->timeadjust = 0;
  418|  21.9k|}
message.c:msgreset:
  540|  21.9k|msgreset(dns_message_t *msg, bool everything) {
  541|  21.9k|	dns_msgblock_t *msgblock = NULL, *next_msgblock = NULL;
  542|  21.9k|	isc_buffer_t *dynbuf = NULL, *next_dynbuf = NULL;
  543|       |
  544|  21.9k|	msgresetnames(msg, 0);
  545|  21.9k|	msgresetopt(msg);
  546|  21.9k|	msgresetsigs(msg, false);
  547|  21.9k|	msgresetedns(msg);
  548|       |
  549|       |	/*
  550|       |	 * Clean up linked lists.
  551|       |	 */
  552|       |
  553|       |	/*
  554|       |	 * Run through the free lists, and just unlink anything found there.
  555|       |	 * The memory isn't lost since these are part of message blocks we
  556|       |	 * have allocated.
  557|       |	 */
  558|  21.9k|	ISC_LIST_FOREACH(msg->freerdata, rdata, link) {
  ------------------
  |  |  234|  21.9k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  21.9k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 0, False: 21.9k]
  |  |  ------------------
  |  |  236|  21.9k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 0, False: 21.9k]
  |  |  ------------------
  |  |  237|  21.9k|	     elt = elt##_next,                                             \
  |  |  238|      0|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  559|      0|		ISC_LIST_UNLINK(msg->freerdata, rdata, link);
  ------------------
  |  |  137|      0|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|      0|	do {                                                         \
  |  |  |  |  133|      0|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|      0|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|      0|	do {                                                            \
  |  |  |  |  |  |  110|      0|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|      0|		} else {                                                \
  |  |  |  |  |  |  113|      0|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|      0|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|      0|		}                                                       \
  |  |  |  |  |  |  116|      0|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|      0|		} else {                                                \
  |  |  |  |  |  |  119|      0|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|      0|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|      0|		}                                                       \
  |  |  |  |  |  |  122|      0|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|      0|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|      0|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|      0|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|      0|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  560|      0|	}
  561|  21.9k|	ISC_LIST_FOREACH(msg->freerdatalist, rdatalist, link) {
  ------------------
  |  |  234|  21.9k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  21.9k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 0, False: 21.9k]
  |  |  ------------------
  |  |  236|  21.9k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 0, False: 21.9k]
  |  |  ------------------
  |  |  237|  21.9k|	     elt = elt##_next,                                             \
  |  |  238|      0|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  562|      0|		ISC_LIST_UNLINK(msg->freerdatalist, rdatalist, link);
  ------------------
  |  |  137|      0|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|      0|	do {                                                         \
  |  |  |  |  133|      0|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|      0|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|      0|	do {                                                            \
  |  |  |  |  |  |  110|      0|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|      0|		} else {                                                \
  |  |  |  |  |  |  113|      0|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|      0|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|      0|		}                                                       \
  |  |  |  |  |  |  116|      0|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|      0|		} else {                                                \
  |  |  |  |  |  |  119|      0|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|      0|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|      0|		}                                                       \
  |  |  |  |  |  |  122|      0|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|      0|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|      0|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|      0|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|      0|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  563|      0|	}
  564|       |
  565|  21.9k|	dynbuf = ISC_LIST_HEAD(msg->scratchpad);
  ------------------
  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  566|  21.9k|	INSIST(dynbuf != NULL);
  ------------------
  |  |  202|  21.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  21.9k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  567|  21.9k|	if (!everything) {
  ------------------
  |  Branch (567:6): [True: 0, False: 21.9k]
  ------------------
  568|      0|		isc_buffer_clear(dynbuf);
  569|      0|		dynbuf = ISC_LIST_NEXT(dynbuf, link);
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  570|      0|	}
  571|   114k|	while (dynbuf != NULL) {
  ------------------
  |  Branch (571:9): [True: 92.1k, False: 21.9k]
  ------------------
  572|  92.1k|		next_dynbuf = ISC_LIST_NEXT(dynbuf, link);
  ------------------
  |  |  140|  92.1k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  573|  92.1k|		ISC_LIST_UNLINK(msg->scratchpad, dynbuf, link);
  ------------------
  |  |  137|  92.1k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|  92.1k|	do {                                                         \
  |  |  |  |  133|  92.1k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|  92.1k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|  92.1k|	do {                                                            \
  |  |  |  |  |  |  110|  92.1k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 70.2k, False: 21.9k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|  70.2k|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|  70.2k|		} else {                                                \
  |  |  |  |  |  |  113|  21.9k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  21.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 21.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|  21.9k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|  21.9k|		}                                                       \
  |  |  |  |  |  |  116|  92.1k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 92.1k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|  92.1k|		} else {                                                \
  |  |  |  |  |  |  119|  92.1k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  92.1k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 92.1k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  92.1k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|  92.1k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|  92.1k|		}                                                       \
  |  |  |  |  |  |  122|  92.1k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  92.1k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|  92.1k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  92.1k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|  92.1k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  92.1k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 92.1k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  92.1k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|  92.1k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  92.1k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 92.1k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  92.1k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|  92.1k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 92.1k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|  92.1k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 92.1k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  574|  92.1k|		isc_buffer_free(&dynbuf);
  575|  92.1k|		dynbuf = next_dynbuf;
  576|  92.1k|	}
  577|       |
  578|  21.9k|	msgblock = ISC_LIST_HEAD(msg->rdatas);
  ------------------
  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  579|  21.9k|	if (!everything && msgblock != NULL) {
  ------------------
  |  Branch (579:6): [True: 0, False: 21.9k]
  |  Branch (579:21): [True: 0, False: 0]
  ------------------
  580|      0|		msgblock_reset(msgblock);
  581|      0|		msgblock = ISC_LIST_NEXT(msgblock, link);
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  582|      0|	}
  583|  73.9k|	while (msgblock != NULL) {
  ------------------
  |  Branch (583:9): [True: 52.0k, False: 21.9k]
  ------------------
  584|  52.0k|		next_msgblock = ISC_LIST_NEXT(msgblock, link);
  ------------------
  |  |  140|  52.0k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  585|  52.0k|		ISC_LIST_UNLINK(msg->rdatas, msgblock, link);
  ------------------
  |  |  137|  52.0k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|  52.0k|	do {                                                         \
  |  |  |  |  133|  52.0k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|  52.0k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|  52.0k|	do {                                                            \
  |  |  |  |  |  |  110|  52.0k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 32.1k, False: 19.8k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|  32.1k|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|  32.1k|		} else {                                                \
  |  |  |  |  |  |  113|  19.8k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  19.8k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 19.8k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  19.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|  19.8k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|  19.8k|		}                                                       \
  |  |  |  |  |  |  116|  52.0k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 52.0k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|  52.0k|		} else {                                                \
  |  |  |  |  |  |  119|  52.0k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  52.0k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 52.0k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  52.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|  52.0k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|  52.0k|		}                                                       \
  |  |  |  |  |  |  122|  52.0k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  52.0k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|  52.0k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  52.0k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|  52.0k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  52.0k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 52.0k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  52.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|  52.0k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  52.0k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 52.0k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  52.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|  52.0k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 52.0k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|  52.0k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 52.0k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  586|  52.0k|		msgblock_free(msg->mctx, msgblock, sizeof(dns_rdata_t));
  587|  52.0k|		msgblock = next_msgblock;
  588|  52.0k|	}
  589|       |
  590|       |	/*
  591|       |	 * rdatalists could be empty.
  592|       |	 */
  593|       |
  594|  21.9k|	msgblock = ISC_LIST_HEAD(msg->rdatalists);
  ------------------
  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  595|  21.9k|	if (!everything && msgblock != NULL) {
  ------------------
  |  Branch (595:6): [True: 0, False: 21.9k]
  |  Branch (595:21): [True: 0, False: 0]
  ------------------
  596|      0|		msgblock_reset(msgblock);
  597|      0|		msgblock = ISC_LIST_NEXT(msgblock, link);
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  598|      0|	}
  599|  88.0k|	while (msgblock != NULL) {
  ------------------
  |  Branch (599:9): [True: 66.0k, False: 21.9k]
  ------------------
  600|  66.0k|		next_msgblock = ISC_LIST_NEXT(msgblock, link);
  ------------------
  |  |  140|  66.0k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  601|  66.0k|		ISC_LIST_UNLINK(msg->rdatalists, msgblock, link);
  ------------------
  |  |  137|  66.0k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|  66.0k|	do {                                                         \
  |  |  |  |  133|  66.0k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|  66.0k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|  66.0k|	do {                                                            \
  |  |  |  |  |  |  110|  66.0k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 46.1k, False: 19.9k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|  46.1k|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|  46.1k|		} else {                                                \
  |  |  |  |  |  |  113|  19.9k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  19.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 19.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  19.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|  19.9k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|  19.9k|		}                                                       \
  |  |  |  |  |  |  116|  66.0k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 66.0k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|  66.0k|		} else {                                                \
  |  |  |  |  |  |  119|  66.0k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  66.0k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 66.0k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  66.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|  66.0k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|  66.0k|		}                                                       \
  |  |  |  |  |  |  122|  66.0k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  66.0k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|  66.0k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  66.0k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|  66.0k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  66.0k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 66.0k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  66.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|  66.0k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  66.0k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 66.0k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  66.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|  66.0k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 66.0k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|  66.0k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 66.0k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  602|  66.0k|		msgblock_free(msg->mctx, msgblock, sizeof(dns_rdatalist_t));
  603|  66.0k|		msgblock = next_msgblock;
  604|  66.0k|	}
  605|       |
  606|  21.9k|	if (msg->tsigkey != NULL) {
  ------------------
  |  Branch (606:6): [True: 0, False: 21.9k]
  ------------------
  607|      0|		dns_tsigkey_detach(&msg->tsigkey);
  608|      0|		msg->tsigkey = NULL;
  609|      0|	}
  610|       |
  611|  21.9k|	if (msg->tsigctx != NULL) {
  ------------------
  |  Branch (611:6): [True: 0, False: 21.9k]
  ------------------
  612|      0|		dst_context_destroy(&msg->tsigctx);
  613|      0|	}
  614|       |
  615|  21.9k|	if (msg->query.base != NULL) {
  ------------------
  |  Branch (615:6): [True: 0, False: 21.9k]
  ------------------
  616|      0|		if (msg->free_query != 0) {
  ------------------
  |  Branch (616:7): [True: 0, False: 0]
  ------------------
  617|      0|			isc_mem_put(msg->mctx, msg->query.base,
  ------------------
  |  |  148|      0|	do {                                                      \
  |  |  149|      0|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|      0|		(p) = NULL;                                       \
  |  |  151|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  618|      0|				    msg->query.length);
  619|      0|		}
  620|      0|		msg->query.base = NULL;
  621|      0|		msg->query.length = 0;
  622|      0|	}
  623|       |
  624|  21.9k|	if (msg->saved.base != NULL) {
  ------------------
  |  Branch (624:6): [True: 21.9k, False: 0]
  ------------------
  625|  21.9k|		if (msg->free_saved != 0) {
  ------------------
  |  Branch (625:7): [True: 0, False: 21.9k]
  ------------------
  626|      0|			isc_mem_put(msg->mctx, msg->saved.base,
  ------------------
  |  |  148|      0|	do {                                                      \
  |  |  149|      0|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|      0|		(p) = NULL;                                       \
  |  |  151|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  627|      0|				    msg->saved.length);
  628|      0|		}
  629|  21.9k|		msg->saved.base = NULL;
  630|  21.9k|		msg->saved.length = 0;
  631|  21.9k|	}
  632|       |
  633|       |	/*
  634|       |	 * cleanup the buffer cleanup list
  635|       |	 */
  636|  21.9k|	dynbuf = ISC_LIST_HEAD(msg->cleanup);
  ------------------
  |  |   62|  21.9k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  637|  21.9k|	while (dynbuf != NULL) {
  ------------------
  |  Branch (637:9): [True: 0, False: 21.9k]
  ------------------
  638|      0|		next_dynbuf = ISC_LIST_NEXT(dynbuf, link);
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  639|      0|		ISC_LIST_UNLINK(msg->cleanup, dynbuf, link);
  ------------------
  |  |  137|      0|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|      0|	do {                                                         \
  |  |  |  |  133|      0|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|      0|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|      0|	do {                                                            \
  |  |  |  |  |  |  110|      0|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|      0|		} else {                                                \
  |  |  |  |  |  |  113|      0|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|      0|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|      0|		}                                                       \
  |  |  |  |  |  |  116|      0|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|      0|		} else {                                                \
  |  |  |  |  |  |  119|      0|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|      0|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|      0|		}                                                       \
  |  |  |  |  |  |  122|      0|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|      0|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|      0|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|      0|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|      0|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  640|      0|		isc_buffer_free(&dynbuf);
  641|      0|		dynbuf = next_dynbuf;
  642|      0|	}
  643|       |
  644|       |	/*
  645|       |	 * Set other bits to normal default values.
  646|       |	 */
  647|  21.9k|	if (!everything) {
  ------------------
  |  Branch (647:6): [True: 0, False: 21.9k]
  ------------------
  648|      0|		msginit(msg);
  649|      0|	}
  650|  21.9k|}
message.c:msgblock_free:
  283|   118k|	      unsigned int sizeof_type) {
  284|   118k|	unsigned int length;
  285|       |
  286|   118k|	length = sizeof(dns_msgblock_t) + (sizeof_type * block->count);
  287|       |
  288|       |	isc_mem_put(mctx, block, length);
  ------------------
  |  |  148|   118k|	do {                                                      \
  |  |  149|   118k|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|   118k|		(p) = NULL;                                       \
  |  |  151|   118k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 118k]
  |  |  ------------------
  ------------------
  289|   118k|}
message.c:dns__message_destroy:
  749|  21.9k|dns__message_destroy(dns_message_t *msg) {
  750|  21.9k|	REQUIRE(msg != NULL);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  751|  21.9k|	REQUIRE(DNS_MESSAGE_VALID(msg));
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  752|       |
  753|  21.9k|	msgreset(msg, true);
  754|       |
  755|  21.9k|	msg->magic = 0;
  756|       |
  757|  21.9k|	if (msg->free_pools) {
  ------------------
  |  Branch (757:6): [True: 21.9k, False: 0]
  ------------------
  758|  21.9k|		dns_message_destroypools(&msg->namepool, &msg->rdspool);
  759|  21.9k|	}
  760|       |
  761|       |	isc_mem_putanddetach(&msg->mctx, msg, sizeof(dns_message_t));
  ------------------
  |  |  159|  21.9k|	do {                                                               \
  |  |  160|  21.9k|		isc__mem_putanddetach((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  161|  21.9k|		(p) = NULL;                                                \
  |  |  162|  21.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (162:11): [Folded, False: 21.9k]
  |  |  ------------------
  ------------------
  762|  21.9k|}
message.c:early_sanity_check:
 1545|  21.9k|early_sanity_check(dns_message_t *msg) {
 1546|  21.9k|	bool is_unknown_opcode = msg->opcode >= dns_opcode_max;
 1547|  21.9k|	bool is_query_response = (msg->flags & DNS_MESSAGEFLAG_QR) != 0;
 1548|  21.9k|	bool no_questions = msg->counts[DNS_SECTION_QUESTION] == 0;
 1549|  21.9k|	bool many_questions = msg->counts[DNS_SECTION_QUESTION] > 1;
 1550|  21.9k|	bool has_answer = msg->counts[DNS_SECTION_ANSWER] > 0;
 1551|  21.9k|	bool has_auth = msg->counts[DNS_SECTION_AUTHORITY] > 0;
 1552|       |
 1553|  21.9k|	if (is_unknown_opcode) {
  ------------------
  |  Branch (1553:6): [True: 7.28k, False: 14.6k]
  ------------------
 1554|  7.28k|		return DNS_R_NOTIMP;
 1555|  14.6k|	} else if (many_questions) {
  ------------------
  |  Branch (1555:13): [True: 1.39k, False: 13.2k]
  ------------------
 1556|  1.39k|		return DNS_R_FORMERR;
 1557|  13.2k|	} else if (no_questions && (msg->opcode != dns_opcode_query) &&
  ------------------
  |  Branch (1557:13): [True: 12.0k, False: 1.15k]
  |  Branch (1557:29): [True: 6.14k, False: 5.95k]
  ------------------
 1558|  6.14k|		   (msg->opcode != dns_opcode_status))
  ------------------
  |  Branch (1558:6): [True: 5.32k, False: 823]
  ------------------
 1559|  5.32k|	{
 1560|       |		/*
 1561|       |		 * Per RFC9619, the two cases where qdcount == 0 is acceptable
 1562|       |		 * are AXFR transfers and cookies, and both have opcode 0.
 1563|       |		 *
 1564|       |		 * RFC9619 also specifies that msg->opcode == dns_opcode_status
 1565|       |		 * is unspecified, so we ignore it.
 1566|       |		 */
 1567|  5.32k|		return DNS_R_FORMERR;
 1568|  7.93k|	} else if (msg->opcode == dns_opcode_notify &&
  ------------------
  |  Branch (1568:13): [True: 246, False: 7.68k]
  ------------------
 1569|    246|		   ((is_query_response && has_answer) || has_auth))
  ------------------
  |  Branch (1569:8): [True: 117, False: 129]
  |  Branch (1569:29): [True: 47, False: 70]
  |  Branch (1569:44): [True: 46, False: 153]
  ------------------
 1570|     93|	{
 1571|     93|		return DNS_R_FORMERR;
 1572|     93|	}
 1573|  7.83k|	return ISC_R_SUCCESS;
 1574|  21.9k|}
message.c:getquestions:
  931|  21.9k|	     unsigned int options) {
  932|  21.9k|	isc_region_t r;
  933|  21.9k|	unsigned int count;
  934|  21.9k|	dns_name_t *name = NULL;
  935|  21.9k|	dns_rdataset_t *rdataset = NULL;
  936|  21.9k|	dns_rdatalist_t *rdatalist = NULL;
  937|  21.9k|	isc_result_t result = ISC_R_SUCCESS;
  938|  21.9k|	dns_rdatatype_t rdtype;
  939|  21.9k|	dns_rdataclass_t rdclass;
  940|  21.9k|	dns_namelist_t *section = &msg->sections[DNS_SECTION_QUESTION];
  941|  21.9k|	bool best_effort = ((options & DNS_MESSAGEPARSE_BESTEFFORT) != 0);
  ------------------
  |  |  202|  21.9k|	0x0002 /*%< return a message if a \
  ------------------
  942|  21.9k|	bool seen_problem = false;
  943|  21.9k|	bool free_name = false;
  944|       |
  945|  21.9k|	REQUIRE(msg->counts[DNS_SECTION_QUESTION] <= 1 || best_effort);
  ------------------
  |  |  198|  21.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  24.2k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 19.5k, False: 2.35k]
  |  |  |  |  |  Branch (42:11): [True: 2.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  946|       |
  947|   142k|	for (count = 0; count < msg->counts[DNS_SECTION_QUESTION]; count++) {
  ------------------
  |  Branch (947:18): [True: 120k, False: 21.8k]
  ------------------
  948|   120k|		name = NULL;
  949|   120k|		dns_message_gettempname(msg, &name);
  950|   120k|		free_name = true;
  951|       |
  952|       |		/*
  953|       |		 * Parse the name out of this packet.
  954|       |		 */
  955|   120k|		isc_buffer_remainingregion(source, &r);
  956|   120k|		isc_buffer_setactive(source, r.length);
  957|   120k|		CHECK(getname(name, source, msg, dctx));
  ------------------
  |  |  255|   120k|	{                                      \
  |  |  256|   120k|		result = (r);                  \
  |  |  257|   120k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 101, False: 120k]
  |  |  ------------------
  |  |  258|    101|			goto cleanup;          \
  |  |  259|    101|		}                              \
  |  |  260|   120k|	}
  ------------------
  958|       |
  959|   120k|		ISC_LIST_APPEND(*section, name, link);
  ------------------
  |  |  100|   120k|	do {                                                  \
  |  |  101|   120k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|   120k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|   120k|	do {                                            \
  |  |  |  |   89|   120k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 116k, False: 3.89k]
  |  |  |  |  ------------------
  |  |  |  |   90|   116k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|   116k|		} else {                                \
  |  |  |  |   92|  3.89k|			(list).head = (elt);            \
  |  |  |  |   93|  3.89k|		}                                       \
  |  |  |  |   94|   120k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|   120k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|   120k|		(list).tail = (elt);                    \
  |  |  |  |   97|   120k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 120k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|   120k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 120k]
  |  |  ------------------
  ------------------
  960|       |
  961|   120k|		free_name = false;
  962|       |
  963|       |		/*
  964|       |		 * Get type and class.
  965|       |		 */
  966|   120k|		isc_buffer_remainingregion(source, &r);
  967|   120k|		if (r.length < 4) {
  ------------------
  |  Branch (967:7): [True: 15, False: 120k]
  ------------------
  968|     15|			CLEANUP(ISC_R_UNEXPECTEDEND);
  ------------------
  |  |  266|     15|	{                     \
  |  |  267|     15|		result = (r); \
  |  |  268|     15|		goto cleanup; \
  |  |  269|     15|	}
  ------------------
  969|      0|		}
  970|   120k|		rdtype = isc_buffer_getuint16(source);
  971|   120k|		rdclass = isc_buffer_getuint16(source);
  972|       |
  973|       |		/*
  974|       |		 * Notify and update messages need to specify the data class.
  975|       |		 */
  976|   120k|		if ((msg->opcode == dns_opcode_update ||
  ------------------
  |  Branch (976:8): [True: 3.90k, False: 116k]
  ------------------
  977|   116k|		     msg->opcode == dns_opcode_notify) &&
  ------------------
  |  Branch (977:8): [True: 3.10k, False: 113k]
  ------------------
  978|  7.01k|		    (rdclass == dns_rdataclass_none ||
  ------------------
  |  |   32|  14.0k|#define dns_rdataclass_none	((dns_rdataclass_t)dns_rdataclass_none)
  ------------------
  |  Branch (978:8): [True: 232, False: 6.78k]
  ------------------
  979|  6.78k|		     rdclass == dns_rdataclass_any))
  ------------------
  |  |   34|  6.78k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (979:8): [True: 245, False: 6.53k]
  ------------------
  980|    477|		{
  981|    477|			DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|    477|	do {                                 \
  |  |  912|    477|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 477, False: 0]
  |  |  ------------------
  |  |  913|    477|			seen_problem = true; \
  |  |  914|    477|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|    477|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 477]
  |  |  ------------------
  ------------------
  982|    477|		}
  983|       |
  984|       |		/*
  985|       |		 * If this class is different than the one we already read,
  986|       |		 * this is an error.
  987|       |		 */
  988|   120k|		if (msg->rdclass_set == 0) {
  ------------------
  |  Branch (988:7): [True: 3.89k, False: 116k]
  ------------------
  989|  3.89k|			msg->rdclass = rdclass;
  990|  3.89k|			msg->rdclass_set = 1;
  991|   116k|		} else if (msg->rdclass != rdclass) {
  ------------------
  |  Branch (991:14): [True: 109k, False: 6.84k]
  ------------------
  992|   109k|			DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|   109k|	do {                                 \
  |  |  912|   109k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 109k, False: 0]
  |  |  ------------------
  |  |  913|   109k|			seen_problem = true; \
  |  |  914|   109k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|   109k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 109k]
  |  |  ------------------
  ------------------
  993|   109k|		}
  994|       |
  995|       |		/*
  996|       |		 * Is this a TKEY query?
  997|       |		 */
  998|   120k|		if (rdtype == dns_rdatatype_tkey) {
  ------------------
  |  |  189|   120k|#define dns_rdatatype_tkey	((dns_rdatatype_t)dns_rdatatype_tkey)
  ------------------
  |  Branch (998:7): [True: 307, False: 119k]
  ------------------
  999|    307|			msg->tkey = 1;
 1000|    307|		}
 1001|       |
 1002|       |		/*
 1003|       |		 * Allocate a new rdatalist.
 1004|       |		 */
 1005|   120k|		rdatalist = newrdatalist(msg);
 1006|   120k|		rdatalist->type = rdtype;
 1007|   120k|		rdatalist->rdclass = rdclass;
 1008|   120k|		rdatalist->covers = dns_rdatatype_none;
  ------------------
  |  |  114|   120k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
 1009|       |
 1010|       |		/*
 1011|       |		 * Convert rdatalist to rdataset, and attach the latter to
 1012|       |		 * the name.
 1013|       |		 */
 1014|   120k|		dns_message_gettemprdataset(msg, &rdataset);
 1015|   120k|		dns_rdatalist_tordataset(rdatalist, rdataset);
 1016|       |
 1017|   120k|		rdataset->attributes.question = true;
 1018|       |
 1019|   120k|		ISC_LIST_APPEND(name->list, rdataset, link);
  ------------------
  |  |  100|   120k|	do {                                                  \
  |  |  101|   120k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|   120k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|   120k|	do {                                            \
  |  |  |  |   89|   120k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 0, False: 120k]
  |  |  |  |  ------------------
  |  |  |  |   90|      0|			(list).tail->link.next = (elt); \
  |  |  |  |   91|   120k|		} else {                                \
  |  |  |  |   92|   120k|			(list).head = (elt);            \
  |  |  |  |   93|   120k|		}                                       \
  |  |  |  |   94|   120k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|   120k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|   120k|		(list).tail = (elt);                    \
  |  |  |  |   97|   120k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 120k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|   120k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 120k]
  |  |  ------------------
  ------------------
 1020|       |
 1021|   120k|		rdataset = NULL;
 1022|   120k|	}
 1023|       |
 1024|  21.8k|	if (seen_problem) {
  ------------------
  |  Branch (1024:6): [True: 2.20k, False: 19.6k]
  ------------------
 1025|       |		/* XXX test coverage */
 1026|  2.20k|		result = DNS_R_RECOVERABLE;
 1027|  2.20k|	}
 1028|       |
 1029|  21.9k|cleanup:
 1030|  21.9k|	if (rdataset != NULL) {
  ------------------
  |  Branch (1030:6): [True: 0, False: 21.9k]
  ------------------
 1031|      0|		dns_rdataset_cleanup(rdataset);
  ------------------
  |  |  302|      0|	if (rdataset != NULL && dns_rdataset_isassociated(rdataset)) { \
  |  |  ------------------
  |  |  |  Branch (302:6): [True: 0, False: 0]
  |  |  |  Branch (302:26): [True: 0, False: 0]
  |  |  ------------------
  |  |  303|      0|		dns__rdataset_disassociate(rdataset DNS__DB_FILELINE); \
  |  |  304|      0|	}
  ------------------
 1032|      0|		dns_message_puttemprdataset(msg, &rdataset);
 1033|      0|	}
 1034|       |
 1035|  21.9k|	if (free_name) {
  ------------------
  |  Branch (1035:6): [True: 101, False: 21.8k]
  ------------------
 1036|    101|		dns_message_puttempname(msg, &name);
 1037|    101|	}
 1038|       |
 1039|  21.9k|	return result;
 1040|  21.8k|}
message.c:getname:
  830|   426k|	dns_decompress_t dctx) {
  831|   426k|	isc_buffer_t *scratch;
  832|   426k|	isc_result_t result;
  833|   426k|	unsigned int tries;
  834|       |
  835|   426k|	scratch = currentbuffer(msg);
  836|       |
  837|       |	/*
  838|       |	 * First try:  use current buffer.
  839|       |	 * Second try:  allocate a new buffer and use that.
  840|       |	 */
  841|   426k|	tries = 0;
  842|   448k|	while (tries < 2) {
  ------------------
  |  Branch (842:9): [True: 448k, False: 0]
  ------------------
  843|   448k|		result = dns_name_fromwire(name, source, dctx, scratch);
  844|       |
  845|   448k|		if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (845:7): [True: 21.6k, False: 426k]
  ------------------
  846|  21.6k|			tries++;
  847|       |
  848|  21.6k|			newbuffer(msg, SCRATCHPAD_SIZE);
  ------------------
  |  |  123|  21.6k|#define SCRATCHPAD_SIZE	   1232
  ------------------
  849|  21.6k|			scratch = currentbuffer(msg);
  850|  21.6k|			dns_name_reset(name);
  851|   426k|		} else {
  852|   426k|			return result;
  853|   426k|		}
  854|   448k|	}
  855|       |
  856|      0|	UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  857|   426k|}
message.c:currentbuffer:
  306|   799k|currentbuffer(dns_message_t *msg) {
  307|   799k|	isc_buffer_t *dynbuf;
  308|       |
  309|   799k|	dynbuf = ISC_LIST_TAIL(msg->scratchpad);
  ------------------
  |  |   63|   799k|#define ISC_LIST_TAIL(list)  ((list).tail)
  ------------------
  310|   799k|	INSIST(dynbuf != NULL);
  ------------------
  |  |  202|   799k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   799k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 799k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   799k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  311|       |
  312|   799k|	return dynbuf;
  313|   799k|}
message.c:newbuffer:
  297|  70.2k|newbuffer(dns_message_t *msg, unsigned int size) {
  298|  70.2k|	isc_buffer_t *dynbuf = NULL;
  299|       |
  300|  70.2k|	isc_buffer_allocate(msg->mctx, &dynbuf, size);
  301|       |
  302|       |	ISC_LIST_APPEND(msg->scratchpad, dynbuf, link);
  ------------------
  |  |  100|  70.2k|	do {                                                  \
  |  |  101|  70.2k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  70.2k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  70.2k|	do {                                            \
  |  |  |  |   89|  70.2k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 70.2k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   90|  70.2k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  70.2k|		} else {                                \
  |  |  |  |   92|      0|			(list).head = (elt);            \
  |  |  |  |   93|      0|		}                                       \
  |  |  |  |   94|  70.2k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  70.2k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  70.2k|		(list).tail = (elt);                    \
  |  |  |  |   97|  70.2k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 70.2k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  70.2k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 70.2k]
  |  |  ------------------
  ------------------
  303|  70.2k|}
message.c:getsection:
 1056|  59.6k|	   dns_section_t sectionid, unsigned int options) {
 1057|  59.6k|	isc_region_t r;
 1058|  59.6k|	unsigned int count, rdatalen;
 1059|  59.6k|	dns_name_t *name = NULL;
 1060|  59.6k|	dns_name_t *found_name = NULL;
 1061|  59.6k|	dns_rdataset_t *rdataset = NULL;
 1062|  59.6k|	dns_rdataset_t *found_rdataset = NULL;
 1063|  59.6k|	dns_rdatalist_t *rdatalist = NULL;
 1064|  59.6k|	isc_result_t result = ISC_R_SUCCESS;
 1065|  59.6k|	dns_rdatatype_t rdtype, covers;
 1066|  59.6k|	dns_rdataclass_t rdclass;
 1067|  59.6k|	dns_rdata_t *rdata = NULL;
 1068|  59.6k|	dns_ttl_t ttl;
 1069|  59.6k|	dns_namelist_t *section = &msg->sections[sectionid];
 1070|  59.6k|	bool free_name = false, seen_problem = false;
 1071|  59.6k|	bool free_hashmaps = false;
 1072|  59.6k|	bool preserve_order = ((options & DNS_MESSAGEPARSE_PRESERVEORDER) != 0);
  ------------------
  |  |  200|  59.6k|#define DNS_MESSAGEPARSE_PRESERVEORDER 0x0001 /*%< preserve rdata order */
  ------------------
 1073|  59.6k|	bool best_effort = ((options & DNS_MESSAGEPARSE_BESTEFFORT) != 0);
  ------------------
  |  |  202|  59.6k|	0x0002 /*%< return a message if a \
  ------------------
 1074|  59.6k|	bool isedns, issigzero, istsig;
 1075|  59.6k|	isc_hashmap_t *name_map = NULL;
 1076|       |
 1077|  59.6k|	if (msg->counts[sectionid] > 1) {
  ------------------
  |  Branch (1077:6): [True: 13.3k, False: 46.3k]
  ------------------
 1078|  13.3k|		isc_hashmap_create(msg->mctx, 1, &name_map);
 1079|  13.3k|	}
 1080|       |
 1081|   362k|	for (count = 0; count < msg->counts[sectionid]; count++) {
  ------------------
  |  Branch (1081:18): [True: 306k, False: 55.4k]
  ------------------
 1082|   306k|		int recstart = source->current;
 1083|   306k|		bool skip_name_search, skip_type_search;
 1084|       |
 1085|   306k|		skip_name_search = false;
 1086|   306k|		skip_type_search = false;
 1087|   306k|		isedns = false;
 1088|   306k|		issigzero = false;
 1089|   306k|		istsig = false;
 1090|   306k|		found_rdataset = NULL;
 1091|       |
 1092|   306k|		name = NULL;
 1093|   306k|		dns_message_gettempname(msg, &name);
 1094|   306k|		free_name = true;
 1095|       |
 1096|       |		/*
 1097|       |		 * Parse the name out of this packet.
 1098|       |		 */
 1099|   306k|		isc_buffer_remainingregion(source, &r);
 1100|   306k|		isc_buffer_setactive(source, r.length);
 1101|   306k|		CHECK(getname(name, source, msg, dctx));
  ------------------
  |  |  255|   306k|	{                                      \
  |  |  256|   306k|		result = (r);                  \
  |  |  257|   306k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 1.55k, False: 305k]
  |  |  ------------------
  |  |  258|  1.55k|			goto cleanup;          \
  |  |  259|  1.55k|		}                              \
  |  |  260|   306k|	}
  ------------------
 1102|       |
 1103|       |		/*
 1104|       |		 * Get type, class, ttl, and rdatalen.  Verify that at least
 1105|       |		 * rdatalen bytes remain.  (Some of this is deferred to
 1106|       |		 * later.)
 1107|       |		 */
 1108|   305k|		isc_buffer_remainingregion(source, &r);
 1109|   305k|		if (r.length < 2 + 2 + 4 + 2) {
  ------------------
  |  Branch (1109:7): [True: 175, False: 304k]
  ------------------
 1110|    175|			CLEANUP(ISC_R_UNEXPECTEDEND);
  ------------------
  |  |  266|    175|	{                     \
  |  |  267|    175|		result = (r); \
  |  |  268|    175|		goto cleanup; \
  |  |  269|    175|	}
  ------------------
 1111|      0|		}
 1112|   304k|		rdtype = isc_buffer_getuint16(source);
 1113|   304k|		rdclass = isc_buffer_getuint16(source);
 1114|       |
 1115|       |		/*
 1116|       |		 * If there was no question section, we may not yet have
 1117|       |		 * established a class.  Do so now.
 1118|       |		 */
 1119|   304k|		if (msg->rdclass_set == 0 &&
  ------------------
  |  Branch (1119:7): [True: 21.1k, False: 283k]
  ------------------
 1120|  21.1k|		    rdtype != dns_rdatatype_opt &&  /* class is UDP SIZE */
  ------------------
  |  |  155|   325k|#define dns_rdatatype_opt	((dns_rdatatype_t)dns_rdatatype_opt)
  ------------------
  |  Branch (1120:7): [True: 15.8k, False: 5.24k]
  ------------------
 1121|  15.8k|		    rdtype != dns_rdatatype_tsig && /* class is ANY */
  ------------------
  |  |  190|   320k|#define dns_rdatatype_tsig	((dns_rdatatype_t)dns_rdatatype_tsig)
  ------------------
  |  Branch (1121:7): [True: 15.0k, False: 865]
  ------------------
 1122|  15.0k|		    rdtype != dns_rdatatype_tkey)   /* class is undefined */
  ------------------
  |  |  189|  15.0k|#define dns_rdatatype_tkey	((dns_rdatatype_t)dns_rdatatype_tkey)
  ------------------
  |  Branch (1122:7): [True: 14.5k, False: 528]
  ------------------
 1123|  14.5k|		{
 1124|  14.5k|			msg->rdclass = rdclass;
 1125|  14.5k|			msg->rdclass_set = 1;
 1126|  14.5k|		}
 1127|       |
 1128|       |		/*
 1129|       |		 * If this class is different than the one in the question
 1130|       |		 * section, bail.
 1131|       |		 */
 1132|   304k|		if (msg->opcode != dns_opcode_update &&
  ------------------
  |  Branch (1132:7): [True: 268k, False: 36.3k]
  ------------------
 1133|   268k|		    rdtype != dns_rdatatype_tsig &&
  ------------------
  |  |  190|   573k|#define dns_rdatatype_tsig	((dns_rdatatype_t)dns_rdatatype_tsig)
  ------------------
  |  Branch (1133:7): [True: 263k, False: 4.50k]
  ------------------
 1134|   263k|		    rdtype != dns_rdatatype_opt &&
  ------------------
  |  |  155|   568k|#define dns_rdatatype_opt	((dns_rdatatype_t)dns_rdatatype_opt)
  ------------------
  |  Branch (1134:7): [True: 255k, False: 8.95k]
  ------------------
 1135|   255k|		    rdtype != dns_rdatatype_key &&  /* in a TKEY query */
  ------------------
  |  |  139|   559k|#define dns_rdatatype_key	((dns_rdatatype_t)dns_rdatatype_key)
  ------------------
  |  Branch (1135:7): [True: 253k, False: 1.45k]
  ------------------
 1136|   253k|		    rdtype != dns_rdatatype_sig &&  /* SIG(0) */
  ------------------
  |  |  138|   558k|#define dns_rdatatype_sig	((dns_rdatatype_t)dns_rdatatype_sig)
  ------------------
  |  Branch (1136:7): [True: 249k, False: 4.34k]
  ------------------
 1137|   249k|		    rdtype != dns_rdatatype_tkey && /* Win2000 TKEY */
  ------------------
  |  |  189|   554k|#define dns_rdatatype_tkey	((dns_rdatatype_t)dns_rdatatype_tkey)
  ------------------
  |  Branch (1137:7): [True: 246k, False: 2.55k]
  ------------------
 1138|   246k|		    msg->rdclass != dns_rdataclass_any &&
  ------------------
  |  |   34|   551k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (1138:7): [True: 242k, False: 3.93k]
  ------------------
 1139|   242k|		    msg->rdclass != rdclass)
  ------------------
  |  Branch (1139:7): [True: 189k, False: 53.2k]
  ------------------
 1140|   189k|		{
 1141|   189k|			DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|   189k|	do {                                 \
  |  |  912|   189k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 189k, False: 0]
  |  |  ------------------
  |  |  913|   189k|			seen_problem = true; \
  |  |  914|   189k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|   189k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 189k]
  |  |  ------------------
  ------------------
 1142|   189k|		}
 1143|       |
 1144|       |		/*
 1145|       |		 * If this is not a TKEY query/response then the KEY
 1146|       |		 * record's class needs to match.
 1147|       |		 */
 1148|   304k|		if (msg->opcode != dns_opcode_update && !msg->tkey &&
  ------------------
  |  Branch (1148:7): [True: 268k, False: 36.3k]
  |  Branch (1148:43): [True: 267k, False: 659]
  ------------------
 1149|   267k|		    rdtype == dns_rdatatype_key &&
  ------------------
  |  |  139|   572k|#define dns_rdatatype_key	((dns_rdatatype_t)dns_rdatatype_key)
  ------------------
  |  Branch (1149:7): [True: 1.45k, False: 266k]
  ------------------
 1150|  1.45k|		    msg->rdclass != dns_rdataclass_any &&
  ------------------
  |  |   34|   306k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (1150:7): [True: 1.24k, False: 203]
  ------------------
 1151|  1.24k|		    msg->rdclass != rdclass)
  ------------------
  |  Branch (1151:7): [True: 614, False: 635]
  ------------------
 1152|    614|		{
 1153|    614|			DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|    614|	do {                                 \
  |  |  912|    614|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 614, False: 0]
  |  |  ------------------
  |  |  913|    614|			seen_problem = true; \
  |  |  914|    614|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|    614|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 614]
  |  |  ------------------
  ------------------
 1154|    614|		}
 1155|       |
 1156|       |		/*
 1157|       |		 * Special type handling for TSIG, OPT, and TKEY.
 1158|       |		 */
 1159|   304k|		if (rdtype == dns_rdatatype_tsig) {
  ------------------
  |  |  190|   304k|#define dns_rdatatype_tsig	((dns_rdatatype_t)dns_rdatatype_tsig)
  ------------------
  |  Branch (1159:7): [True: 5.73k, False: 299k]
  ------------------
 1160|       |			/*
 1161|       |			 * If it is a tsig, verify that it is in the
 1162|       |			 * additional data section.
 1163|       |			 */
 1164|  5.73k|			if (sectionid != DNS_SECTION_ADDITIONAL ||
  ------------------
  |  Branch (1164:8): [True: 2.92k, False: 2.81k]
  ------------------
 1165|  2.81k|			    rdclass != dns_rdataclass_any ||
  ------------------
  |  |   34|  8.54k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (1165:8): [True: 1.38k, False: 1.42k]
  ------------------
 1166|  1.42k|			    count != msg->counts[sectionid] - 1)
  ------------------
  |  Branch (1166:8): [True: 1.37k, False: 49]
  ------------------
 1167|  5.68k|			{
 1168|  5.68k|				DO_ERROR(DNS_R_BADTSIG);
  ------------------
  |  |  911|  5.68k|	do {                                 \
  |  |  912|  5.68k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 5.68k, False: 0]
  |  |  ------------------
  |  |  913|  5.68k|			seen_problem = true; \
  |  |  914|  5.68k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  5.68k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 5.68k]
  |  |  ------------------
  ------------------
 1169|  5.68k|			} else {
 1170|     49|				skip_name_search = true;
 1171|     49|				skip_type_search = true;
 1172|     49|				istsig = true;
 1173|     49|			}
 1174|   299k|		} else if (rdtype == dns_rdatatype_opt) {
  ------------------
  |  |  155|   299k|#define dns_rdatatype_opt	((dns_rdatatype_t)dns_rdatatype_opt)
  ------------------
  |  Branch (1174:14): [True: 9.85k, False: 289k]
  ------------------
 1175|       |			/*
 1176|       |			 * The name of an OPT record must be ".", it
 1177|       |			 * must be in the additional data section, and
 1178|       |			 * it must be the first OPT we've seen.
 1179|       |			 */
 1180|  9.85k|			if (!dns_name_equal(dns_rootname, name) ||
  ------------------
  |  Branch (1180:8): [True: 626, False: 9.23k]
  ------------------
 1181|  9.23k|			    sectionid != DNS_SECTION_ADDITIONAL ||
  ------------------
  |  Branch (1181:8): [True: 3.94k, False: 5.28k]
  ------------------
 1182|  5.28k|			    msg->opt != NULL)
  ------------------
  |  Branch (1182:8): [True: 949, False: 4.33k]
  ------------------
 1183|  5.52k|			{
 1184|  5.52k|				DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|  5.52k|	do {                                 \
  |  |  912|  5.52k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 5.52k, False: 0]
  |  |  ------------------
  |  |  913|  5.52k|			seen_problem = true; \
  |  |  914|  5.52k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  5.52k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 5.52k]
  |  |  ------------------
  ------------------
 1185|  5.52k|			} else {
 1186|  4.33k|				skip_name_search = true;
 1187|  4.33k|				skip_type_search = true;
 1188|  4.33k|				isedns = true;
 1189|  4.33k|			}
 1190|   289k|		} else if (rdtype == dns_rdatatype_tkey) {
  ------------------
  |  |  189|   289k|#define dns_rdatatype_tkey	((dns_rdatatype_t)dns_rdatatype_tkey)
  ------------------
  |  Branch (1190:14): [True: 2.94k, False: 286k]
  ------------------
 1191|       |			/*
 1192|       |			 * A TKEY must be in the additional section if this
 1193|       |			 * is a query, and the answer section if this is a
 1194|       |			 * response.  Unless it's a Win2000 client.
 1195|       |			 *
 1196|       |			 * Its class is ignored.
 1197|       |			 */
 1198|  2.94k|			dns_section_t tkeysection;
 1199|       |
 1200|  2.94k|			if ((msg->flags & DNS_MESSAGEFLAG_QR) == 0) {
  ------------------
  |  Branch (1200:8): [True: 1.99k, False: 957]
  ------------------
 1201|  1.99k|				tkeysection = DNS_SECTION_ADDITIONAL;
 1202|  1.99k|			} else {
 1203|    957|				tkeysection = DNS_SECTION_ANSWER;
 1204|    957|			}
 1205|  2.94k|			if (sectionid != tkeysection &&
  ------------------
  |  Branch (1205:8): [True: 2.04k, False: 906]
  ------------------
 1206|  2.04k|			    sectionid != DNS_SECTION_ANSWER)
  ------------------
  |  Branch (1206:8): [True: 1.17k, False: 870]
  ------------------
 1207|  1.17k|			{
 1208|  1.17k|				DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|  1.17k|	do {                                 \
  |  |  912|  1.17k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 1.17k, False: 0]
  |  |  ------------------
  |  |  913|  1.17k|			seen_problem = true; \
  |  |  914|  1.17k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  1.17k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 1.17k]
  |  |  ------------------
  ------------------
 1209|  1.17k|			}
 1210|  2.94k|		}
 1211|       |
 1212|       |		/*
 1213|       |		 * ... now get ttl and rdatalen, and check buffer.
 1214|       |		 */
 1215|   304k|		ttl = isc_buffer_getuint32(source);
 1216|   304k|		rdatalen = isc_buffer_getuint16(source);
 1217|   304k|		r.length -= (2 + 2 + 4 + 2);
 1218|   304k|		if (r.length < rdatalen) {
  ------------------
  |  Branch (1218:7): [True: 196, False: 304k]
  ------------------
 1219|    196|			CLEANUP(ISC_R_UNEXPECTEDEND);
  ------------------
  |  |  266|    196|	{                     \
  |  |  267|    196|		result = (r); \
  |  |  268|    196|		goto cleanup; \
  |  |  269|    196|	}
  ------------------
 1220|      0|		}
 1221|       |
 1222|       |		/*
 1223|       |		 * Read the rdata from the wire format.  Interpret the
 1224|       |		 * rdata according to its actual class, even if it had a
 1225|       |		 * DynDNS meta-class in the packet (unless this is a TSIG).
 1226|       |		 * Then put the meta-class back into the finished rdata.
 1227|       |		 */
 1228|   304k|		rdata = newrdata(msg);
 1229|   304k|		if (msg->opcode == dns_opcode_update &&
  ------------------
  |  Branch (1229:7): [True: 36.3k, False: 268k]
  ------------------
 1230|  36.3k|		    update(sectionid, rdclass))
  ------------------
  |  Branch (1230:7): [True: 2.30k, False: 34.0k]
  ------------------
 1231|  2.30k|		{
 1232|  2.30k|			if (rdatalen != 0) {
  ------------------
  |  Branch (1232:8): [True: 3, False: 2.29k]
  ------------------
 1233|      3|				CLEANUP(DNS_R_FORMERR);
  ------------------
  |  |  266|      3|	{                     \
  |  |  267|      3|		result = (r); \
  |  |  268|      3|		goto cleanup; \
  |  |  269|      3|	}
  ------------------
 1234|      0|			}
 1235|       |			/*
 1236|       |			 * When the rdata is empty, the data pointer is
 1237|       |			 * never dereferenced, but it must still be non-NULL.
 1238|       |			 * Casting 1 rather than "" avoids warnings about
 1239|       |			 * discarding the const attribute of a string,
 1240|       |			 * for compilers that would warn about such things.
 1241|       |			 */
 1242|  2.29k|			rdata->data = (unsigned char *)1;
 1243|  2.29k|			rdata->length = 0;
 1244|  2.29k|			rdata->rdclass = rdclass;
 1245|  2.29k|			rdata->type = rdtype;
 1246|  2.29k|			rdata->flags = DNS_RDATA_UPDATE;
  ------------------
  |  |  166|  2.29k|#define DNS_RDATA_UPDATE  0x0001 /*%< update pseudo record. */
  ------------------
 1247|  2.29k|			result = ISC_R_SUCCESS;
 1248|   302k|		} else if (rdclass == dns_rdataclass_none &&
  ------------------
  |  |   32|   604k|#define dns_rdataclass_none	((dns_rdataclass_t)dns_rdataclass_none)
  ------------------
  |  Branch (1248:14): [True: 5.19k, False: 297k]
  ------------------
 1249|  5.19k|			   msg->opcode == dns_opcode_update &&
  ------------------
  |  Branch (1249:7): [True: 994, False: 4.20k]
  ------------------
 1250|    994|			   sectionid == DNS_SECTION_UPDATE)
  ------------------
  |  |  186|    994|#define DNS_SECTION_UPDATE	 DNS_SECTION_AUTHORITY
  ------------------
  |  Branch (1250:7): [True: 472, False: 522]
  ------------------
 1251|    472|		{
 1252|    472|			result = getrdata(source, msg, dctx, msg->rdclass,
 1253|    472|					  rdtype, rdatalen, rdata);
 1254|   301k|		} else {
 1255|   301k|			result = getrdata(source, msg, dctx, rdclass, rdtype,
 1256|   301k|					  rdatalen, rdata);
 1257|   301k|		}
 1258|   304k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1258:7): [True: 2.27k, False: 302k]
  ------------------
 1259|  2.27k|			goto cleanup;
 1260|  2.27k|		}
 1261|   302k|		rdata->rdclass = rdclass;
 1262|   302k|		if (rdtype == dns_rdatatype_rrsig && rdata->flags == 0) {
  ------------------
  |  |  160|   604k|#define dns_rdatatype_rrsig	((dns_rdatatype_t)dns_rdatatype_rrsig)
  ------------------
  |  Branch (1262:7): [True: 5.14k, False: 297k]
  |  Branch (1262:40): [True: 4.86k, False: 280]
  ------------------
 1263|  4.86k|			covers = dns_rdata_covers(rdata);
 1264|       |			/* A signature can only cover a real rdata type */
 1265|  4.86k|			if (covers == dns_rdatatype_none ||
  ------------------
  |  |  114|  9.72k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
  |  Branch (1265:8): [True: 822, False: 4.04k]
  ------------------
 1266|  4.04k|			    dns_rdatatype_ismeta(covers) ||
  ------------------
  |  Branch (1266:8): [True: 368, False: 3.67k]
  ------------------
 1267|  3.67k|			    dns_rdatatype_issig(covers))
  ------------------
  |  Branch (1267:8): [True: 187, False: 3.48k]
  ------------------
 1268|  1.37k|			{
 1269|  1.37k|				DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|  1.37k|	do {                                 \
  |  |  912|  1.37k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 1.37k, False: 0]
  |  |  ------------------
  |  |  913|  1.37k|			seen_problem = true; \
  |  |  914|  1.37k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  1.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 1.37k]
  |  |  ------------------
  ------------------
 1270|  1.37k|			}
 1271|   297k|		} else if (rdtype == dns_rdatatype_sig /* SIG(0) */ &&
  ------------------
  |  |  138|   595k|#define dns_rdatatype_sig	((dns_rdatatype_t)dns_rdatatype_sig)
  ------------------
  |  Branch (1271:14): [True: 4.97k, False: 292k]
  ------------------
 1272|  4.97k|			   rdata->flags == 0)
  ------------------
  |  Branch (1272:7): [True: 4.74k, False: 233]
  ------------------
 1273|  4.74k|		{
 1274|  4.74k|			covers = dns_rdata_covers(rdata);
 1275|  4.74k|			if (covers == dns_rdatatype_none) {
  ------------------
  |  |  114|  4.74k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
  |  Branch (1275:8): [True: 1.34k, False: 3.39k]
  ------------------
 1276|  1.34k|				if (sectionid != DNS_SECTION_ADDITIONAL ||
  ------------------
  |  Branch (1276:9): [True: 550, False: 794]
  ------------------
 1277|    794|				    count != msg->counts[sectionid] - 1 ||
  ------------------
  |  Branch (1277:9): [True: 710, False: 84]
  ------------------
 1278|     84|				    !dns_name_equal(name, dns_rootname))
  ------------------
  |  Branch (1278:9): [True: 17, False: 67]
  ------------------
 1279|  1.27k|				{
 1280|  1.27k|					DO_ERROR(DNS_R_BADSIG0);
  ------------------
  |  |  911|  1.27k|	do {                                 \
  |  |  912|  1.27k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 1.27k, False: 0]
  |  |  ------------------
  |  |  913|  1.27k|			seen_problem = true; \
  |  |  914|  1.27k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  1.27k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 1.27k]
  |  |  ------------------
  ------------------
 1281|  1.27k|				} else {
 1282|     67|					skip_name_search = true;
 1283|     67|					skip_type_search = true;
 1284|     67|					issigzero = true;
 1285|     67|				}
 1286|  3.39k|			} else {
 1287|  3.39k|				covers = dns_rdatatype_none;
  ------------------
  |  |  114|  3.39k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
 1288|  3.39k|			}
 1289|   292k|		} else {
 1290|   292k|			covers = dns_rdatatype_none;
  ------------------
  |  |  114|   292k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
 1291|   292k|		}
 1292|       |
 1293|       |		/*
 1294|       |		 * Check the ownername of NSEC3 records
 1295|       |		 */
 1296|   302k|		if (rdtype == dns_rdatatype_nsec3 &&
  ------------------
  |  |  164|   604k|#define dns_rdatatype_nsec3	((dns_rdatatype_t)dns_rdatatype_nsec3)
  ------------------
  |  Branch (1296:7): [True: 5.66k, False: 296k]
  ------------------
 1297|  5.66k|		    !dns_rdata_checkowner(name, msg->rdclass, rdtype, false))
  ------------------
  |  Branch (1297:7): [True: 18, False: 5.64k]
  ------------------
 1298|     18|		{
 1299|     18|			CLEANUP(DNS_R_BADOWNERNAME);
  ------------------
  |  |  266|     18|	{                     \
  |  |  267|     18|		result = (r); \
  |  |  268|     18|		goto cleanup; \
  |  |  269|     18|	}
  ------------------
 1300|      0|		}
 1301|       |
 1302|       |		/*
 1303|       |		 * If we are doing a dynamic update or this is a meta-type,
 1304|       |		 * don't bother searching for a name, just append this one
 1305|       |		 * to the end of the message.
 1306|       |		 */
 1307|   302k|		if (preserve_order || msg->opcode == dns_opcode_update ||
  ------------------
  |  Branch (1307:7): [True: 0, False: 302k]
  |  Branch (1307:25): [True: 36.1k, False: 266k]
  ------------------
 1308|   266k|		    skip_name_search)
  ------------------
  |  Branch (1308:7): [True: 3.72k, False: 262k]
  ------------------
 1309|  39.8k|		{
 1310|  39.8k|			if (!isedns && !istsig && !issigzero) {
  ------------------
  |  Branch (1310:8): [True: 35.6k, False: 4.25k]
  |  Branch (1310:19): [True: 35.5k, False: 43]
  |  Branch (1310:30): [True: 35.5k, False: 67]
  ------------------
 1311|  35.5k|				ISC_LIST_APPEND(*section, name, link);
  ------------------
  |  |  100|  35.5k|	do {                                                  \
  |  |  101|  35.5k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  35.5k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  35.5k|	do {                                            \
  |  |  |  |   89|  35.5k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 33.1k, False: 2.31k]
  |  |  |  |  ------------------
  |  |  |  |   90|  33.1k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  33.1k|		} else {                                \
  |  |  |  |   92|  2.31k|			(list).head = (elt);            \
  |  |  |  |   93|  2.31k|		}                                       \
  |  |  |  |   94|  35.5k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  35.5k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  35.5k|		(list).tail = (elt);                    \
  |  |  |  |   97|  35.5k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 35.5k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  35.5k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 35.5k]
  |  |  ------------------
  ------------------
 1312|  35.5k|				free_name = false;
 1313|  35.5k|			}
 1314|   262k|		} else {
 1315|   262k|			if (name_map == NULL) {
  ------------------
  |  Branch (1315:8): [True: 7.05k, False: 255k]
  ------------------
 1316|  7.05k|				result = ISC_R_SUCCESS;
 1317|  7.05k|				goto skip_name_check;
 1318|  7.05k|			}
 1319|       |
 1320|       |			/*
 1321|       |			 * Run through the section, looking to see if this name
 1322|       |			 * is already there.  If it is found, put back the
 1323|       |			 * allocated name since we no longer need it, and set
 1324|       |			 * our name pointer to point to the name we found.
 1325|       |			 */
 1326|   255k|			result = isc_hashmap_add(name_map, dns_name_hash(name),
 1327|   255k|						 name_match, name, name,
 1328|   255k|						 (void **)&found_name);
 1329|       |
 1330|       |			/*
 1331|       |			 * If it is a new name, append to the section.
 1332|       |			 */
 1333|   262k|		skip_name_check:
 1334|   262k|			switch (result) {
 1335|  44.0k|			case ISC_R_SUCCESS:
  ------------------
  |  Branch (1335:4): [True: 44.0k, False: 218k]
  ------------------
 1336|  44.0k|				ISC_LIST_APPEND(*section, name, link);
  ------------------
  |  |  100|  44.0k|	do {                                                  \
  |  |  101|  44.0k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  44.0k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  44.0k|	do {                                            \
  |  |  |  |   89|  44.0k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 26.7k, False: 17.3k]
  |  |  |  |  ------------------
  |  |  |  |   90|  26.7k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  26.7k|		} else {                                \
  |  |  |  |   92|  17.3k|			(list).head = (elt);            \
  |  |  |  |   93|  17.3k|		}                                       \
  |  |  |  |   94|  44.0k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  44.0k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  44.0k|		(list).tail = (elt);                    \
  |  |  |  |   97|  44.0k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 44.0k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  44.0k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 44.0k]
  |  |  ------------------
  ------------------
 1337|  44.0k|				break;
 1338|   218k|			case ISC_R_EXISTS:
  ------------------
  |  Branch (1338:4): [True: 218k, False: 44.0k]
  ------------------
 1339|   218k|				dns_message_puttempname(msg, &name);
 1340|   218k|				name = found_name;
 1341|   218k|				found_name = NULL;
 1342|   218k|				break;
 1343|      0|			default:
  ------------------
  |  Branch (1343:4): [True: 0, False: 262k]
  ------------------
 1344|      0|				UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
 1345|   262k|			}
 1346|   262k|			free_name = false;
 1347|   262k|		}
 1348|       |
 1349|   302k|		rdatalist = newrdatalist(msg);
 1350|   302k|		rdatalist->type = rdtype;
 1351|   302k|		rdatalist->covers = covers;
 1352|   302k|		rdatalist->rdclass = rdclass;
 1353|   302k|		rdatalist->ttl = ttl;
 1354|       |
 1355|   302k|		dns_message_gettemprdataset(msg, &rdataset);
 1356|   302k|		dns_rdatalist_tordataset(rdatalist, rdataset);
 1357|   302k|		dns_rdataset_setownercase(rdataset, name);
 1358|   302k|		rdatalist = NULL;
 1359|       |
 1360|       |		/*
 1361|       |		 * Search name for the particular type and class.
 1362|       |		 * Skip this stage if in update mode or this is a meta-type.
 1363|       |		 */
 1364|   302k|		if (isedns || istsig || issigzero) {
  ------------------
  |  Branch (1364:7): [True: 4.25k, False: 298k]
  |  Branch (1364:17): [True: 43, False: 298k]
  |  Branch (1364:27): [True: 67, False: 297k]
  ------------------
 1365|       |			/* Skip adding the rdataset to the tables */
 1366|   297k|		} else if (preserve_order || msg->opcode == dns_opcode_update ||
  ------------------
  |  Branch (1366:14): [True: 0, False: 297k]
  |  Branch (1366:32): [True: 35.5k, False: 262k]
  ------------------
 1367|   262k|			   skip_type_search)
  ------------------
  |  Branch (1367:7): [True: 0, False: 262k]
  ------------------
 1368|  35.5k|		{
 1369|  35.5k|			result = ISC_R_SUCCESS;
 1370|       |
 1371|  35.5k|			ISC_LIST_APPEND(name->list, rdataset, link);
  ------------------
  |  |  100|  35.5k|	do {                                                  \
  |  |  101|  35.5k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  35.5k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  35.5k|	do {                                            \
  |  |  |  |   89|  35.5k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 0, False: 35.5k]
  |  |  |  |  ------------------
  |  |  |  |   90|      0|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  35.5k|		} else {                                \
  |  |  |  |   92|  35.5k|			(list).head = (elt);            \
  |  |  |  |   93|  35.5k|		}                                       \
  |  |  |  |   94|  35.5k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  35.5k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  35.5k|		(list).tail = (elt);                    \
  |  |  |  |   97|  35.5k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 35.5k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  35.5k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 35.5k]
  |  |  ------------------
  ------------------
 1372|   262k|		} else {
 1373|       |			/*
 1374|       |			 * If this is a type that can only occur in
 1375|       |			 * the question section, fail.
 1376|       |			 */
 1377|   262k|			if (dns_rdatatype_questiononly(rdtype)) {
  ------------------
  |  Branch (1377:8): [True: 5.27k, False: 257k]
  ------------------
 1378|  5.27k|				DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|  5.27k|	do {                                 \
  |  |  912|  5.27k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 5.27k, False: 0]
  |  |  ------------------
  |  |  913|  5.27k|			seen_problem = true; \
  |  |  914|  5.27k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  5.27k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 5.27k]
  |  |  ------------------
  ------------------
 1379|  5.27k|			}
 1380|       |
 1381|   262k|			if (ISC_LIST_EMPTY(name->list)) {
  ------------------
  |  |   64|   262k|#define ISC_LIST_EMPTY(list) ((list).head == NULL)
  |  |  ------------------
  |  |  |  Branch (64:30): [True: 44.0k, False: 218k]
  |  |  ------------------
  ------------------
 1382|  44.0k|				result = ISC_R_SUCCESS;
 1383|  44.0k|				goto skip_rds_check;
 1384|  44.0k|			}
 1385|       |
 1386|   218k|			if (name->hashmap == NULL) {
  ------------------
  |  Branch (1386:8): [True: 17.2k, False: 201k]
  ------------------
 1387|  17.2k|				isc_hashmap_create(msg->mctx, 1,
 1388|  17.2k|						   &name->hashmap);
 1389|  17.2k|				free_hashmaps = true;
 1390|       |
 1391|  17.2k|				INSIST(ISC_LIST_HEAD(name->list) ==
  ------------------
  |  |  202|  17.2k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  17.2k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 17.2k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  17.2k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1392|  17.2k|				       ISC_LIST_TAIL(name->list));
 1393|       |
 1394|  17.2k|				dns_rdataset_t *old_rdataset =
 1395|  17.2k|					ISC_LIST_HEAD(name->list);
  ------------------
  |  |   62|  17.2k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1396|       |
 1397|  17.2k|				result = isc_hashmap_add(
 1398|  17.2k|					name->hashmap, rds_hash(old_rdataset),
 1399|  17.2k|					rds_match, old_rdataset, old_rdataset,
 1400|  17.2k|					NULL);
 1401|       |
 1402|  17.2k|				INSIST(result == ISC_R_SUCCESS);
  ------------------
  |  |  202|  17.2k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  17.2k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 17.2k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  17.2k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1403|  17.2k|			}
 1404|       |
 1405|   218k|			result = isc_hashmap_add(
 1406|   218k|				name->hashmap, rds_hash(rdataset), rds_match,
 1407|   218k|				rdataset, rdataset, (void **)&found_rdataset);
 1408|       |
 1409|       |			/*
 1410|       |			 * If we found an rdataset that matches, we need to
 1411|       |			 * append this rdata to that set.  If we did not, we
 1412|       |			 * need to create a new rdatalist, store the important
 1413|       |			 * bits there, convert it to an rdataset, and link the
 1414|       |			 * latter to the name. Yuck.  When appending, make
 1415|       |			 * certain that the type isn't a singleton type, such as
 1416|       |			 * SOA or CNAME.
 1417|       |			 *
 1418|       |			 * Note that this check will be bypassed when preserving
 1419|       |			 * order, the opcode is an update, or the type search is
 1420|       |			 * skipped.
 1421|       |			 */
 1422|   262k|		skip_rds_check:
 1423|   262k|			switch (result) {
 1424|   165k|			case ISC_R_EXISTS:
  ------------------
  |  Branch (1424:4): [True: 165k, False: 96.6k]
  ------------------
 1425|       |				/* Free the rdataset we used as the key */
 1426|   165k|				dns__message_putassociatedrdataset(msg,
 1427|   165k|								   &rdataset);
 1428|   165k|				result = ISC_R_SUCCESS;
 1429|   165k|				rdataset = found_rdataset;
 1430|       |
 1431|   165k|				if (!dns_rdatatype_issingleton(rdtype)) {
  ------------------
  |  Branch (1431:9): [True: 153k, False: 12.1k]
  ------------------
 1432|   153k|					break;
 1433|   153k|				}
 1434|       |
 1435|  12.1k|				dns_rdatalist_fromrdataset(rdataset,
 1436|  12.1k|							   &rdatalist);
 1437|  12.1k|				dns_rdata_t *first =
 1438|  12.1k|					ISC_LIST_HEAD(rdatalist->rdata);
  ------------------
  |  |   62|  12.1k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1439|  12.1k|				INSIST(first != NULL);
  ------------------
  |  |  202|  12.1k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  12.1k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 12.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  12.1k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1440|  12.1k|				if (dns_rdata_compare(rdata, first) != 0) {
  ------------------
  |  Branch (1440:9): [True: 6.03k, False: 6.07k]
  ------------------
 1441|  6.03k|					DO_ERROR(DNS_R_FORMERR);
  ------------------
  |  |  911|  6.03k|	do {                                 \
  |  |  912|  6.03k|		if (best_effort) {           \
  |  |  ------------------
  |  |  |  Branch (912:7): [True: 6.03k, False: 0]
  |  |  ------------------
  |  |  913|  6.03k|			seen_problem = true; \
  |  |  914|  6.03k|		} else {                     \
  |  |  915|      0|			result = r;          \
  |  |  916|      0|			goto cleanup;        \
  |  |  917|      0|		}                            \
  |  |  918|  6.03k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (918:11): [Folded, False: 6.03k]
  |  |  ------------------
  ------------------
 1442|  6.03k|				}
 1443|  12.1k|				break;
 1444|  96.6k|			case ISC_R_SUCCESS:
  ------------------
  |  Branch (1444:4): [True: 96.6k, False: 165k]
  ------------------
 1445|  96.6k|				ISC_LIST_APPEND(name->list, rdataset, link);
  ------------------
  |  |  100|  96.6k|	do {                                                  \
  |  |  101|  96.6k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  96.6k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  96.6k|	do {                                            \
  |  |  |  |   89|  96.6k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 52.5k, False: 44.0k]
  |  |  |  |  ------------------
  |  |  |  |   90|  52.5k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  52.5k|		} else {                                \
  |  |  |  |   92|  44.0k|			(list).head = (elt);            \
  |  |  |  |   93|  44.0k|		}                                       \
  |  |  |  |   94|  96.6k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  96.6k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  96.6k|		(list).tail = (elt);                    \
  |  |  |  |   97|  96.6k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 96.6k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  96.6k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 96.6k]
  |  |  ------------------
  ------------------
 1446|  96.6k|				break;
 1447|      0|			default:
  ------------------
  |  Branch (1447:4): [True: 0, False: 262k]
  ------------------
 1448|      0|				UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
 1449|   262k|			}
 1450|   262k|		}
 1451|       |
 1452|       |		/*
 1453|       |		 * Minimize TTLs.
 1454|       |		 *
 1455|       |		 * Section 5.2 of RFC2181 says we should drop
 1456|       |		 * nonauthoritative rrsets where the TTLs differ, but we
 1457|       |		 * currently treat them the as if they were authoritative and
 1458|       |		 * minimize them.
 1459|       |		 */
 1460|   302k|		if (ttl != rdataset->ttl) {
  ------------------
  |  Branch (1460:7): [True: 40.7k, False: 261k]
  ------------------
 1461|  40.7k|			rdataset->attributes.ttladjusted = true;
 1462|  40.7k|			if (ttl < rdataset->ttl) {
  ------------------
  |  Branch (1462:8): [True: 4.35k, False: 36.4k]
  ------------------
 1463|  4.35k|				rdataset->ttl = ttl;
 1464|  4.35k|			}
 1465|  40.7k|		}
 1466|       |
 1467|       |		/* Append this rdata to the rdataset. */
 1468|   302k|		dns_rdatalist_fromrdataset(rdataset, &rdatalist);
 1469|   302k|		ISC_LIST_APPEND(rdatalist->rdata, rdata, link);
  ------------------
  |  |  100|   302k|	do {                                                  \
  |  |  101|   302k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|   302k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|   302k|	do {                                            \
  |  |  |  |   89|   302k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 165k, False: 136k]
  |  |  |  |  ------------------
  |  |  |  |   90|   165k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|   165k|		} else {                                \
  |  |  |  |   92|   136k|			(list).head = (elt);            \
  |  |  |  |   93|   136k|		}                                       \
  |  |  |  |   94|   302k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|   302k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|   302k|		(list).tail = (elt);                    \
  |  |  |  |   97|   302k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 302k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|   302k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 302k]
  |  |  ------------------
  ------------------
 1470|       |
 1471|       |		/*
 1472|       |		 * If this is an OPT, SIG(0) or TSIG record, remember it.
 1473|       |		 * Also, set the extended rcode for TSIG.
 1474|       |		 *
 1475|       |		 * Note msg->opt, msg->sig0 and msg->tsig will only be
 1476|       |		 * already set if best-effort parsing is enabled otherwise
 1477|       |		 * there will only be at most one of each.
 1478|       |		 */
 1479|   302k|		if (isedns) {
  ------------------
  |  Branch (1479:7): [True: 4.25k, False: 298k]
  ------------------
 1480|  4.25k|			dns_rcode_t ercode;
 1481|       |
 1482|  4.25k|			msg->opt = rdataset;
 1483|  4.25k|			ercode = (dns_rcode_t)((msg->opt->ttl &
 1484|  4.25k|						DNS_MESSAGE_EDNSRCODE_MASK) >>
  ------------------
  |  |   88|  4.25k|#define DNS_MESSAGE_EDNSRCODE_MASK    0xff000000U
  ------------------
 1485|  4.25k|					       20);
 1486|  4.25k|			msg->rcode |= ercode;
 1487|  4.25k|			dns_message_puttempname(msg, &name);
 1488|  4.25k|			free_name = false;
 1489|   298k|		} else if (issigzero) {
  ------------------
  |  Branch (1489:14): [True: 67, False: 298k]
  ------------------
 1490|     67|			msg->sig0 = rdataset;
 1491|     67|			msg->sig0name = name;
 1492|     67|			msg->sigstart = recstart;
 1493|     67|			free_name = false;
 1494|   298k|		} else if (istsig) {
  ------------------
  |  Branch (1494:14): [True: 43, False: 297k]
  ------------------
 1495|     43|			msg->tsig = rdataset;
 1496|     43|			msg->tsigname = name;
 1497|     43|			msg->sigstart = recstart;
 1498|       |			/*
 1499|       |			 * Windows doesn't like TSIG names to be compressed.
 1500|       |			 */
 1501|     43|			msg->tsigname->attributes.nocompress = true;
 1502|     43|			free_name = false;
 1503|   297k|		} else if (rdtype == dns_rdatatype_dname &&
  ------------------
  |  |  153|   595k|#define dns_rdatatype_dname	((dns_rdatatype_t)dns_rdatatype_dname)
  ------------------
  |  Branch (1503:14): [True: 3.53k, False: 294k]
  ------------------
 1504|  3.53k|			   sectionid == DNS_SECTION_ANSWER &&
  ------------------
  |  Branch (1504:7): [True: 1.85k, False: 1.67k]
  ------------------
 1505|  1.85k|			   msg->opcode == dns_opcode_query)
  ------------------
  |  Branch (1505:7): [True: 531, False: 1.32k]
  ------------------
 1506|    531|		{
 1507|    531|			msg->has_dname = 1;
 1508|    531|		}
 1509|   302k|		rdataset = NULL;
 1510|       |
 1511|   302k|		if (seen_problem) {
  ------------------
  |  Branch (1511:7): [True: 247k, False: 55.3k]
  ------------------
 1512|   247k|			if (free_name) {
  ------------------
  |  Branch (1512:8): [True: 0, False: 247k]
  ------------------
 1513|       |				/* XXX test coverage */
 1514|      0|				dns_message_puttempname(msg, &name);
 1515|      0|			}
 1516|   247k|			free_name = false;
 1517|   247k|		}
 1518|   302k|		INSIST(!free_name);
  ------------------
  |  |  202|   302k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   302k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 302k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   302k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1519|   302k|	}
 1520|       |
 1521|  55.4k|	if (seen_problem) {
  ------------------
  |  Branch (1521:6): [True: 9.31k, False: 46.1k]
  ------------------
 1522|  9.31k|		result = DNS_R_RECOVERABLE;
 1523|  9.31k|	}
 1524|       |
 1525|  59.6k|cleanup:
 1526|  59.6k|	if (rdataset != NULL && rdataset != found_rdataset) {
  ------------------
  |  Branch (1526:6): [True: 0, False: 59.6k]
  |  Branch (1526:26): [True: 0, False: 0]
  ------------------
 1527|      0|		dns__message_putassociatedrdataset(msg, &rdataset);
 1528|      0|	}
 1529|  59.6k|	if (free_name) {
  ------------------
  |  Branch (1529:6): [True: 4.21k, False: 55.4k]
  ------------------
 1530|  4.21k|		dns_message_puttempname(msg, &name);
 1531|  4.21k|	}
 1532|       |
 1533|  59.6k|	if (free_hashmaps) {
  ------------------
  |  Branch (1533:6): [True: 8.34k, False: 51.3k]
  ------------------
 1534|  8.34k|		cleanup_name_hashmaps(section);
 1535|  8.34k|	}
 1536|       |
 1537|  59.6k|	if (name_map != NULL) {
  ------------------
  |  Branch (1537:6): [True: 13.3k, False: 46.3k]
  ------------------
 1538|  13.3k|		isc_hashmap_destroy(&name_map);
 1539|  13.3k|	}
 1540|       |
 1541|  59.6k|	return result;
 1542|  55.4k|}
message.c:update:
 1043|  36.3k|update(dns_section_t section, dns_rdataclass_t rdclass) {
 1044|  36.3k|	if (section == DNS_SECTION_PREREQUISITE) {
  ------------------
  |  |  185|  36.3k|#define DNS_SECTION_PREREQUISITE DNS_SECTION_ANSWER
  ------------------
  |  Branch (1044:6): [True: 8.05k, False: 28.2k]
  ------------------
 1045|  8.05k|		return rdclass == dns_rdataclass_any ||
  ------------------
  |  |   34|  16.1k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (1045:10): [True: 1.10k, False: 6.94k]
  ------------------
 1046|  6.94k|		       rdclass == dns_rdataclass_none;
  ------------------
  |  |   32|  15.0k|#define dns_rdataclass_none	((dns_rdataclass_t)dns_rdataclass_none)
  ------------------
  |  Branch (1046:10): [True: 666, False: 6.28k]
  ------------------
 1047|  8.05k|	}
 1048|  28.2k|	if (section == DNS_SECTION_UPDATE) {
  ------------------
  |  |  186|  28.2k|#define DNS_SECTION_UPDATE	 DNS_SECTION_AUTHORITY
  ------------------
  |  Branch (1048:6): [True: 11.3k, False: 16.9k]
  ------------------
 1049|  11.3k|		return rdclass == dns_rdataclass_any;
  ------------------
  |  |   34|  11.3k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
 1050|  11.3k|	}
 1051|  16.9k|	return false;
 1052|  28.2k|}
message.c:getrdata:
  862|   302k|	 unsigned int rdatalen, dns_rdata_t *rdata) {
  863|   302k|	isc_buffer_t *scratch;
  864|   302k|	isc_result_t result;
  865|   302k|	unsigned int tries;
  866|   302k|	unsigned int trysize;
  867|       |
  868|   302k|	scratch = currentbuffer(msg);
  869|       |
  870|   302k|	isc_buffer_setactive(source, rdatalen);
  871|       |
  872|       |	/*
  873|       |	 * First try:  use current buffer.
  874|       |	 * Second try:  allocate a new buffer of size
  875|       |	 *     max(SCRATCHPAD_SIZE, 2 * compressed_rdatalen)
  876|       |	 *     (the data will fit if it was not more than 50% compressed)
  877|       |	 * Subsequent tries: double buffer size on each try.
  878|       |	 */
  879|   302k|	tries = 0;
  880|   302k|	trysize = 0;
  881|       |	/* XXX possibly change this to a while (tries < 2) loop */
  882|   350k|	for (;;) {
  883|   350k|		result = dns_rdata_fromwire(rdata, rdclass, rdtype, source,
  884|   350k|					    dctx, scratch);
  885|       |
  886|   350k|		if (result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (886:7): [True: 48.5k, False: 302k]
  ------------------
  887|  48.5k|			if (tries == 0) {
  ------------------
  |  Branch (887:8): [True: 39.1k, False: 9.37k]
  ------------------
  888|  39.1k|				trysize = 2 * rdatalen;
  889|  39.1k|				if (trysize < SCRATCHPAD_SIZE) {
  ------------------
  |  |  123|  39.1k|#define SCRATCHPAD_SIZE	   1232
  ------------------
  |  Branch (889:9): [True: 36.6k, False: 2.48k]
  ------------------
  890|  36.6k|					trysize = SCRATCHPAD_SIZE;
  ------------------
  |  |  123|  36.6k|#define SCRATCHPAD_SIZE	   1232
  ------------------
  891|  36.6k|				}
  892|  39.1k|			} else {
  893|  9.37k|				INSIST(trysize != 0);
  ------------------
  |  |  202|  9.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  9.37k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 9.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  9.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  894|  9.37k|				if (trysize >= 65535) {
  ------------------
  |  Branch (894:9): [True: 1, False: 9.37k]
  ------------------
  895|      1|					return ISC_R_NOSPACE;
  896|      1|				}
  897|       |				/* XXX DNS_R_RRTOOLONG? */
  898|  9.37k|				trysize *= 2;
  899|  9.37k|			}
  900|  48.5k|			tries++;
  901|  48.5k|			newbuffer(msg, trysize);
  902|       |
  903|  48.5k|			scratch = currentbuffer(msg);
  904|   302k|		} else {
  905|   302k|			return result;
  906|   302k|		}
  907|   350k|	}
  908|   302k|}
message.c:name_match:
  771|   218k|name_match(void *node, const void *key) {
  772|   218k|	return dns_name_equal(node, key);
  773|   218k|}
message.c:rds_hash:
  789|   235k|rds_hash(dns_rdataset_t *rds) {
  790|   235k|	isc_hash32_t state;
  791|       |
  792|   235k|	isc_hash32_init(&state);
  793|   235k|	isc_hash32_hash(&state, &rds->rdclass, sizeof(rds->rdclass), true);
  794|   235k|	isc_hash32_hash(&state, &rds->type, sizeof(rds->type), true);
  795|   235k|	isc_hash32_hash(&state, &rds->covers, sizeof(rds->covers), true);
  796|       |
  797|   235k|	return isc_hash32_finalize(&state);
  798|   235k|}
message.c:rds_match:
  801|   165k|rds_match(void *node, const void *key0) {
  802|   165k|	const dns_rdataset_t *rds = node;
  803|   165k|	const dns_rdataset_t *key = key0;
  804|       |
  805|   165k|	return rds->rdclass == key->rdclass && rds->type == key->type &&
  ------------------
  |  Branch (805:9): [True: 165k, False: 57]
  |  Branch (805:41): [True: 165k, False: 0]
  ------------------
  806|   165k|	       rds->covers == key->covers;
  ------------------
  |  Branch (806:9): [True: 165k, False: 0]
  ------------------
  807|   165k|}
message.c:cleanup_name_hashmaps:
  921|  8.34k|cleanup_name_hashmaps(dns_namelist_t *section) {
  922|  34.1k|	ISC_LIST_FOREACH(*section, name, link) {
  ------------------
  |  |  234|  8.34k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  8.34k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  8.34k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|  8.34k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 8.34k, False: 0]
  |  |  ------------------
  |  |  236|  42.5k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 34.1k, False: 8.34k]
  |  |  ------------------
  |  |  237|  34.1k|	     elt = elt##_next,                                             \
  |  |  238|  34.1k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|  25.8k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 25.8k, False: 8.34k]
  |  |  ------------------
  ------------------
  923|  34.1k|		if (name->hashmap != NULL) {
  ------------------
  |  Branch (923:7): [True: 17.2k, False: 16.9k]
  ------------------
  924|  17.2k|			isc_hashmap_destroy(&name->hashmap);
  925|  17.2k|		}
  926|  34.1k|	}
  927|  8.34k|}
message.c:update_min_section_ttl:
 1871|   154k|		       dns_rdataset_t *restrict rdataset) {
 1872|   154k|	if (!msg->minttl[sectionid].is_set ||
  ------------------
  |  Branch (1872:6): [True: 10.9k, False: 144k]
  ------------------
 1873|   144k|	    rdataset->ttl < msg->minttl[sectionid].ttl)
  ------------------
  |  Branch (1873:6): [True: 5.08k, False: 138k]
  ------------------
 1874|  16.0k|	{
 1875|       |		msg->minttl[sectionid].is_set = true;
 1876|  16.0k|		msg->minttl[sectionid].ttl = rdataset->ttl;
 1877|  16.0k|	}
 1878|   154k|}
message.c:wrong_priority:
 1802|  33.1k|wrong_priority(dns_rdataset_t *rds, int pass, dns_rdatatype_t preferred_glue) {
 1803|  33.1k|	int pass_needed;
 1804|       |
 1805|       |	/*
 1806|       |	 * If we are not rendering class IN, this ordering is bogus.
 1807|       |	 */
 1808|  33.1k|	if (rds->rdclass != dns_rdataclass_in) {
  ------------------
  |  |   24|  33.1k|#define dns_rdataclass_in	((dns_rdataclass_t)dns_rdataclass_in)
  ------------------
  |  Branch (1808:6): [True: 21.1k, False: 12.0k]
  ------------------
 1809|  21.1k|		return false;
 1810|  21.1k|	}
 1811|       |
 1812|  12.0k|	switch (rds->type) {
 1813|    421|	case dns_rdatatype_a:
  ------------------
  |  |  115|    421|#define dns_rdatatype_a		((dns_rdatatype_t)dns_rdatatype_a)
  ------------------
  |  Branch (1813:2): [True: 421, False: 11.6k]
  ------------------
 1814|    679|	case dns_rdatatype_aaaa:
  ------------------
  |  |  142|    679|#define dns_rdatatype_aaaa	((dns_rdatatype_t)dns_rdatatype_aaaa)
  ------------------
  |  Branch (1814:2): [True: 258, False: 11.7k]
  ------------------
 1815|    679|		if (preferred_glue == rds->type) {
  ------------------
  |  Branch (1815:7): [True: 0, False: 679]
  ------------------
 1816|      0|			pass_needed = 4;
 1817|    679|		} else {
 1818|    679|			pass_needed = 3;
 1819|    679|		}
 1820|    679|		break;
 1821|    498|	case dns_rdatatype_rrsig:
  ------------------
  |  |  160|    498|#define dns_rdatatype_rrsig	((dns_rdatatype_t)dns_rdatatype_rrsig)
  ------------------
  |  Branch (1821:2): [True: 498, False: 11.5k]
  ------------------
 1822|  1.02k|	case dns_rdatatype_dnskey:
  ------------------
  |  |  162|  1.02k|#define dns_rdatatype_dnskey	((dns_rdatatype_t)dns_rdatatype_dnskey)
  ------------------
  |  Branch (1822:2): [True: 527, False: 11.5k]
  ------------------
 1823|  1.02k|		pass_needed = 2;
 1824|  1.02k|		break;
 1825|  10.3k|	default:
  ------------------
  |  Branch (1825:2): [True: 10.3k, False: 1.70k]
  ------------------
 1826|  10.3k|		pass_needed = 1;
 1827|  12.0k|	}
 1828|       |
 1829|  12.0k|	if (pass_needed >= pass) {
  ------------------
  |  Branch (1829:6): [True: 4.63k, False: 7.41k]
  ------------------
 1830|  4.63k|		return false;
 1831|  4.63k|	}
 1832|       |
 1833|  7.41k|	return true;
 1834|  12.0k|}
message.c:maybe_clear_ad:
 1858|    154|maybe_clear_ad(dns_message_t *msg, dns_section_t sectionid) {
 1859|    154|	if (msg->counts[sectionid] == 0 &&
  ------------------
  |  Branch (1859:6): [True: 77, False: 77]
  ------------------
 1860|     77|	    (sectionid == DNS_SECTION_ANSWER ||
  ------------------
  |  Branch (1860:7): [True: 1, False: 76]
  ------------------
 1861|     76|	     (sectionid == DNS_SECTION_AUTHORITY &&
  ------------------
  |  Branch (1861:8): [True: 27, False: 49]
  ------------------
 1862|     27|	      msg->counts[DNS_SECTION_ANSWER] == 0)))
  ------------------
  |  Branch (1862:8): [True: 1, False: 26]
  ------------------
 1863|      2|	{
 1864|      2|		msg->flags &= ~DNS_MESSAGEFLAG_AD;
 1865|      2|	}
 1866|    154|}
message.c:msgresetnames:
  459|  23.2k|msgresetnames(dns_message_t *msg, unsigned int first_section) {
  460|       |	/* Clean up name lists. */
  461|   115k|	for (size_t i = first_section; i < DNS_SECTION_MAX; i++) {
  ------------------
  |  Branch (461:33): [True: 91.7k, False: 23.2k]
  ------------------
  462|   199k|		ISC_LIST_FOREACH(msg->sections[i], name, link) {
  ------------------
  |  |  234|  91.7k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  91.7k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  91.7k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|  23.5k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 23.5k, False: 68.1k]
  |  |  ------------------
  |  |  236|   291k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 199k, False: 91.7k]
  |  |  ------------------
  |  |  237|   199k|	     elt = elt##_next,                                             \
  |  |  238|   199k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|   176k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 176k, False: 23.5k]
  |  |  ------------------
  ------------------
  463|       |			ISC_LIST_UNLINK(msg->sections[i], name, link);
  ------------------
  |  |  137|   199k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|   199k|	do {                                                         \
  |  |  |  |  133|   199k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|   199k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|   199k|	do {                                                            \
  |  |  |  |  |  |  110|   199k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 176k, False: 23.5k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|   176k|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|   176k|		} else {                                                \
  |  |  |  |  |  |  113|  23.5k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  23.5k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 23.5k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  23.5k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|  23.5k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|  23.5k|		}                                                       \
  |  |  |  |  |  |  116|   199k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 199k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|   199k|		} else {                                                \
  |  |  |  |  |  |  119|   199k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   199k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 199k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   199k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|   199k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|   199k|		}                                                       \
  |  |  |  |  |  |  122|   199k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   199k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|   199k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   199k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|   199k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   199k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 199k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   199k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|   199k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   199k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 199k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   199k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|   199k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 199k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|   199k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 199k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  464|   199k|			msgresetname(msg, name);
  465|   199k|			dns_message_puttempname(msg, &name);
  466|   199k|		}
  467|  91.7k|	}
  468|  23.2k|}
message.c:msgresetname:
  451|   199k|msgresetname(dns_message_t *msg, dns_name_t *name) {
  452|   252k|	ISC_LIST_FOREACH(name->list, rds, link) {
  ------------------
  |  |  234|   199k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|   199k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|   199k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|   199k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 199k, False: 15]
  |  |  ------------------
  |  |  236|   451k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 252k, False: 199k]
  |  |  ------------------
  |  |  237|   252k|	     elt = elt##_next,                                             \
  |  |  238|   252k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|  52.5k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 52.5k, False: 199k]
  |  |  ------------------
  ------------------
  453|       |		ISC_LIST_UNLINK(name->list, rds, link);
  ------------------
  |  |  137|   252k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|   252k|	do {                                                         \
  |  |  |  |  133|   252k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|   252k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|   252k|	do {                                                            \
  |  |  |  |  |  |  110|   252k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 52.5k, False: 199k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|  52.5k|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|   199k|		} else {                                                \
  |  |  |  |  |  |  113|   199k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   199k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 199k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   199k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|   199k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|   199k|		}                                                       \
  |  |  |  |  |  |  116|   252k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 252k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|   252k|		} else {                                                \
  |  |  |  |  |  |  119|   252k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   252k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 252k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   252k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|   252k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|   252k|		}                                                       \
  |  |  |  |  |  |  122|   252k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   252k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|   252k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   252k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|   252k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   252k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 252k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   252k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|   252k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|   252k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 252k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|   252k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|   252k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 252k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|   252k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 252k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  454|   252k|		dns__message_putassociatedrdataset(msg, &rds);
  455|   252k|	}
  456|   199k|}
message.c:renderset:
 1839|  2.11k|	  unsigned int options, unsigned int *countp) {
 1840|  2.11k|	isc_result_t result;
 1841|       |
 1842|       |	/*
 1843|       |	 * Shrink the space in the buffer by the reserved amount.
 1844|       |	 */
 1845|  2.11k|	if (target->length - target->used < reserved) {
  ------------------
  |  Branch (1845:6): [True: 0, False: 2.11k]
  ------------------
 1846|      0|		return ISC_R_NOSPACE;
 1847|      0|	}
 1848|       |
 1849|  2.11k|	target->length -= reserved;
 1850|  2.11k|	result = dns_rdataset_towire(rdataset, owner_name, id, cctx, target,
 1851|  2.11k|				     false, options, countp);
 1852|  2.11k|	target->length += reserved;
 1853|       |
 1854|  2.11k|	return result;
 1855|  2.11k|}
message.c:newrdata:
  321|   304k|newrdata(dns_message_t *msg) {
  322|   304k|	dns_msgblock_t *msgblock;
  323|   304k|	dns_rdata_t *rdata;
  324|       |
  325|   304k|	rdata = ISC_LIST_HEAD(msg->freerdata);
  ------------------
  |  |   62|   304k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  326|   304k|	if (rdata != NULL) {
  ------------------
  |  Branch (326:6): [True: 0, False: 304k]
  ------------------
  327|      0|		ISC_LIST_UNLINK(msg->freerdata, rdata, link);
  ------------------
  |  |  137|      0|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|      0|	do {                                                         \
  |  |  |  |  133|      0|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|      0|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|      0|	do {                                                            \
  |  |  |  |  |  |  110|      0|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|      0|		} else {                                                \
  |  |  |  |  |  |  113|      0|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|      0|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|      0|		}                                                       \
  |  |  |  |  |  |  116|      0|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|      0|		} else {                                                \
  |  |  |  |  |  |  119|      0|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|      0|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|      0|		}                                                       \
  |  |  |  |  |  |  122|      0|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|      0|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|      0|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|      0|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|      0|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  328|      0|		dns_rdata_reset(rdata);
  329|      0|		return rdata;
  330|      0|	}
  331|       |
  332|   304k|	msgblock = ISC_LIST_TAIL(msg->rdatas);
  ------------------
  |  |   63|   304k|#define ISC_LIST_TAIL(list)  ((list).tail)
  ------------------
  333|   304k|	rdata = msgblock_get(msgblock, dns_rdata_t);
  ------------------
  |  |  190|   304k|	((type *)msgblock_internalget(block, sizeof(type)))
  ------------------
  334|   304k|	if (rdata == NULL) {
  ------------------
  |  Branch (334:6): [True: 52.0k, False: 252k]
  ------------------
  335|  52.0k|		msgblock = msgblock_allocate(msg->mctx, sizeof(dns_rdata_t),
  336|  52.0k|					     RDATA_COUNT);
  ------------------
  |  |  127|  52.0k|#define RDATA_COUNT	   8
  ------------------
  337|  52.0k|		ISC_LIST_APPEND(msg->rdatas, msgblock, link);
  ------------------
  |  |  100|  52.0k|	do {                                                  \
  |  |  101|  52.0k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  52.0k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  52.0k|	do {                                            \
  |  |  |  |   89|  52.0k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 32.1k, False: 19.8k]
  |  |  |  |  ------------------
  |  |  |  |   90|  32.1k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  32.1k|		} else {                                \
  |  |  |  |   92|  19.8k|			(list).head = (elt);            \
  |  |  |  |   93|  19.8k|		}                                       \
  |  |  |  |   94|  52.0k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  52.0k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  52.0k|		(list).tail = (elt);                    \
  |  |  |  |   97|  52.0k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 52.0k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  52.0k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 52.0k]
  |  |  ------------------
  ------------------
  338|       |
  339|  52.0k|		rdata = msgblock_get(msgblock, dns_rdata_t);
  ------------------
  |  |  190|  52.0k|	((type *)msgblock_internalget(block, sizeof(type)))
  ------------------
  340|  52.0k|	}
  341|       |
  342|   304k|	dns_rdata_init(rdata);
  343|   304k|	return rdata;
  344|   304k|}
message.c:msgblock_internalget:
  258|   845k|msgblock_internalget(dns_msgblock_t *block, unsigned int sizeof_type) {
  259|   845k|	void *ptr;
  260|       |
  261|   845k|	if (block == NULL || block->remaining == 0) {
  ------------------
  |  Branch (261:6): [True: 39.8k, False: 805k]
  |  Branch (261:23): [True: 78.2k, False: 727k]
  ------------------
  262|   118k|		return NULL;
  263|   118k|	}
  264|       |
  265|   727k|	block->remaining--;
  266|       |
  267|   727k|	ptr = (((unsigned char *)block) + sizeof(dns_msgblock_t) +
  268|   727k|	       (sizeof_type * block->remaining));
  269|       |
  270|   727k|	return ptr;
  271|   845k|}
message.c:msgblock_allocate:
  237|   118k|		  unsigned int count) {
  238|   118k|	dns_msgblock_t *block;
  239|   118k|	unsigned int length;
  240|       |
  241|   118k|	length = sizeof(dns_msgblock_t) + (sizeof_type * count);
  242|       |
  243|   118k|	block = isc_mem_get(mctx, length);
  ------------------
  |  |  128|   118k|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
  244|       |
  245|   118k|	block->count = count;
  246|   118k|	block->remaining = count;
  247|       |
  248|   118k|	ISC_LINK_INIT(block, link);
  ------------------
  |  |   57|   118k|#define ISC_LINK_INIT(elt, link) ISC_LINK_INIT_TYPE(elt, link, void)
  |  |  ------------------
  |  |  |  |   53|   118k|	do {                                                 \
  |  |  |  |   54|   118k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   118k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   55|   118k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   118k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   56|   118k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (56:11): [Folded, False: 118k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  249|       |
  250|   118k|	return block;
  251|   118k|}
message.c:newrdatalist:
  352|   422k|newrdatalist(dns_message_t *msg) {
  353|   422k|	dns_msgblock_t *msgblock;
  354|   422k|	dns_rdatalist_t *rdatalist;
  355|       |
  356|   422k|	rdatalist = ISC_LIST_HEAD(msg->freerdatalist);
  ------------------
  |  |   62|   422k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  357|   422k|	if (rdatalist != NULL) {
  ------------------
  |  Branch (357:6): [True: 0, False: 422k]
  ------------------
  358|      0|		ISC_LIST_UNLINK(msg->freerdatalist, rdatalist, link);
  ------------------
  |  |  137|      0|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|      0|	do {                                                         \
  |  |  |  |  133|      0|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|      0|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|      0|	do {                                                            \
  |  |  |  |  |  |  110|      0|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|      0|		} else {                                                \
  |  |  |  |  |  |  113|      0|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|      0|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|      0|		}                                                       \
  |  |  |  |  |  |  116|      0|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|      0|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|      0|		} else {                                                \
  |  |  |  |  |  |  119|      0|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|      0|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|      0|		}                                                       \
  |  |  |  |  |  |  122|      0|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|      0|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|      0|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|      0|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|      0|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|      0|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  359|      0|		dns_rdatalist_init(rdatalist);
  360|      0|		goto out;
  361|      0|	}
  362|       |
  363|   422k|	msgblock = ISC_LIST_TAIL(msg->rdatalists);
  ------------------
  |  |   63|   422k|#define ISC_LIST_TAIL(list)  ((list).tail)
  ------------------
  364|   422k|	rdatalist = msgblock_get(msgblock, dns_rdatalist_t);
  ------------------
  |  |  190|   422k|	((type *)msgblock_internalget(block, sizeof(type)))
  ------------------
  365|   422k|	if (rdatalist == NULL) {
  ------------------
  |  Branch (365:6): [True: 66.0k, False: 356k]
  ------------------
  366|  66.0k|		msgblock = msgblock_allocate(msg->mctx, sizeof(dns_rdatalist_t),
  367|  66.0k|					     RDATALIST_COUNT);
  ------------------
  |  |  128|  66.0k|#define RDATALIST_COUNT	   8
  ------------------
  368|  66.0k|		ISC_LIST_APPEND(msg->rdatalists, msgblock, link);
  ------------------
  |  |  100|  66.0k|	do {                                                  \
  |  |  101|  66.0k|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |  102|  66.0k|		__ISC_LIST_APPENDUNSAFE(list, elt, link);     \
  |  |  ------------------
  |  |  |  |   88|  66.0k|	do {                                            \
  |  |  |  |   89|  66.0k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 46.1k, False: 19.9k]
  |  |  |  |  ------------------
  |  |  |  |   90|  46.1k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  46.1k|		} else {                                \
  |  |  |  |   92|  19.9k|			(list).head = (elt);            \
  |  |  |  |   93|  19.9k|		}                                       \
  |  |  |  |   94|  66.0k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  66.0k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  66.0k|		(list).tail = (elt);                    \
  |  |  |  |   97|  66.0k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 66.0k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  103|  66.0k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (103:11): [Folded, False: 66.0k]
  |  |  ------------------
  ------------------
  369|       |
  370|  66.0k|		rdatalist = msgblock_get(msgblock, dns_rdatalist_t);
  ------------------
  |  |  190|  66.0k|	((type *)msgblock_internalget(block, sizeof(type)))
  ------------------
  371|  66.0k|	}
  372|   422k|out:
  373|   422k|	dns_rdatalist_init(rdatalist);
  374|   422k|	return rdatalist;
  375|   422k|}
message.c:dns__message_putassociatedrdataset:
 2482|   422k|dns__message_putassociatedrdataset(dns_message_t *msg, dns_rdataset_t **item) {
 2483|   422k|	dns_rdataset_disassociate(*item);
  ------------------
  |  |  306|   422k|	dns__rdataset_disassociate(rdataset DNS__DB_FILELINE)
  ------------------
 2484|   422k|	dns_message_puttemprdataset(msg, item);
 2485|   422k|}
message.c:msgresetopt:
  471|  21.9k|msgresetopt(dns_message_t *msg) {
  472|  21.9k|	if (msg->opt != NULL) {
  ------------------
  |  Branch (472:6): [True: 4.25k, False: 17.6k]
  ------------------
  473|  4.25k|		if (msg->opt_reserved > 0) {
  ------------------
  |  Branch (473:7): [True: 0, False: 4.25k]
  ------------------
  474|      0|			dns_message_renderrelease(msg, msg->opt_reserved);
  475|      0|			msg->opt_reserved = 0;
  476|      0|		}
  477|  4.25k|		dns__message_putassociatedrdataset(msg, &msg->opt);
  478|       |		msg->opt = NULL;
  479|  4.25k|		msg->cc_ok = 0;
  480|  4.25k|		msg->cc_bad = 0;
  481|  4.25k|	}
  482|  21.9k|}
message.c:msgresetsigs:
  485|  21.9k|msgresetsigs(dns_message_t *msg, bool replying) {
  486|  21.9k|	if (msg->sig_reserved > 0) {
  ------------------
  |  Branch (486:6): [True: 0, False: 21.9k]
  ------------------
  487|      0|		dns_message_renderrelease(msg, msg->sig_reserved);
  488|      0|		msg->sig_reserved = 0;
  489|      0|	}
  490|  21.9k|	if (msg->tsig != NULL) {
  ------------------
  |  Branch (490:6): [True: 41, False: 21.9k]
  ------------------
  491|     41|		INSIST(dns_rdataset_isassociated(msg->tsig));
  ------------------
  |  |  202|     41|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|     41|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 41, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|     41|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  492|     41|		INSIST(msg->namepool != NULL);
  ------------------
  |  |  202|     41|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|     41|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 41, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|     41|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  493|     41|		if (replying) {
  ------------------
  |  Branch (493:7): [True: 0, False: 41]
  ------------------
  494|      0|			INSIST(msg->querytsig == NULL);
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  495|      0|			msg->querytsig = msg->tsig;
  496|     41|		} else {
  497|     41|			dns__message_putassociatedrdataset(msg, &msg->tsig);
  498|     41|			if (msg->querytsig != NULL) {
  ------------------
  |  Branch (498:8): [True: 0, False: 41]
  ------------------
  499|      0|				dns__message_putassociatedrdataset(
  500|      0|					msg, &msg->querytsig);
  501|      0|			}
  502|     41|		}
  503|     41|		dns_message_puttempname(msg, &msg->tsigname);
  504|     41|		msg->tsig = NULL;
  505|  21.9k|	} else if (msg->querytsig != NULL && !replying) {
  ------------------
  |  Branch (505:13): [True: 0, False: 21.9k]
  |  Branch (505:39): [True: 0, False: 0]
  ------------------
  506|      0|		dns__message_putassociatedrdataset(msg, &msg->querytsig);
  507|      0|		msg->querytsig = NULL;
  508|      0|	}
  509|  21.9k|	if (msg->sig0 != NULL) {
  ------------------
  |  Branch (509:6): [True: 63, False: 21.8k]
  ------------------
  510|     63|		dns__message_putassociatedrdataset(msg, &msg->sig0);
  511|     63|		msg->sig0 = NULL;
  512|     63|	}
  513|  21.9k|	if (msg->sig0name != NULL) {
  ------------------
  |  Branch (513:6): [True: 63, False: 21.8k]
  ------------------
  514|     63|		dns_message_puttempname(msg, &msg->sig0name);
  515|     63|	}
  516|  21.9k|}
message.c:msginitprivate:
  387|  21.9k|msginitprivate(dns_message_t *m) {
  388|  21.9k|	unsigned int i;
  389|       |
  390|   109k|	for (i = 0; i < DNS_SECTION_MAX; i++) {
  ------------------
  |  Branch (390:14): [True: 87.8k, False: 21.9k]
  ------------------
  391|  87.8k|		m->cursors[i] = NULL;
  392|  87.8k|		m->counts[i] = 0;
  393|  87.8k|	}
  394|  21.9k|	m->opt = NULL;
  395|  21.9k|	m->sig0 = NULL;
  396|  21.9k|	m->sig0name = NULL;
  397|  21.9k|	m->tsig = NULL;
  398|  21.9k|	m->tsigname = NULL;
  399|  21.9k|	m->state = DNS_SECTION_ANY; /* indicate nothing parsed or rendered */
  400|  21.9k|	m->opt_reserved = 0;
  401|  21.9k|	m->sig_reserved = 0;
  402|  21.9k|	m->reserved = 0;
  403|  21.9k|	m->padding = 0;
  404|  21.9k|	m->padding_off = 0;
  405|       |	m->buffer = NULL;
  406|  21.9k|}
message.c:render_llq:
 3366|  3.30k|	   const dns_master_style_t *style, isc_buffer_t *target) {
 3367|  3.30k|	char buf[sizeof("18446744073709551615")]; /* 2^64-1 */
 3368|  3.30k|	isc_result_t result = ISC_R_SUCCESS;
 3369|  3.30k|	uint32_t u;
 3370|  3.30k|	uint64_t q;
 3371|  3.30k|	const char *sep1 = " ", *sep2 = ", ";
 3372|  3.30k|	size_t count = msg->indent.count;
 3373|  3.30k|	bool yaml = false;
 3374|       |
 3375|  3.30k|	if ((dns_master_styleflags(style) & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|  3.30k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (3375:6): [True: 0, False: 3.30k]
  ------------------
 3376|      0|		sep1 = sep2 = "\n";
 3377|      0|		msg->indent.count++;
 3378|      0|		yaml = true;
 3379|      0|	}
 3380|       |
 3381|  3.30k|	u = isc_buffer_getuint16(optbuf);
 3382|  3.30k|	ADD_STRING(target, sep1);
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3383|  3.30k|	INDENT(style);
  ------------------
  |  | 3191|  3.30k|	do {                                                                 \
  |  | 3192|  3.30k|		unsigned int __i;                                            \
  |  | 3193|  3.30k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  3.30k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  3.30k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 3.30k, False: 0]
  |  |  ------------------
  |  | 3195|  3.30k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  3.30k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 3.30k, False: 0]
  |  |  ------------------
  |  | 3196|  3.30k|		{                                                            \
  |  | 3197|  3.30k|			break;                                               \
  |  | 3198|  3.30k|		}                                                            \
  |  | 3199|  3.30k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3384|  3.30k|	if (yaml) {
  ------------------
  |  Branch (3384:6): [True: 0, False: 3.30k]
  ------------------
 3385|      0|		ADD_STRING(target, "LLQ-VERSION: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3386|  3.30k|	} else {
 3387|  3.30k|		ADD_STRING(target, "Version: ");
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3388|  3.30k|	}
 3389|  3.30k|	snprintf(buf, sizeof(buf), "%u", u);
 3390|  3.30k|	ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3391|       |
 3392|  3.30k|	u = isc_buffer_getuint16(optbuf);
 3393|  3.30k|	ADD_STRING(target, sep2);
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3394|  3.30k|	INDENT(style);
  ------------------
  |  | 3191|  3.30k|	do {                                                                 \
  |  | 3192|  3.30k|		unsigned int __i;                                            \
  |  | 3193|  3.30k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  3.30k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  3.30k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 3.30k, False: 0]
  |  |  ------------------
  |  | 3195|  3.30k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  3.30k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 3.30k, False: 0]
  |  |  ------------------
  |  | 3196|  3.30k|		{                                                            \
  |  | 3197|  3.30k|			break;                                               \
  |  | 3198|  3.30k|		}                                                            \
  |  | 3199|  3.30k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3395|  3.30k|	if (yaml) {
  ------------------
  |  Branch (3395:6): [True: 0, False: 3.30k]
  ------------------
 3396|      0|		ADD_STRING(target, "LLQ-OPCODE: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3397|  3.30k|	} else {
 3398|  3.30k|		ADD_STRING(target, "Opcode: ");
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 1, False: 3.30k]
  |  |  ------------------
  |  |   99|      1|			result = ISC_R_NOSPACE;                   \
  |  |  100|      1|			goto cleanup;                             \
  |  |  101|      1|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3399|  3.30k|	}
 3400|  3.30k|	snprintf(buf, sizeof(buf), "%u", u);
 3401|  3.30k|	ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3402|       |
 3403|  3.30k|	u = isc_buffer_getuint16(optbuf);
 3404|  3.30k|	ADD_STRING(target, sep2);
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3405|  3.30k|	INDENT(style);
  ------------------
  |  | 3191|  3.30k|	do {                                                                 \
  |  | 3192|  3.30k|		unsigned int __i;                                            \
  |  | 3193|  3.30k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  3.30k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  3.30k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 3.30k, False: 0]
  |  |  ------------------
  |  | 3195|  3.30k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  3.30k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 3.30k, False: 0]
  |  |  ------------------
  |  | 3196|  3.30k|		{                                                            \
  |  | 3197|  3.30k|			break;                                               \
  |  | 3198|  3.30k|		}                                                            \
  |  | 3199|  3.30k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3406|  3.30k|	if (yaml) {
  ------------------
  |  Branch (3406:6): [True: 0, False: 3.30k]
  ------------------
 3407|      0|		ADD_STRING(target, "LLQ-ERROR: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3408|  3.30k|	} else {
 3409|  3.30k|		ADD_STRING(target, "Error: ");
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3410|  3.30k|	}
 3411|  3.30k|	snprintf(buf, sizeof(buf), "%u", u);
 3412|  3.30k|	ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3413|       |
 3414|  3.30k|	q = isc_buffer_getuint32(optbuf);
 3415|  3.30k|	q <<= 32;
 3416|  3.30k|	q |= isc_buffer_getuint32(optbuf);
 3417|  3.30k|	ADD_STRING(target, sep2);
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3418|  3.30k|	INDENT(style);
  ------------------
  |  | 3191|  3.30k|	do {                                                                 \
  |  | 3192|  3.30k|		unsigned int __i;                                            \
  |  | 3193|  3.30k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  3.30k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  3.30k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 3.30k, False: 0]
  |  |  ------------------
  |  | 3195|  3.30k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  3.30k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 3.30k, False: 0]
  |  |  ------------------
  |  | 3196|  3.30k|		{                                                            \
  |  | 3197|  3.30k|			break;                                               \
  |  | 3198|  3.30k|		}                                                            \
  |  | 3199|  3.30k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3419|  3.30k|	if (yaml) {
  ------------------
  |  Branch (3419:6): [True: 0, False: 3.30k]
  ------------------
 3420|      0|		ADD_STRING(target, "LLQ-ID: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3421|  3.30k|	} else {
 3422|  3.30k|		ADD_STRING(target, "Identifier: ");
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3423|  3.30k|	}
 3424|  3.30k|	snprintf(buf, sizeof(buf), "%" PRIu64, q);
 3425|  3.30k|	ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3426|       |
 3427|  3.30k|	u = isc_buffer_getuint32(optbuf);
 3428|  3.30k|	ADD_STRING(target, sep2);
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3429|  3.30k|	INDENT(style);
  ------------------
  |  | 3191|  3.30k|	do {                                                                 \
  |  | 3192|  3.30k|		unsigned int __i;                                            \
  |  | 3193|  3.30k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  3.30k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  3.30k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 3.30k, False: 0]
  |  |  ------------------
  |  | 3195|  3.30k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  3.30k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 3.30k, False: 0]
  |  |  ------------------
  |  | 3196|  3.30k|		{                                                            \
  |  | 3197|  3.30k|			break;                                               \
  |  | 3198|  3.30k|		}                                                            \
  |  | 3199|  3.30k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3430|  3.30k|	if (yaml) {
  ------------------
  |  Branch (3430:6): [True: 0, False: 3.30k]
  ------------------
 3431|      0|		ADD_STRING(target, "LLQ-LEASE: ");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3432|  3.30k|	} else {
 3433|  3.30k|		ADD_STRING(target, "Lifetime: ");
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3434|  3.30k|	}
 3435|  3.30k|	snprintf(buf, sizeof(buf), "%u", u);
 3436|  3.30k|	ADD_STRING(target, buf);
  ------------------
  |  |   97|  3.30k|	{                                                         \
  |  |   98|  3.30k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  3.30k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 3.30k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  3.30k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  3.30k|	}
  ------------------
 3437|       |
 3438|  3.30k|cleanup:
 3439|  3.30k|	msg->indent.count = count;
 3440|  3.30k|	return result;
 3441|  3.30k|}
message.c:render_ecs:
 3299|  12.1k|render_ecs(isc_buffer_t *ecsbuf, isc_buffer_t *target) {
 3300|  12.1k|	int i;
 3301|  12.1k|	char addr[16] = { 0 }, addr_text[64];
 3302|  12.1k|	uint16_t family;
 3303|  12.1k|	uint8_t addrlen, addrbytes, scopelen;
 3304|  12.1k|	isc_result_t result;
 3305|       |
 3306|       |	/*
 3307|       |	 * Note: This routine needs to handle malformed ECS options.
 3308|       |	 */
 3309|       |
 3310|  12.1k|	if (isc_buffer_remaininglength(ecsbuf) < 4) {
  ------------------
  |  |  159|  12.1k|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
  |  Branch (3310:6): [True: 0, False: 12.1k]
  ------------------
 3311|      0|		return DNS_R_OPTERR;
 3312|      0|	}
 3313|  12.1k|	family = isc_buffer_getuint16(ecsbuf);
 3314|  12.1k|	addrlen = isc_buffer_getuint8(ecsbuf);
 3315|  12.1k|	scopelen = isc_buffer_getuint8(ecsbuf);
 3316|       |
 3317|  12.1k|	addrbytes = (addrlen + 7) / 8;
 3318|  12.1k|	if (isc_buffer_remaininglength(ecsbuf) < addrbytes) {
  ------------------
  |  |  159|  12.1k|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
  |  Branch (3318:6): [True: 0, False: 12.1k]
  ------------------
 3319|      0|		return DNS_R_OPTERR;
 3320|      0|	}
 3321|       |
 3322|  12.1k|	if (addrbytes > sizeof(addr)) {
  ------------------
  |  Branch (3322:6): [True: 0, False: 12.1k]
  ------------------
 3323|      0|		return DNS_R_OPTERR;
 3324|      0|	}
 3325|       |
 3326|  21.3k|	for (i = 0; i < addrbytes; i++) {
  ------------------
  |  Branch (3326:14): [True: 9.24k, False: 12.1k]
  ------------------
 3327|  9.24k|		addr[i] = isc_buffer_getuint8(ecsbuf);
 3328|  9.24k|	}
 3329|       |
 3330|  12.1k|	switch (family) {
 3331|  4.58k|	case 0:
  ------------------
  |  Branch (3331:2): [True: 4.58k, False: 7.55k]
  ------------------
 3332|  4.58k|		if (addrlen != 0U || scopelen != 0U) {
  ------------------
  |  Branch (3332:7): [True: 0, False: 4.58k]
  |  Branch (3332:24): [True: 0, False: 4.58k]
  ------------------
 3333|      0|			return DNS_R_OPTERR;
 3334|      0|		}
 3335|  4.58k|		strlcpy(addr_text, "0", sizeof(addr_text));
 3336|  4.58k|		break;
 3337|  2.20k|	case 1:
  ------------------
  |  Branch (3337:2): [True: 2.20k, False: 9.94k]
  ------------------
 3338|  2.20k|		if (addrlen > 32 || scopelen > 32) {
  ------------------
  |  Branch (3338:7): [True: 0, False: 2.20k]
  |  Branch (3338:23): [True: 0, False: 2.20k]
  ------------------
 3339|      0|			return DNS_R_OPTERR;
 3340|      0|		}
 3341|  2.20k|		inet_ntop(AF_INET, addr, addr_text, sizeof(addr_text));
 3342|  2.20k|		break;
 3343|  5.35k|	case 2:
  ------------------
  |  Branch (3343:2): [True: 5.35k, False: 6.79k]
  ------------------
 3344|  5.35k|		if (addrlen > 128 || scopelen > 128) {
  ------------------
  |  Branch (3344:7): [True: 0, False: 5.35k]
  |  Branch (3344:24): [True: 0, False: 5.35k]
  ------------------
 3345|      0|			return DNS_R_OPTERR;
 3346|      0|		}
 3347|  5.35k|		inet_ntop(AF_INET6, addr, addr_text, sizeof(addr_text));
 3348|  5.35k|		break;
 3349|      0|	default:
  ------------------
  |  Branch (3349:2): [True: 0, False: 12.1k]
  ------------------
 3350|      0|		return DNS_R_OPTERR;
 3351|  12.1k|	}
 3352|       |
 3353|  12.1k|	ADD_STRING(target, " ");
  ------------------
  |  |   97|  12.1k|	{                                                         \
  |  |   98|  12.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  12.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  12.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  12.1k|	}
  ------------------
 3354|  12.1k|	ADD_STRING(target, addr_text);
  ------------------
  |  |   97|  12.1k|	{                                                         \
  |  |   98|  12.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  12.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  12.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  12.1k|	}
  ------------------
 3355|  12.1k|	snprintf(addr_text, sizeof(addr_text), "/%d/%d", addrlen, scopelen);
 3356|  12.1k|	ADD_STRING(target, addr_text);
  ------------------
  |  |   97|  12.1k|	{                                                         \
  |  |   98|  12.1k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  12.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  12.1k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  12.1k|	}
  ------------------
 3357|       |
 3358|  12.1k|	result = ISC_R_SUCCESS;
 3359|       |
 3360|  12.1k|cleanup:
 3361|  12.1k|	return result;
 3362|  12.1k|}
message.c:render_nameopt:
 3466|  2.73k|render_nameopt(isc_buffer_t *optbuf, bool yaml, isc_buffer_t *target) {
 3467|  2.73k|	dns_decompress_t dctx = DNS_DECOMPRESS_NEVER;
 3468|  2.73k|	dns_fixedname_t fixed;
 3469|  2.73k|	dns_name_t *name = dns_fixedname_initname(&fixed);
 3470|  2.73k|	char namebuf[DNS_NAME_FORMATSIZE];
 3471|  2.73k|	isc_result_t result;
 3472|       |
 3473|  2.73k|	result = dns_name_fromwire(name, optbuf, dctx, NULL);
 3474|  2.73k|	if (result == ISC_R_SUCCESS && isc_buffer_activelength(optbuf) == 0) {
  ------------------
  |  |  160|  2.11k|#define isc_buffer_activelength(b)    ((b)->active - (b)->current) /* c-b */
  ------------------
  |  Branch (3474:6): [True: 2.11k, False: 621]
  |  Branch (3474:33): [True: 1.73k, False: 379]
  ------------------
 3475|  1.73k|		dns_name_format(name, namebuf, sizeof(namebuf));
 3476|  1.73k|		ADD_STRING(target, " \"");
  ------------------
  |  |   97|  1.73k|	{                                                         \
  |  |   98|  1.73k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.73k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.73k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.73k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.73k|	}
  ------------------
 3477|  1.73k|		if (yaml) {
  ------------------
  |  Branch (3477:7): [True: 0, False: 1.73k]
  ------------------
 3478|      0|			PUT_YAMLSTR(target, (unsigned char *)namebuf,
  ------------------
  |  |  105|      0|	{                                                          \
  |  |  106|      0|		result = put_yamlstr(target, namebuf, len, utfok); \
  |  |  107|      0|		if (result != ISC_R_SUCCESS) {                     \
  |  |  ------------------
  |  |  |  Branch (107:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  108|      0|			goto cleanup;                              \
  |  |  109|      0|		}                                                  \
  |  |  110|      0|	}
  ------------------
 3479|      0|				    strlen(namebuf), false);
 3480|  1.73k|		} else {
 3481|  1.73k|			ADD_STRING(target, namebuf);
  ------------------
  |  |   97|  1.73k|	{                                                         \
  |  |   98|  1.73k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.73k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.73k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.73k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.73k|	}
  ------------------
 3482|  1.73k|		}
 3483|  1.73k|		ADD_STRING(target, "\"");
  ------------------
  |  |   97|  1.73k|	{                                                         \
  |  |   98|  1.73k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  1.73k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 1.73k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  1.73k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  1.73k|	}
  ------------------
 3484|  1.73k|		return result;
 3485|  1.73k|	}
 3486|  1.00k|	result = ISC_R_FAILURE;
 3487|  1.00k|cleanup:
 3488|  1.00k|	return result;
 3489|  1.00k|}
message.c:render_zoneversion:
 3514|  31.8k|		   const dns_master_style_t *style, isc_buffer_t *target) {
 3515|  31.8k|	isc_result_t result = ISC_R_SUCCESS;
 3516|  31.8k|	unsigned int labels = isc_buffer_getuint8(optbuf);
 3517|  31.8k|	unsigned int type = isc_buffer_getuint8(optbuf);
 3518|  31.8k|	char buf[sizeof("4000000000")];
 3519|  31.8k|	char namebuf[DNS_NAME_FORMATSIZE];
 3520|  31.8k|	dns_name_t *name = ISC_LIST_HEAD(msg->sections[DNS_SECTION_QUESTION]);
  ------------------
  |  |   62|  31.8k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 3521|  31.8k|	dns_name_t suffix = DNS_NAME_INITEMPTY;
  ------------------
  |  |  183|  31.8k|	{ .magic = DNS_NAME_MAGIC,      \
  |  |  ------------------
  |  |  |  |  121|  31.8k|#define DNS_NAME_MAGIC	  ISC_MAGIC('D', 'N', 'S', 'n')
  |  |  |  |  ------------------
  |  |  |  |  |  |   31|  31.8k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  184|  31.8k|	  .link = ISC_LINK_INITIALIZER, \
  |  |  ------------------
  |  |  |  |   30|  31.8k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|  31.8k|	{                                         \
  |  |  |  |  |  |   27|  31.8k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  31.8k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   28|  31.8k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  31.8k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   29|  31.8k|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  185|  31.8k|	  .list = ISC_LIST_INITIALIZER }
  |  |  ------------------
  |  |  |  |   21|  31.8k|	{                     \
  |  |  |  |   22|  31.8k|		.head = NULL, \
  |  |  |  |   23|  31.8k|		.tail = NULL, \
  |  |  |  |   24|  31.8k|	}
  |  |  ------------------
  ------------------
 3522|  31.8k|	bool yaml = false, rawmode = false;
 3523|  31.8k|	const char *sep1 = " ", *sep2 = ", ";
 3524|       |
 3525|  31.8k|	if ((dns_master_styleflags(style) & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|  31.8k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (3525:6): [True: 0, False: 31.8k]
  ------------------
 3526|      0|		msg->indent.count++;
 3527|      0|		sep1 = sep2 = "\n";
 3528|      0|		yaml = true;
 3529|      0|	}
 3530|       |
 3531|  31.8k|	ADD_STRING(target, sep1);
  ------------------
  |  |   97|  31.8k|	{                                                         \
  |  |   98|  31.8k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  31.8k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 31.8k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  31.8k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  31.8k|	}
  ------------------
 3532|       |
 3533|  31.8k|	if (msg->counts[DNS_SECTION_QUESTION] != 1 || name == NULL ||
  ------------------
  |  Branch (3533:6): [True: 28.9k, False: 2.94k]
  |  Branch (3533:48): [True: 0, False: 2.94k]
  ------------------
 3534|  2.94k|	    dns_name_countlabels(name) < labels + 1)
  ------------------
  |  Branch (3534:6): [True: 2.17k, False: 762]
  ------------------
 3535|  31.0k|	{
 3536|  31.0k|		rawmode = true;
 3537|  31.0k|		INDENT(style);
  ------------------
  |  | 3191|  31.0k|	do {                                                                 \
  |  | 3192|  31.0k|		unsigned int __i;                                            \
  |  | 3193|  31.0k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  31.0k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  31.0k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 31.0k, False: 0]
  |  |  ------------------
  |  | 3195|  31.0k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  31.0k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 31.0k, False: 0]
  |  |  ------------------
  |  | 3196|  31.0k|		{                                                            \
  |  | 3197|  31.0k|			break;                                               \
  |  | 3198|  31.0k|		}                                                            \
  |  | 3199|  31.0k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3538|  31.0k|		ADD_STRING(target, "LABELS: ");
  ------------------
  |  |   97|  31.0k|	{                                                         \
  |  |   98|  31.0k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  31.0k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 31.0k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  31.0k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  31.0k|	}
  ------------------
 3539|  31.0k|		snprintf(buf, sizeof(buf), "%u", labels);
 3540|  31.0k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  31.0k|	{                                                         \
  |  |   98|  31.0k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  31.0k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 31.0k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  31.0k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  31.0k|	}
  ------------------
 3541|  31.0k|	} else {
 3542|    762|		dns_name_split(name, labels + 1, NULL, &suffix);
 3543|    762|		dns_name_format(&suffix, namebuf, sizeof(namebuf));
 3544|       |
 3545|    762|		INDENT(style);
  ------------------
  |  | 3191|    762|	do {                                                                 \
  |  | 3192|    762|		unsigned int __i;                                            \
  |  | 3193|    762|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|    762|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|    762|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 762, False: 0]
  |  |  ------------------
  |  | 3195|    762|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|    762|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 762, False: 0]
  |  |  ------------------
  |  | 3196|    762|		{                                                            \
  |  | 3197|    762|			break;                                               \
  |  | 3198|    762|		}                                                            \
  |  | 3199|    762|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3546|    762|		ADD_STRING(target, "ZONE: ");
  ------------------
  |  |   97|    762|	{                                                         \
  |  |   98|    762|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|    762|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 762]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|    762|			isc_buffer_putstr(b, s);                  \
  |  |  103|    762|	}
  ------------------
 3547|    762|		if (yaml) {
  ------------------
  |  Branch (3547:7): [True: 0, False: 762]
  ------------------
 3548|      0|			ADD_STRING(target, "\"");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3549|      0|			PUT_YAMLSTR(target, (unsigned char *)namebuf,
  ------------------
  |  |  105|      0|	{                                                          \
  |  |  106|      0|		result = put_yamlstr(target, namebuf, len, utfok); \
  |  |  107|      0|		if (result != ISC_R_SUCCESS) {                     \
  |  |  ------------------
  |  |  |  Branch (107:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  108|      0|			goto cleanup;                              \
  |  |  109|      0|		}                                                  \
  |  |  110|      0|	}
  ------------------
 3550|      0|				    strlen(namebuf), false);
 3551|      0|			ADD_STRING(target, "\"");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3552|    762|		} else {
 3553|    762|			ADD_STRING(target, namebuf);
  ------------------
  |  |   97|    762|	{                                                         \
  |  |   98|    762|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|    762|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 762]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|    762|			isc_buffer_putstr(b, s);                  \
  |  |  103|    762|	}
  ------------------
 3554|    762|		}
 3555|    762|	}
 3556|  31.8k|	ADD_STRING(target, sep2);
  ------------------
  |  |   97|  31.8k|	{                                                         \
  |  |   98|  31.8k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  31.8k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 31.8k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  31.8k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  31.8k|	}
  ------------------
 3557|       |
 3558|  31.8k|	if (!rawmode && type == 0 && isc_buffer_remaininglength(optbuf) == 4) {
  ------------------
  |  |  159|    321|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
  |  Branch (3558:6): [True: 762, False: 31.0k]
  |  Branch (3558:18): [True: 321, False: 441]
  |  Branch (3558:31): [True: 92, False: 229]
  ------------------
 3559|     92|		uint32_t serial = isc_buffer_getuint32(optbuf);
 3560|     92|		INDENT(style);
  ------------------
  |  | 3191|     92|	do {                                                                 \
  |  | 3192|     92|		unsigned int __i;                                            \
  |  | 3193|     92|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|     92|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|     92|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 92, False: 0]
  |  |  ------------------
  |  | 3195|     92|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|     92|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 92, False: 0]
  |  |  ------------------
  |  | 3196|     92|		{                                                            \
  |  | 3197|     92|			break;                                               \
  |  | 3198|     92|		}                                                            \
  |  | 3199|     92|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3561|     92|		ADD_STRING(target, "SOA-SERIAL: ");
  ------------------
  |  |   97|     92|	{                                                         \
  |  |   98|     92|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     92|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 92]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     92|			isc_buffer_putstr(b, s);                  \
  |  |  103|     92|	}
  ------------------
 3562|     92|		snprintf(buf, sizeof(buf), "%u", serial);
 3563|     92|		ADD_STRING(target, buf);
  ------------------
  |  |   97|     92|	{                                                         \
  |  |   98|     92|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|     92|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 92]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|     92|			isc_buffer_putstr(b, s);                  \
  |  |  103|     92|	}
  ------------------
 3564|  31.7k|	} else {
 3565|  31.7k|		size_t len = isc_buffer_remaininglength(optbuf);
  ------------------
  |  |  159|  31.7k|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
 3566|  31.7k|		unsigned char *data = isc_buffer_current(optbuf);
  ------------------
  |  |  145|  31.7k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
 3567|  31.7k|		INDENT(style);
  ------------------
  |  | 3191|  31.7k|	do {                                                                 \
  |  | 3192|  31.7k|		unsigned int __i;                                            \
  |  | 3193|  31.7k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  31.7k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  31.7k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 31.7k, False: 0]
  |  |  ------------------
  |  | 3195|  31.7k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  31.7k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 31.7k, False: 0]
  |  |  ------------------
  |  | 3196|  31.7k|		{                                                            \
  |  | 3197|  31.7k|			break;                                               \
  |  | 3198|  31.7k|		}                                                            \
  |  | 3199|  31.7k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3568|  31.7k|		ADD_STRING(target, "TYPE: ");
  ------------------
  |  |   97|  31.7k|	{                                                         \
  |  |   98|  31.7k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  31.7k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 31.7k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  31.7k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  31.7k|	}
  ------------------
 3569|  31.7k|		snprintf(buf, sizeof(buf), "%u", type);
 3570|  31.7k|		ADD_STRING(target, buf);
  ------------------
  |  |   97|  31.7k|	{                                                         \
  |  |   98|  31.7k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  31.7k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 31.7k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  31.7k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  31.7k|	}
  ------------------
 3571|  31.7k|		ADD_STRING(target, sep2);
  ------------------
  |  |   97|  31.7k|	{                                                         \
  |  |   98|  31.7k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  31.7k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 31.7k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  31.7k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  31.7k|	}
  ------------------
 3572|  31.7k|		INDENT(style);
  ------------------
  |  | 3191|  31.7k|	do {                                                                 \
  |  | 3192|  31.7k|		unsigned int __i;                                            \
  |  | 3193|  31.7k|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|  31.7k|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|  31.7k|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 31.7k, False: 0]
  |  |  ------------------
  |  | 3195|  31.7k|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|  31.7k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 31.7k, False: 0]
  |  |  ------------------
  |  | 3196|  31.7k|		{                                                            \
  |  | 3197|  31.7k|			break;                                               \
  |  | 3198|  31.7k|		}                                                            \
  |  | 3199|  31.7k|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3573|  31.7k|		ADD_STRING(target, "VALUE: ");
  ------------------
  |  |   97|  31.7k|	{                                                         \
  |  |   98|  31.7k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  31.7k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 31.7k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  31.7k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  31.7k|	}
  ------------------
 3574|   276M|		for (size_t i = 0; i < len; i++) {
  ------------------
  |  Branch (3574:22): [True: 276M, False: 31.7k]
  ------------------
 3575|   276M|			snprintf(buf, sizeof(buf), "%02x", data[i]);
 3576|   276M|			ADD_STRING(target, buf);
  ------------------
  |  |   97|   276M|	{                                                         \
  |  |   98|   276M|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   276M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 276M]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   276M|			isc_buffer_putstr(b, s);                  \
  |  |  103|   276M|	}
  ------------------
 3577|   276M|		}
 3578|  31.7k|		if (yaml) {
  ------------------
  |  Branch (3578:7): [True: 0, False: 31.7k]
  ------------------
 3579|      0|			ADD_STRING(target, sep2);
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3580|      0|			INDENT(style);
  ------------------
  |  | 3191|      0|	do {                                                                 \
  |  | 3192|      0|		unsigned int __i;                                            \
  |  | 3193|      0|		dns_masterstyle_flags_t __flags = dns_master_styleflags(sp); \
  |  | 3194|      0|		if ((__flags & DNS_STYLEFLAG_INDENT) == 0ULL &&              \
  |  |  ------------------
  |  |  |  |  104|      0|#define DNS_STYLEFLAG_INDENT 0x040000000ULL
  |  |  ------------------
  |  |  |  Branch (3194:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3195|      0|		    (__flags & DNS_STYLEFLAG_YAML) == 0ULL)                  \
  |  |  ------------------
  |  |  |  |  107|      0|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  |  |  ------------------
  |  |  |  Branch (3195:7): [True: 0, False: 0]
  |  |  ------------------
  |  | 3196|      0|		{                                                            \
  |  | 3197|      0|			break;                                               \
  |  | 3198|      0|		}                                                            \
  |  | 3199|      0|		for (__i = 0; __i < msg->indent.count; __i++) {              \
  |  |  ------------------
  |  |  |  Branch (3199:17): [True: 0, False: 0]
  |  |  ------------------
  |  | 3200|      0|			ADD_STRING(target, msg->indent.string);              \
  |  |  ------------------
  |  |  |  |   97|      0|	{                                                         \
  |  |  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  |  |  ------------------
  |  |  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  |  |  100|      0|			goto cleanup;                             \
  |  |  |  |  101|      0|		} else                                            \
  |  |  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  |  |  103|      0|	}
  |  |  ------------------
  |  | 3201|      0|		}                                                            \
  |  | 3202|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (3202:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 3581|      0|			ADD_STRING(target, "PVALUE: \"");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3582|      0|			PUT_YAMLSTR(target, data, len, false);
  ------------------
  |  |  105|      0|	{                                                          \
  |  |  106|      0|		result = put_yamlstr(target, namebuf, len, utfok); \
  |  |  107|      0|		if (result != ISC_R_SUCCESS) {                     \
  |  |  ------------------
  |  |  |  Branch (107:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  108|      0|			goto cleanup;                              \
  |  |  109|      0|		}                                                  \
  |  |  110|      0|	}
  ------------------
 3583|      0|			ADD_STRING(target, "\"");
  ------------------
  |  |   97|      0|	{                                                         \
  |  |   98|      0|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 0]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|      0|			isc_buffer_putstr(b, s);                  \
  |  |  103|      0|	}
  ------------------
 3584|  31.7k|		} else {
 3585|  31.7k|			ADD_STRING(target, " (\"");
  ------------------
  |  |   97|  31.7k|	{                                                         \
  |  |   98|  31.7k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  31.7k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 31.7k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  31.7k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  31.7k|	}
  ------------------
 3586|   276M|			for (size_t i = 0; i < len; i++) {
  ------------------
  |  Branch (3586:23): [True: 276M, False: 31.7k]
  ------------------
 3587|   276M|				if (isprint(data[i])) {
  ------------------
  |  Branch (3587:9): [True: 21.2M, False: 255M]
  ------------------
 3588|  21.2M|					if (isc_buffer_availablelength(target) <
  ------------------
  |  |  161|  21.2M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (3588:10): [True: 0, False: 21.2M]
  ------------------
 3589|  21.2M|					    1)
 3590|      0|					{
 3591|      0|						CLEANUP(ISC_R_NOSPACE);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
 3592|      0|					}
 3593|  21.2M|					isc_buffer_putmem(target, &data[i], 1);
 3594|   255M|				} else {
 3595|   255M|					ADD_STRING(target, ".");
  ------------------
  |  |   97|   255M|	{                                                         \
  |  |   98|   255M|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|   255M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 255M]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|   255M|			isc_buffer_putstr(b, s);                  \
  |  |  103|   255M|	}
  ------------------
 3596|   255M|				}
 3597|   276M|			}
 3598|  31.7k|			ADD_STRING(target, "\")");
  ------------------
  |  |   97|  31.7k|	{                                                         \
  |  |   98|  31.7k|		if (strlen(s) >= isc_buffer_availablelength(b)) { \
  |  |  ------------------
  |  |  |  |  161|  31.7k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  |  |  ------------------
  |  |  |  Branch (98:7): [True: 0, False: 31.7k]
  |  |  ------------------
  |  |   99|      0|			result = ISC_R_NOSPACE;                   \
  |  |  100|      0|			goto cleanup;                             \
  |  |  101|      0|		} else                                            \
  |  |  102|  31.7k|			isc_buffer_putstr(b, s);                  \
  |  |  103|  31.7k|	}
  ------------------
 3599|  31.7k|		}
 3600|  31.7k|		isc_buffer_forward(optbuf, len);
 3601|  31.7k|	}
 3602|  31.8k|cleanup:
 3603|  31.8k|	return result;
 3604|  31.8k|}
message.c:msgresetedns:
  519|  21.9k|msgresetedns(dns_message_t *msg) {
  520|  21.9k|	if (msg->edns.opts != NULL) {
  ------------------
  |  Branch (520:6): [True: 0, False: 21.9k]
  ------------------
  521|      0|		INSIST(msg->edns.maxopts != 0);
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  522|      0|		for (size_t i = 0; i < msg->edns.count; i++) {
  ------------------
  |  Branch (522:22): [True: 0, False: 0]
  ------------------
  523|      0|			if (msg->edns.opts[i].value != NULL) {
  ------------------
  |  Branch (523:8): [True: 0, False: 0]
  ------------------
  524|      0|				isc_mem_put(msg->mctx, msg->edns.opts[i].value,
  ------------------
  |  |  148|      0|	do {                                                      \
  |  |  149|      0|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|      0|		(p) = NULL;                                       \
  |  |  151|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  525|      0|					    msg->edns.opts[i].length);
  526|      0|			}
  527|      0|		}
  528|       |		isc_mem_cput(msg->mctx, msg->edns.opts,
  ------------------
  |  |  153|      0|	do {                                                      \
  |  |  154|      0|		isc__mem_put((c), (p), ISC_CHECKED_MUL((n), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  155|      0|			     ISC__MEM_ZERO _ISC_MEM_FILELINE);    \
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  |  |  156|      0|		(p) = NULL;                                       \
  |  |  157|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (157:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  529|      0|			     (size_t)msg->edns.maxopts, sizeof(dns_ednsopt_t));
  530|      0|	}
  531|  21.9k|	msg->edns.maxopts = 0;
  532|  21.9k|	msg->edns.count = 0;
  533|  21.9k|}

dns_name_isabsolute:
  134|   266k|dns_name_isabsolute(const dns_name_t *name) {
  135|       |	/*
  136|       |	 * Does 'name' end in the root label?
  137|       |	 */
  138|       |
  139|   266k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   266k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   533k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 266k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 266k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   266k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  140|       |
  141|   266k|	return name->attributes.absolute;
  142|   266k|}
dns_name_hash:
  314|   255k|dns_name_hash(const dns_name_t *name) {
  315|   255k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   255k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   510k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 255k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 255k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   255k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  316|       |
  317|       |	return isc_hash32(name->ndata, name->length, false);
  318|   255k|}
dns_name_equal:
  437|   228k|dns_name_equal(const dns_name_t *name1, const dns_name_t *name2) {
  438|   228k|	unsigned int length;
  439|       |
  440|       |	/*
  441|       |	 * Are 'name1' and 'name2' equal?
  442|       |	 *
  443|       |	 * Note: It makes no sense for one of the names to be relative and the
  444|       |	 * other absolute.  If both names are relative, then to be meaningfully
  445|       |	 * compared the caller must ensure that they are both relative to the
  446|       |	 * same domain.
  447|       |	 */
  448|       |
  449|   228k|	REQUIRE(DNS_NAME_VALID(name1));
  ------------------
  |  |  198|   228k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   456k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 228k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 228k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   228k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  450|   228k|	REQUIRE(DNS_NAME_VALID(name2));
  ------------------
  |  |  198|   228k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   456k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 228k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 228k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   228k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  451|       |	/*
  452|       |	 * Either name1 is absolute and name2 is absolute, or neither is.
  453|       |	 */
  454|   228k|	REQUIRE((name1->attributes.absolute) == (name2->attributes.absolute));
  ------------------
  |  |  198|   228k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   228k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 228k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   228k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  455|       |
  456|   228k|	if (name1 == name2) {
  ------------------
  |  Branch (456:6): [True: 0, False: 228k]
  ------------------
  457|      0|		return true;
  458|      0|	}
  459|       |
  460|   228k|	length = name1->length;
  461|   228k|	if (length != name2->length) {
  ------------------
  |  Branch (461:6): [True: 643, False: 227k]
  ------------------
  462|    643|		return false;
  463|    643|	}
  464|       |
  465|       |	/* label lengths are < 64 so tolower() does not affect them */
  466|   227k|	return isc_ascii_lowerequal(name1->ndata, name2->ndata, length);
  467|   228k|}
dns_name_rdatacompare:
  499|  10.0k|dns_name_rdatacompare(const dns_name_t *name1, const dns_name_t *name2) {
  500|       |	/*
  501|       |	 * Compare two absolute names as rdata.
  502|       |	 */
  503|       |
  504|  10.0k|	REQUIRE(DNS_NAME_VALID(name1));
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  20.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 10.0k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  505|  10.0k|	REQUIRE(name1->length > 0);
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  10.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  506|  10.0k|	REQUIRE(name1->attributes.absolute);
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  10.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  507|  10.0k|	REQUIRE(DNS_NAME_VALID(name2));
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  20.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 10.0k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  508|  10.0k|	REQUIRE(name2->length > 0);
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  10.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  509|  10.0k|	REQUIRE(name2->attributes.absolute);
  ------------------
  |  |  198|  10.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  10.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  510|       |
  511|       |	/* label lengths are < 64 so tolower() does not affect them */
  512|  10.0k|	return isc_ascii_lowercmp(name1->ndata, name2->ndata,
  513|  10.0k|				  ISC_MIN(name1->length, name2->length));
  ------------------
  |  |   77|  10.0k|#define ISC_MIN(a, b) ((a) < (b) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (77:24): [True: 1.13k, False: 8.92k]
  |  |  ------------------
  ------------------
  514|  10.0k|}
dns_name_getlabel:
  565|  5.66k|dns_name_getlabel(const dns_name_t *name, unsigned int n, dns_label_t *label) {
  566|  5.66k|	dns_offsets_t offsets;
  567|       |
  568|       |	/*
  569|       |	 * Make 'label' refer to the 'n'th least significant label of 'name'.
  570|       |	 */
  571|       |
  572|  5.66k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  5.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  11.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 5.66k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 5.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  573|  5.66k|	REQUIRE(label != NULL);
  ------------------
  |  |  198|  5.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.66k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  574|       |
  575|  5.66k|	uint8_t labels = dns_name_offsets(name, offsets);
  576|       |
  577|  5.66k|	REQUIRE(labels > 0);
  ------------------
  |  |  198|  5.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.66k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  578|  5.66k|	REQUIRE(n < labels);
  ------------------
  |  |  198|  5.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.66k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  579|       |
  580|  5.66k|	label->base = &name->ndata[offsets[n]];
  581|  5.66k|	if (n == (unsigned int)labels - 1) {
  ------------------
  |  Branch (581:6): [True: 2.99k, False: 2.67k]
  ------------------
  582|  2.99k|		label->length = name->length - offsets[n];
  583|  2.99k|	} else {
  584|  2.67k|		label->length = offsets[n + 1] - offsets[n];
  585|  2.67k|	}
  586|  5.66k|}
dns_name_getlabelsequence:
  590|    762|			  unsigned int n, dns_name_t *target) {
  591|    762|	unsigned char *p, l;
  592|    762|	unsigned int firstoffset, endoffset;
  593|    762|	unsigned int i;
  594|       |
  595|       |	/*
  596|       |	 * Make 'target' refer to the 'n' labels including and following
  597|       |	 * 'first' in 'source'.
  598|       |	 */
  599|       |
  600|    762|	REQUIRE(DNS_NAME_VALID(source));
  ------------------
  |  |  198|    762|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    762|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  601|    762|	REQUIRE(DNS_NAME_VALID(target));
  ------------------
  |  |  198|    762|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    762|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  602|    762|	REQUIRE(DNS_NAME_BINDABLE(target));
  ------------------
  |  |  198|    762|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    762|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  603|       |
  604|    762|	uint8_t labels = dns_name_countlabels(source);
  605|    762|	REQUIRE(first <= labels && n <= labels - first);
  ------------------
  |  |  198|    762|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 762, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    762|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  606|       |
  607|    762|	p = source->ndata;
  608|    762|	if (first == labels) {
  ------------------
  |  Branch (608:6): [True: 0, False: 762]
  ------------------
  609|      0|		firstoffset = source->length;
  610|    762|	} else {
  611|  2.23k|		for (i = 0; i < first; i++) {
  ------------------
  |  Branch (611:15): [True: 1.46k, False: 762]
  ------------------
  612|  1.46k|			l = *p;
  613|  1.46k|			p += l + 1;
  614|  1.46k|		}
  615|    762|		firstoffset = (unsigned int)(p - source->ndata);
  616|    762|	}
  617|       |
  618|    762|	if (first + n == labels) {
  ------------------
  |  Branch (618:6): [True: 762, False: 0]
  ------------------
  619|    762|		endoffset = source->length;
  620|    762|	} else {
  621|      0|		for (i = 0; i < n; i++) {
  ------------------
  |  Branch (621:15): [True: 0, False: 0]
  ------------------
  622|      0|			l = *p;
  623|      0|			p += l + 1;
  624|      0|		}
  625|      0|		endoffset = (unsigned int)(p - source->ndata);
  626|      0|	}
  627|       |
  628|    762|	target->ndata = &source->ndata[firstoffset];
  629|    762|	target->length = endoffset - firstoffset;
  630|       |
  631|    762|	if (first + n == labels && n > 0 && source->attributes.absolute) {
  ------------------
  |  Branch (631:6): [True: 762, False: 0]
  |  Branch (631:29): [True: 762, False: 0]
  |  Branch (631:38): [True: 762, False: 0]
  ------------------
  632|    762|		target->attributes.absolute = true;
  633|    762|	} else {
  634|       |		target->attributes.absolute = false;
  635|      0|	}
  636|    762|}
dns_name_fromregion:
  656|   552k|dns_name_fromregion(dns_name_t *name, const isc_region_t *r) {
  657|   552k|	size_t length;
  658|   552k|	isc_region_t r2 = { .base = NULL, .length = 0 };
  659|       |
  660|       |	/*
  661|       |	 * Make 'name' refer to region 'r'.
  662|       |	 */
  663|       |
  664|   552k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   552k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.10M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 552k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 552k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   552k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  665|   552k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   552k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   552k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 552k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   552k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  666|   552k|	REQUIRE(DNS_NAME_BINDABLE(name));
  ------------------
  |  |  198|   552k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.10M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 552k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 552k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   552k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  667|       |
  668|   552k|	name->ndata = r->base;
  669|   552k|	if (name->buffer != NULL) {
  ------------------
  |  Branch (669:6): [True: 0, False: 552k]
  ------------------
  670|      0|		isc_buffer_clear(name->buffer);
  671|      0|		isc_buffer_availableregion(name->buffer, &r2);
  672|      0|		length = (r->length < r2.length) ? r->length : r2.length;
  ------------------
  |  Branch (672:12): [True: 0, False: 0]
  ------------------
  673|      0|		if (length > DNS_NAME_MAXWIRE) {
  ------------------
  |  |  190|      0|#define DNS_NAME_MAXWIRE   255
  ------------------
  |  Branch (673:7): [True: 0, False: 0]
  ------------------
  674|      0|			length = DNS_NAME_MAXWIRE;
  ------------------
  |  |  190|      0|#define DNS_NAME_MAXWIRE   255
  ------------------
  675|      0|		}
  676|   552k|	} else {
  677|   552k|		length = (r->length <= DNS_NAME_MAXWIRE) ? r->length
  ------------------
  |  |  190|   552k|#define DNS_NAME_MAXWIRE   255
  ------------------
  |  Branch (677:12): [True: 154k, False: 397k]
  ------------------
  678|   552k|							 : DNS_NAME_MAXWIRE;
  ------------------
  |  |  190|   950k|#define DNS_NAME_MAXWIRE   255
  ------------------
  679|   552k|	}
  680|       |
  681|   552k|	name->attributes.absolute = false;
  682|       |
  683|   552k|	if (length > 0) {
  ------------------
  |  Branch (683:6): [True: 552k, False: 0]
  ------------------
  684|   552k|		size_t offset = 0;
  685|   552k|		uint8_t nlabels = 0;
  686|  3.33M|		while (offset != length) {
  ------------------
  |  Branch (686:10): [True: 3.33M, False: 0]
  ------------------
  687|  3.33M|			uint8_t count;
  688|       |
  689|  3.33M|			INSIST(nlabels < DNS_NAME_MAXLABELS);
  ------------------
  |  |  202|  3.33M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  3.33M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 3.33M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.33M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  690|  3.33M|			nlabels++;
  691|       |
  692|  3.33M|			count = name->ndata[offset];
  693|  3.33M|			INSIST(count <= DNS_NAME_LABELLEN);
  ------------------
  |  |  202|  3.33M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  3.33M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 3.33M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.33M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  694|       |
  695|  3.33M|			offset += count + 1;
  696|  3.33M|			INSIST(offset <= length);
  ------------------
  |  |  202|  3.33M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  3.33M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 3.33M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.33M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  697|       |
  698|  3.33M|			if (count == 0) {
  ------------------
  |  Branch (698:8): [True: 552k, False: 2.78M]
  ------------------
  699|   552k|				name->attributes.absolute = true;
  700|   552k|				break;
  701|   552k|			}
  702|  3.33M|		}
  703|   552k|		name->length = offset;
  704|   552k|	}
  705|       |
  706|   552k|	if (name->buffer != NULL) {
  ------------------
  |  Branch (706:6): [True: 0, False: 552k]
  ------------------
  707|       |		/*
  708|       |		 * name->length has been updated by set_offsets to the actual
  709|       |		 * length of the name data so we can now copy the actual name
  710|       |		 * data and not anything after it.
  711|       |		 */
  712|      0|		if (name->length > 0) {
  ------------------
  |  Branch (712:7): [True: 0, False: 0]
  ------------------
  713|      0|			memmove(r2.base, r->base, name->length);
  714|      0|		}
  715|      0|		name->ndata = r2.base;
  716|      0|		isc_buffer_add(name->buffer, name->length);
  717|      0|	}
  718|   552k|}
dns_name_totext:
  976|   871k|		isc_buffer_t *target) {
  977|   871k|	isc_result_t result;
  978|   871k|	unsigned char *ndata = NULL;
  979|   871k|	unsigned int nlen;
  980|   871k|	unsigned int labels;
  981|   871k|	bool saw_root = false;
  982|   871k|	unsigned int oused;
  983|   871k|	bool omit_final_dot = ((options & DNS_NAME_OMITFINALDOT) != 0);
  ------------------
  |  |  883|   871k|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  984|   871k|	bool minimal = ((options & DNS_NAME_QUOTED) != 0);
  ------------------
  |  |  885|   871k|#define DNS_NAME_QUOTED	      0x04U /* minimal escaping within double quotes */
  ------------------
  985|   871k|	bool principal = ((options & DNS_NAME_PRINCIPAL) != 0);
  ------------------
  |  |  884|   871k|#define DNS_NAME_PRINCIPAL    0x02U /* do not escape $ and @ */
  ------------------
  986|   871k|	bool first = true;
  987|       |
  988|       |	/*
  989|       |	 * This function assumes the name is in proper uncompressed
  990|       |	 * wire format.
  991|       |	 */
  992|   871k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   871k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.74M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 871k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 871k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   871k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  993|   871k|	REQUIRE(ISC_BUFFER_VALID(target));
  ------------------
  |  |  198|   871k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.74M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 871k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 871k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   871k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  994|       |
  995|   871k|	oused = target->used;
  996|       |
  997|   871k|	ndata = name->ndata;
  998|   871k|	nlen = name->length;
  999|   871k|	labels = dns_name_countlabels(name);
 1000|       |
 1001|   871k|	if (labels == 0 && nlen == 0) {
  ------------------
  |  Branch (1001:6): [True: 0, False: 871k]
  |  Branch (1001:21): [True: 0, False: 0]
  ------------------
 1002|       |		/*
 1003|       |		 * Special handling for an empty name.
 1004|       |		 */
 1005|      0|		omit_final_dot = true;
 1006|      0|		CHECK(isc_buffer_reserve(target, 1));
  ------------------
  |  |  255|      0|	{                                      \
  |  |  256|      0|		result = (r);                  \
  |  |  257|      0|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|      0|	}
  ------------------
 1007|      0|		isc_buffer_putuint8(target, '@');
 1008|       |
 1009|       |		/*
 1010|       |		 * Skip the while() loop.
 1011|       |		 */
 1012|      0|		nlen = 0;
 1013|   871k|	} else if (nlen == 1 && labels == 1 && *ndata == '\0') {
  ------------------
  |  Branch (1013:13): [True: 372k, False: 498k]
  |  Branch (1013:26): [True: 372k, False: 0]
  |  Branch (1013:41): [True: 372k, False: 0]
  ------------------
 1014|       |		/*
 1015|       |		 * Special handling for the root label.
 1016|       |		 */
 1017|   372k|		saw_root = true;
 1018|   372k|		omit_final_dot = false;
 1019|       |
 1020|       |		/*
 1021|       |		 * Skip the while() loop.
 1022|       |		 */
 1023|   372k|		nlen = 0;
 1024|   372k|	}
 1025|       |
 1026|  5.72M|	while (labels > 0 && nlen > 0) {
  ------------------
  |  Branch (1026:9): [True: 5.72M, False: 0]
  |  Branch (1026:23): [True: 5.35M, False: 372k]
  ------------------
 1027|  5.35M|		unsigned int count = *ndata++;
 1028|  5.35M|		labels--;
 1029|  5.35M|		nlen--;
 1030|  5.35M|		if (count == 0) {
  ------------------
  |  Branch (1030:7): [True: 498k, False: 4.85M]
  ------------------
 1031|   498k|			saw_root = true;
 1032|   498k|			break;
 1033|  4.85M|		} else if (!first) {
  ------------------
  |  Branch (1033:14): [True: 4.35M, False: 498k]
  ------------------
 1034|  4.35M|			CHECK(isc_buffer_reserve(target, 1));
  ------------------
  |  |  255|  4.35M|	{                                      \
  |  |  256|  4.35M|		result = (r);                  \
  |  |  257|  4.35M|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 4.35M]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  4.35M|	}
  ------------------
 1035|  4.35M|			isc_buffer_putuint8(target, '.');
 1036|  4.35M|		}
 1037|  4.85M|		first = false;
 1038|       |
 1039|  4.85M|		if (count <= DNS_NAME_LABELLEN) {
  ------------------
  |  |  192|  4.85M|#define DNS_NAME_LABELLEN  63
  ------------------
  |  Branch (1039:7): [True: 4.85M, False: 0]
  ------------------
 1040|  4.85M|			unsigned char c;
 1041|       |
 1042|  4.85M|			INSIST(nlen >= count);
  ------------------
  |  |  202|  4.85M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  4.85M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 4.85M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  4.85M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1043|       |
 1044|  86.5M|			while (count > 0) {
  ------------------
  |  Branch (1044:11): [True: 81.6M, False: 4.85M]
  ------------------
 1045|  81.6M|				uint32_t value;
 1046|       |
 1047|  81.6M|				c = *ndata;
 1048|  81.6M|				switch (c) {
 1049|       |				/* Special modifiers in zone files. */
 1050|   454k|				case 0x40: /* '@' */
  ------------------
  |  Branch (1050:5): [True: 454k, False: 81.2M]
  ------------------
 1051|   984k|				case 0x24: /* '$' */
  ------------------
  |  Branch (1051:5): [True: 530k, False: 81.1M]
  ------------------
 1052|   984k|					if (principal) {
  ------------------
  |  Branch (1052:10): [True: 0, False: 984k]
  ------------------
 1053|      0|						goto no_escape;
 1054|      0|					}
 1055|   984k|					FALLTHROUGH;
  ------------------
  |  |  101|   984k|#define FALLTHROUGH [[fallthrough]]
  ------------------
 1056|  1.30M|				case 0x28: /* '(' */
  ------------------
  |  Branch (1056:5): [True: 320k, False: 81.3M]
  ------------------
 1057|  1.60M|				case 0x29: /* ')' */
  ------------------
  |  Branch (1057:5): [True: 294k, False: 81.3M]
  ------------------
 1058|  1.79M|				case 0x3B: /* ';' */
  ------------------
  |  Branch (1058:5): [True: 196k, False: 81.4M]
  ------------------
 1059|  1.79M|					if (minimal) {
  ------------------
  |  Branch (1059:10): [True: 0, False: 1.79M]
  ------------------
 1060|      0|						goto no_escape;
 1061|      0|					}
 1062|  1.79M|					FALLTHROUGH;
  ------------------
  |  |  101|  1.79M|#define FALLTHROUGH [[fallthrough]]
  ------------------
 1063|  1.98M|				case 0x22: /* '"' */
  ------------------
  |  Branch (1063:5): [True: 189k, False: 81.4M]
  ------------------
 1064|  2.29M|				case 0x2E: /* '.' */
  ------------------
  |  Branch (1064:5): [True: 304k, False: 81.3M]
  ------------------
 1065|  2.30M|				case 0x5C: /* '\\' */
  ------------------
  |  Branch (1065:5): [True: 14.8k, False: 81.6M]
  ------------------
 1066|  2.30M|					value = '\\' << 8 | c;
 1067|  2.30M|					CHECK(isc_buffer_reserve(target, 2));
  ------------------
  |  |  255|  2.30M|	{                                      \
  |  |  256|  2.30M|		result = (r);                  \
  |  |  257|  2.30M|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 2.30M]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|  2.30M|	}
  ------------------
 1068|  2.30M|					isc_buffer_putuint16(target, value);
 1069|  2.30M|					ndata++;
 1070|  2.30M|					nlen--;
 1071|  2.30M|					break;
 1072|      0|				no_escape:
 1073|  79.3M|				default:
  ------------------
  |  Branch (1073:5): [True: 79.3M, False: 2.30M]
  ------------------
 1074|  79.3M|					if ((c > 0x20 && c < 0x7f) ||
  ------------------
  |  Branch (1074:11): [True: 20.1M, False: 59.1M]
  |  Branch (1074:23): [True: 5.30M, False: 14.8M]
  ------------------
 1075|  74.0M|					    (c == 0x20 && minimal))
  ------------------
  |  Branch (1075:11): [True: 307k, False: 73.7M]
  |  Branch (1075:24): [True: 0, False: 307k]
  ------------------
 1076|  5.30M|					{
 1077|  5.30M|						CHECK(isc_buffer_reserve(target,
  ------------------
  |  |  255|  5.30M|	{                                      \
  |  |  256|  5.30M|		result = (r);                  \
  |  |  257|  5.30M|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 1, False: 5.30M]
  |  |  ------------------
  |  |  258|      1|			goto cleanup;          \
  |  |  259|      1|		}                              \
  |  |  260|  5.30M|	}
  ------------------
 1078|  5.30M|									 1));
 1079|  5.30M|						isc_buffer_putuint8(target, c);
 1080|  5.30M|						ndata++;
 1081|  5.30M|						nlen--;
 1082|  74.0M|					} else {
 1083|  74.0M|						value = 0x5c << 24;
 1084|  74.0M|						value |= (0x30 +
 1085|  74.0M|							  ((c / 100) % 10))
 1086|  74.0M|							 << 16;
 1087|  74.0M|						value |=
 1088|  74.0M|							(0x30 + ((c / 10) % 10))
 1089|  74.0M|							<< 8;
 1090|  74.0M|						value |= 0x30 + (c % 10);
 1091|  74.0M|						CHECK(isc_buffer_reserve(target,
  ------------------
  |  |  255|  74.0M|	{                                      \
  |  |  256|  74.0M|		result = (r);                  \
  |  |  257|  74.0M|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 5, False: 74.0M]
  |  |  ------------------
  |  |  258|      5|			goto cleanup;          \
  |  |  259|      5|		}                              \
  |  |  260|  74.0M|	}
  ------------------
 1092|  74.0M|									 4));
 1093|  74.0M|						isc_buffer_putuint32(target,
 1094|  74.0M|								     value);
 1095|  74.0M|						ndata++;
 1096|  74.0M|						nlen--;
 1097|  74.0M|					}
 1098|  81.6M|				}
 1099|  81.6M|				count--;
 1100|  81.6M|			}
 1101|  4.85M|		} else {
 1102|      0|			FATAL_ERROR("Unexpected label type %02x", count);
  ------------------
  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
 1103|      0|			UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
 1104|      0|		}
 1105|  4.85M|	}
 1106|       |
 1107|   871k|	if (saw_root && !omit_final_dot) {
  ------------------
  |  Branch (1107:6): [True: 871k, False: 0]
  |  Branch (1107:18): [True: 870k, False: 362]
  ------------------
 1108|   870k|		CHECK(isc_buffer_reserve(target, 1));
  ------------------
  |  |  255|   870k|	{                                      \
  |  |  256|   870k|		result = (r);                  \
  |  |  257|   870k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 1, False: 870k]
  |  |  ------------------
  |  |  258|      1|			goto cleanup;          \
  |  |  259|      1|		}                              \
  |  |  260|   870k|	}
  ------------------
 1109|   870k|		isc_buffer_putuint8(target, '.');
 1110|   870k|	}
 1111|       |
 1112|   871k|	if (isc_buffer_availablelength(target) > 1) {
  ------------------
  |  |  161|   871k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (1112:6): [True: 871k, False: 2]
  ------------------
 1113|   871k|		uint8_t *p = isc_buffer_used(target);
  ------------------
  |  |  149|   871k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1114|   871k|		*p = 0;
 1115|   871k|	}
 1116|       |
 1117|   871k|	if (totext_filter_proc != NULL) {
  ------------------
  |  Branch (1117:6): [True: 0, False: 871k]
  ------------------
 1118|      0|		return (totext_filter_proc)(target, oused);
 1119|      0|	}
 1120|       |
 1121|   871k|	return ISC_R_SUCCESS;
 1122|       |
 1123|      7|cleanup:
 1124|      7|	return result;
 1125|   871k|}
dns_name_fromwire:
 1277|  1.85M|		  const dns_decompress_t dctx, isc_buffer_t *target) {
 1278|       |	/*
 1279|       |	 * Copy the name at source into target, decompressing it.
 1280|       |	 *
 1281|       |	 *	*** WARNING ***
 1282|       |	 *
 1283|       |	 * dns_name_fromwire() deals with raw network data. An error in this
 1284|       |	 * routine could result in the failure or hijacking of the server.
 1285|       |	 *
 1286|       |	 * The description of name compression in RFC 1035 section 4.1.4 is
 1287|       |	 * subtle wrt certain edge cases. The first important sentence is:
 1288|       |	 *
 1289|       |	 * > In this scheme, an entire domain name or a list of labels at the
 1290|       |	 * > end of a domain name is replaced with a pointer to a prior
 1291|       |	 * > occurrence of the same name.
 1292|       |	 *
 1293|       |	 * The key word is "prior". This says that compression pointers must
 1294|       |	 * point strictly earlier in the message (before our "marker" variable),
 1295|       |	 * which is enough to prevent DoS attacks due to compression loops.
 1296|       |	 *
 1297|       |	 * The next important sentence is:
 1298|       |	 *
 1299|       |	 * > If a domain name is contained in a part of the message subject to a
 1300|       |	 * > length field (such as the RDATA section of an RR), and compression
 1301|       |	 * > is used, the length of the compressed name is used in the length
 1302|       |	 * > calculation, rather than the length of the expanded name.
 1303|       |	 *
 1304|       |	 * When decompressing, this means that the amount of the source buffer
 1305|       |	 * that we consumed (which is checked wrt the container's length field)
 1306|       |	 * is the length of the compressed name. A compressed name is defined as
 1307|       |	 * a sequence of labels ending with the root label or a compression
 1308|       |	 * pointer, that is, the segment of the name that dns_name_fromwire()
 1309|       |	 * examines first.
 1310|       |	 *
 1311|       |	 * This matters when handling names that play dirty tricks, like:
 1312|       |	 *
 1313|       |	 *	+---+---+---+---+---+---+
 1314|       |	 *	| 4 | 1 |'a'|192| 0 | 0 |
 1315|       |	 *	+---+---+---+---+---+---+
 1316|       |	 *
 1317|       |	 * We start at octet 1. There is an ordinary single character label "a",
 1318|       |	 * followed by a compression pointer that refers back to octet zero.
 1319|       |	 * Here there is a label of length 4, which weirdly re-uses the octets
 1320|       |	 * we already examined as the data for the label. It is followed by the
 1321|       |	 * root label,
 1322|       |	 *
 1323|       |	 * The specification says that the compressed name ends after the first
 1324|       |	 * zero octet (after the compression pointer) not the second zero octet,
 1325|       |	 * even though the second octet is later in the message. This shows the
 1326|       |	 * correct way to set our "consumed" variable.
 1327|       |	 */
 1328|       |
 1329|  1.85M|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  1.85M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.70M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.85M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.85M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.85M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1330|  1.85M|	REQUIRE(DNS_NAME_BINDABLE(name));
  ------------------
  |  |  198|  1.85M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.70M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.85M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.85M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.85M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1331|  1.85M|	REQUIRE((target != NULL && ISC_BUFFER_VALID(target)) ||
  ------------------
  |  |  198|  1.85M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  9.27M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.84M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.84M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.84M, False: 7.09k]
  |  |  |  |  |  Branch (42:11): [True: 7.09k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 7.09k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 7.09k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.85M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1332|  1.85M|		(target == NULL && ISC_BUFFER_VALID(name->buffer)));
 1333|       |
 1334|  1.85M|	if (target == NULL && name->buffer != NULL) {
  ------------------
  |  Branch (1334:6): [True: 7.09k, False: 1.84M]
  |  Branch (1334:24): [True: 7.09k, False: 0]
  ------------------
 1335|  7.09k|		target = name->buffer;
 1336|  7.09k|		isc_buffer_clear(target);
 1337|  7.09k|	}
 1338|       |
 1339|  1.85M|	uint8_t *const name_buf = isc_buffer_used(target);
  ------------------
  |  |  149|  1.85M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1340|  1.85M|	const uint32_t name_max = ISC_MIN(DNS_NAME_MAXWIRE,
  ------------------
  |  |   77|  1.85M|#define ISC_MIN(a, b) ((a) < (b) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (77:24): [True: 1.66M, False: 182k]
  |  |  ------------------
  ------------------
 1341|  1.85M|					  isc_buffer_availablelength(target));
 1342|  1.85M|	uint32_t name_len = 0;
 1343|       |
 1344|       |	/*
 1345|       |	 * After chasing a compression pointer, these variables refer to the
 1346|       |	 * source buffer as follows:
 1347|       |	 *
 1348|       |	 * sb --- mr --- cr --- st --- cd --- sm
 1349|       |	 *
 1350|       |	 * sb = source_buf (const)
 1351|       |	 * mr = marker
 1352|       |	 * cr = cursor
 1353|       |	 * st = start (const)
 1354|       |	 * cd = consumed
 1355|       |	 * sm = source_max (const)
 1356|       |	 *
 1357|       |	 * The marker hops backwards for each pointer.
 1358|       |	 * The cursor steps forwards for each label.
 1359|       |	 * The amount of the source we consumed is set once.
 1360|       |	 */
 1361|  1.85M|	const uint8_t *const source_buf = isc_buffer_base(source);
  ------------------
  |  |  143|  1.85M|#define isc_buffer_base(b) ((void *)(b)->base) /*a*/
  ------------------
 1362|  1.85M|	const uint8_t *const source_max = isc_buffer_used(source);
  ------------------
  |  |  149|  1.85M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1363|  1.85M|	const uint8_t *const start = isc_buffer_current(source);
  ------------------
  |  |  145|  1.85M|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
 1364|  1.85M|	const uint8_t *marker = start;
 1365|  1.85M|	const uint8_t *cursor = start;
 1366|  1.85M|	const uint8_t *consumed = NULL;
 1367|       |
 1368|       |	/*
 1369|       |	 * One iteration per label.
 1370|       |	 */
 1371|  14.0M|	while (cursor < source_max) {
  ------------------
  |  Branch (1371:9): [True: 14.0M, False: 1.94k]
  ------------------
 1372|  14.0M|		const uint8_t label_len = *cursor++;
 1373|  14.0M|		if (label_len <= DNS_NAME_LABELLEN) {
  ------------------
  |  |  192|  14.0M|#define DNS_NAME_LABELLEN  63
  ------------------
  |  Branch (1373:7): [True: 12.5M, False: 1.58M]
  ------------------
 1374|       |			/*
 1375|       |			 * Normal label: record its offset, and check bounds on
 1376|       |			 * the name length, which also ensures we don't overrun
 1377|       |			 * the offsets array. Don't touch any source bytes yet!
 1378|       |			 * The source bounds check will happen when we loop.
 1379|       |			 */
 1380|       |			/* and then a step to the ri-i-i-i-i-ight */
 1381|  12.5M|			cursor += label_len;
 1382|  12.5M|			name_len += label_len + 1;
 1383|  12.5M|			if (name_len > name_max) {
  ------------------
  |  Branch (1383:8): [True: 53.2k, False: 12.4M]
  ------------------
 1384|  53.2k|				return name_max == DNS_NAME_MAXWIRE
  ------------------
  |  |  190|  53.2k|#define DNS_NAME_MAXWIRE   255
  ------------------
  |  Branch (1384:12): [True: 2, False: 53.2k]
  ------------------
 1385|  53.2k|					       ? DNS_R_NAMETOOLONG
 1386|  53.2k|					       : ISC_R_NOSPACE;
 1387|  12.4M|			} else if (label_len == 0) {
  ------------------
  |  Branch (1387:15): [True: 1.79M, False: 10.6M]
  ------------------
 1388|  1.79M|				goto root_label;
 1389|  1.79M|			}
 1390|  12.5M|		} else if (label_len < 192) {
  ------------------
  |  Branch (1390:14): [True: 436, False: 1.58M]
  ------------------
 1391|    436|			return DNS_R_BADLABELTYPE;
 1392|  1.58M|		} else if (!dns_decompress_getpermitted(dctx)) {
  ------------------
  |  Branch (1392:14): [True: 174, False: 1.58M]
  ------------------
 1393|    174|			return DNS_R_DISALLOWED;
 1394|  1.58M|		} else if (cursor < source_max) {
  ------------------
  |  Branch (1394:14): [True: 1.58M, False: 24]
  ------------------
 1395|       |			/*
 1396|       |			 * Compression pointer. Ensure it does not loop.
 1397|       |			 *
 1398|       |			 * Copy multiple labels in one go, to make the most of
 1399|       |			 * memmove() performance. Start at the marker and finish
 1400|       |			 * just before the pointer's hi+lo bytes, before the
 1401|       |			 * cursor. Bounds were already checked.
 1402|       |			 */
 1403|  1.58M|			const uint32_t hi = label_len & 0x3F;
 1404|  1.58M|			const uint32_t lo = *cursor++;
 1405|  1.58M|			const uint8_t *pointer = source_buf + (256 * hi + lo);
 1406|  1.58M|			if (pointer >= marker) {
  ------------------
  |  Branch (1406:8): [True: 72, False: 1.58M]
  ------------------
 1407|     72|				return DNS_R_BADPOINTER;
 1408|     72|			}
 1409|  1.58M|			const uint32_t copy_len = (cursor - 2) - marker;
 1410|  1.58M|			uint8_t *const dest = name_buf + name_len - copy_len;
 1411|  1.58M|			memmove(dest, marker, copy_len);
 1412|  1.58M|			consumed = consumed != NULL ? consumed : cursor;
  ------------------
  |  Branch (1412:15): [True: 588k, False: 996k]
  ------------------
 1413|       |			/* it's just a jump to the left */
 1414|  1.58M|			cursor = marker = pointer;
 1415|  1.58M|		}
 1416|  14.0M|	}
 1417|  1.94k|	return ISC_R_UNEXPECTEDEND;
 1418|  1.79M|root_label:;
 1419|       |	/*
 1420|       |	 * Copy labels almost like we do for compression pointers,
 1421|       |	 * from the marker up to and including the root label.
 1422|       |	 */
 1423|  1.79M|	const uint32_t copy_len = cursor - marker;
 1424|  1.79M|	memmove(name_buf + name_len - copy_len, marker, copy_len);
 1425|  1.79M|	consumed = consumed != NULL ? consumed : cursor;
  ------------------
  |  Branch (1425:13): [True: 951k, False: 843k]
  ------------------
 1426|  1.79M|	isc_buffer_forward(source, consumed - start);
 1427|       |
 1428|  1.79M|	name->attributes.absolute = true;
 1429|  1.79M|	name->ndata = name_buf;
 1430|  1.79M|	name->length = name_len;
 1431|  1.79M|	isc_buffer_add(target, name_len);
 1432|       |
 1433|  1.79M|	return ISC_R_SUCCESS;
 1434|  1.85M|}
dns_name_towire:
 1438|   263k|		isc_buffer_t *target) {
 1439|   263k|	bool compress, multi;
 1440|   263k|	unsigned int here;
 1441|   263k|	unsigned int prefix_length;
 1442|   263k|	unsigned int suffix_coff;
 1443|       |
 1444|       |	/*
 1445|       |	 * Convert 'name' into wire format, compressing it as specified by the
 1446|       |	 * compression context 'cctx' (or without compressing if 'cctx'
 1447|       |	 * is NULL), and storing the result in 'target'.
 1448|       |	 */
 1449|       |
 1450|   263k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   263k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   527k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 263k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 263k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   263k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1451|   263k|	REQUIRE(ISC_BUFFER_VALID(target));
  ------------------
  |  |  198|   263k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   527k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 263k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 263k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   263k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1452|       |
 1453|   263k|	if (cctx == NULL) {
  ------------------
  |  Branch (1453:6): [True: 0, False: 263k]
  ------------------
 1454|      0|		if (isc_buffer_availablelength(target) < name->length) {
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (1454:7): [True: 0, False: 0]
  ------------------
 1455|      0|			return ISC_R_NOSPACE;
 1456|      0|		}
 1457|      0|		memmove(isc_buffer_used(target), name->ndata, name->length);
  ------------------
  |  |  149|      0|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1458|      0|		isc_buffer_add(target, name->length);
 1459|      0|		return ISC_R_SUCCESS;
 1460|      0|	}
 1461|       |
 1462|   263k|	compress = !name->attributes.nocompress &&
  ------------------
  |  Branch (1462:13): [True: 263k, False: 0]
  ------------------
 1463|   263k|		   dns_compress_getpermitted(cctx);
  ------------------
  |  Branch (1463:6): [True: 240k, False: 23.9k]
  ------------------
 1464|   263k|	multi = compress && dns_compress_getmultiuse(cctx);
  ------------------
  |  Branch (1464:10): [True: 240k, False: 23.9k]
  |  Branch (1464:22): [True: 0, False: 240k]
  ------------------
 1465|       |
 1466|       |	/*
 1467|       |	 * Write a compression pointer directly if the caller passed us
 1468|       |	 * a pointer to this name's offset that we saved previously.
 1469|       |	 */
 1470|   263k|	if (multi && cctx->coff < 0x4000) {
  ------------------
  |  Branch (1470:6): [True: 0, False: 263k]
  |  Branch (1470:15): [True: 0, False: 0]
  ------------------
 1471|      0|		if (isc_buffer_availablelength(target) < 2) {
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (1471:7): [True: 0, False: 0]
  ------------------
 1472|      0|			return ISC_R_NOSPACE;
 1473|      0|		}
 1474|      0|		isc_buffer_putuint16(target, cctx->coff | 0xc000);
 1475|      0|		return ISC_R_SUCCESS;
 1476|      0|	}
 1477|       |
 1478|       |	/*
 1479|       |	 * Always add the name to the compression context; if compression
 1480|       |	 * is off, reset the return values before writing the name.
 1481|       |	 */
 1482|   263k|	prefix_length = name->length;
 1483|   263k|	suffix_coff = 0;
 1484|   263k|	dns_compress_name(cctx, target, name, &prefix_length, &suffix_coff);
 1485|   263k|	if (!compress) {
  ------------------
  |  Branch (1485:6): [True: 23.9k, False: 240k]
  ------------------
 1486|  23.9k|		prefix_length = name->length;
 1487|  23.9k|		suffix_coff = 0;
 1488|  23.9k|	}
 1489|       |
 1490|       |	/*
 1491|       |	 * Return this name's compression offset for use next time, provided
 1492|       |	 * it isn't too short for compression to help (i.e. it's the root)
 1493|       |	 */
 1494|   263k|	here = isc_buffer_usedlength(target);
  ------------------
  |  |  157|   263k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
 1495|   263k|	if (multi && here < 0x4000 && prefix_length > 1) {
  ------------------
  |  Branch (1495:6): [True: 0, False: 263k]
  |  Branch (1495:15): [True: 0, False: 0]
  |  Branch (1495:32): [True: 0, False: 0]
  ------------------
 1496|      0|		cctx->coff = (uint16_t)here;
 1497|      0|	}
 1498|       |
 1499|   263k|	if (prefix_length > 0) {
  ------------------
  |  Branch (1499:6): [True: 240k, False: 23.9k]
  ------------------
 1500|   240k|		if (isc_buffer_availablelength(target) < prefix_length) {
  ------------------
  |  |  161|   240k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (1500:7): [True: 66.5k, False: 173k]
  ------------------
 1501|  66.5k|			return ISC_R_NOSPACE;
 1502|  66.5k|		}
 1503|   173k|		memmove(isc_buffer_used(target), name->ndata, prefix_length);
  ------------------
  |  |  149|   173k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1504|   173k|		isc_buffer_add(target, prefix_length);
 1505|   173k|	}
 1506|       |
 1507|   197k|	if (suffix_coff > 0) {
  ------------------
  |  Branch (1507:6): [True: 34.2k, False: 163k]
  ------------------
 1508|  34.2k|		if (multi && prefix_length == 0) {
  ------------------
  |  Branch (1508:7): [True: 0, False: 34.2k]
  |  Branch (1508:16): [True: 0, False: 0]
  ------------------
 1509|      0|			cctx->coff = suffix_coff;
 1510|      0|		}
 1511|  34.2k|		if (isc_buffer_availablelength(target) < 2) {
  ------------------
  |  |  161|  34.2k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (1511:7): [True: 88, False: 34.1k]
  ------------------
 1512|     88|			return ISC_R_NOSPACE;
 1513|     88|		}
 1514|  34.1k|		isc_buffer_putuint16(target, suffix_coff | 0xc000);
 1515|  34.1k|	}
 1516|       |
 1517|   197k|	return ISC_R_SUCCESS;
 1518|   197k|}
dns_name_dynamic:
 1677|   426k|dns_name_dynamic(const dns_name_t *name) {
 1678|   426k|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|   426k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   853k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 426k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 426k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   426k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1679|       |
 1680|       |	/*
 1681|       |	 * Returns whether there is dynamic memory associated with this name.
 1682|       |	 */
 1683|       |
 1684|   426k|	return name->attributes.dynamic;
 1685|   426k|}
dns_name_format:
 1728|  2.49k|dns_name_format(const dns_name_t *name, char *cp, unsigned int size) {
 1729|  2.49k|	isc_result_t result;
 1730|  2.49k|	isc_buffer_t buf;
 1731|       |
 1732|  2.49k|	REQUIRE(size > 0);
  ------------------
  |  |  198|  2.49k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.49k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.49k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.49k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1733|       |
 1734|       |	/*
 1735|       |	 * Leave room for null termination after buffer.
 1736|       |	 */
 1737|  2.49k|	isc_buffer_init(&buf, cp, size - 1);
 1738|  2.49k|	result = dns_name_totext(name, DNS_NAME_OMITFINALDOT, &buf);
  ------------------
  |  |  883|  2.49k|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
 1739|  2.49k|	if (result == ISC_R_SUCCESS) {
  ------------------
  |  Branch (1739:6): [True: 2.49k, False: 0]
  ------------------
 1740|  2.49k|		isc_buffer_putuint8(&buf, (uint8_t)'\0');
 1741|  2.49k|	} else {
 1742|      0|		snprintf(cp, size, "<unknown>");
 1743|      0|	}
 1744|  2.49k|}
dns_name_copy:
 1799|   277k|dns_name_copy(const dns_name_t *source, dns_name_t *dest) {
 1800|   277k|	isc_buffer_t *target = NULL;
 1801|   277k|	unsigned char *ndata = NULL;
 1802|       |
 1803|   277k|	REQUIRE(DNS_NAME_VALID(source));
  ------------------
  |  |  198|   277k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   554k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 277k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 277k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   277k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1804|   277k|	REQUIRE(DNS_NAME_VALID(dest));
  ------------------
  |  |  198|   277k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   554k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 277k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 277k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   277k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1805|   277k|	REQUIRE(DNS_NAME_BINDABLE(dest));
  ------------------
  |  |  198|   277k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   554k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 277k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 277k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   277k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1806|       |
 1807|   277k|	target = dest->buffer;
 1808|       |
 1809|   277k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|   277k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   277k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 277k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   277k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1810|   277k|	REQUIRE(target->length >= source->length);
  ------------------
  |  |  198|   277k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   277k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 277k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   277k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1811|       |
 1812|   277k|	isc_buffer_clear(target);
 1813|       |
 1814|   277k|	ndata = (unsigned char *)target->base;
 1815|   277k|	dest->ndata = target->base;
 1816|       |
 1817|   277k|	if (source->length != 0) {
  ------------------
  |  Branch (1817:6): [True: 277k, False: 0]
  ------------------
 1818|   277k|		memmove(ndata, source->ndata, source->length);
 1819|   277k|	}
 1820|       |
 1821|   277k|	dest->ndata = ndata;
 1822|   277k|	dest->length = source->length;
 1823|   277k|	dest->attributes.absolute = source->attributes.absolute;
 1824|       |
 1825|   277k|	isc_buffer_add(target, dest->length);
 1826|   277k|}
dns_name_offsets:
 2098|  1.14M|dns_name_offsets(const dns_name_t *name, dns_offsets_t offsets) {
 2099|  1.14M|	REQUIRE(DNS_NAME_VALID(name));
  ------------------
  |  |  198|  1.14M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.29M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.14M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.14M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2100|  1.14M|	unsigned int offset, count, length, nlabels;
 2101|  1.14M|	unsigned char *ndata;
 2102|       |
 2103|  1.14M|	ndata = name->ndata;
 2104|  1.14M|	length = name->length;
 2105|  1.14M|	offset = 0;
 2106|  1.14M|	nlabels = 0;
 2107|  7.80M|	while (offset != length) {
  ------------------
  |  Branch (2107:9): [True: 7.80M, False: 0]
  ------------------
 2108|  7.80M|		INSIST(nlabels < DNS_NAME_MAXLABELS);
  ------------------
  |  |  202|  7.80M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  7.80M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 7.80M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  7.80M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2109|  7.80M|		if (offsets != NULL) {
  ------------------
  |  Branch (2109:7): [True: 2.05M, False: 5.74M]
  ------------------
 2110|  2.05M|			offsets[nlabels] = offset;
 2111|  2.05M|		}
 2112|  7.80M|		nlabels++;
 2113|  7.80M|		count = *ndata;
 2114|  7.80M|		INSIST(count <= DNS_NAME_LABELLEN);
  ------------------
  |  |  202|  7.80M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  7.80M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 7.80M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  7.80M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2115|  7.80M|		offset += count + 1;
 2116|  7.80M|		ndata += count + 1;
 2117|  7.80M|		INSIST(offset <= length);
  ------------------
  |  |  202|  7.80M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  7.80M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 7.80M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  7.80M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2118|  7.80M|		if (count == 0) {
  ------------------
  |  Branch (2118:7): [True: 1.14M, False: 6.65M]
  ------------------
 2119|       |			/* Final root label */
 2120|  1.14M|			break;
 2121|  1.14M|		}
 2122|  7.80M|	}
 2123|  1.14M|	INSIST(offset == name->length);
  ------------------
  |  |  202|  1.14M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.14M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.14M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.14M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 2124|       |
 2125|  1.14M|	return nlabels;
 2126|  1.14M|}

dst__opensslecdsa_init:
  668|      4|dst__opensslecdsa_init(dst_func_t **funcp) {
  669|      4|	REQUIRE(funcp != NULL);
  ------------------
  |  |  198|      4|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      4|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  670|       |
  671|      4|	if (*funcp == NULL) {
  ------------------
  |  Branch (671:6): [True: 4, False: 0]
  ------------------
  672|      4|		*funcp = &opensslecdsa_functions;
  673|      4|	}
  674|      4|}

dst__openssleddsa_init:
  644|      4|dst__openssleddsa_init(dst_func_t **funcp, unsigned char algorithm) {
  645|      4|	REQUIRE(funcp != NULL);
  ------------------
  |  |  198|      4|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      4|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  646|       |
  647|      4|	if (*funcp == NULL) {
  ------------------
  |  Branch (647:6): [True: 4, False: 0]
  ------------------
  648|      4|		if (check_algorithm(algorithm) == ISC_R_SUCCESS) {
  ------------------
  |  Branch (648:7): [True: 4, False: 0]
  ------------------
  649|      4|			*funcp = &openssleddsa_functions;
  650|      4|		}
  651|      4|	}
  652|      4|}
openssleddsa_link.c:check_algorithm:
  584|      4|check_algorithm(unsigned char algorithm) {
  585|      4|	EVP_MD_CTX *evp_md_ctx = EVP_MD_CTX_create();
  586|      4|	EVP_PKEY *pkey = NULL;
  587|      4|	const eddsa_alginfo_t *alginfo = NULL;
  588|      4|	const unsigned char *key = NULL;
  589|      4|	const unsigned char *sig = NULL;
  590|      4|	const unsigned char test[] = "test";
  591|      4|	isc_result_t result = ISC_R_SUCCESS;
  592|      4|	size_t key_len, sig_len;
  593|       |
  594|      4|	if (evp_md_ctx == NULL) {
  ------------------
  |  Branch (594:6): [True: 0, False: 4]
  ------------------
  595|      0|		CLEANUP(ISC_R_NOMEMORY);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  596|      0|	}
  597|       |
  598|      4|	switch (algorithm) {
  599|      0|#if HAVE_OPENSSL_ED448
  600|      2|	case DST_ALG_ED448:
  ------------------
  |  Branch (600:2): [True: 2, False: 2]
  ------------------
  601|      2|		sig = ed448_sig;
  602|      2|		sig_len = sizeof(ed448_sig) - 1;
  603|      2|		key = ed448_pub;
  604|      2|		key_len = sizeof(ed448_pub) - 1;
  605|      2|		alginfo = openssleddsa_alg_info(algorithm);
  606|      2|		break;
  607|      0|#endif /* HAVE_OPENSSL_ED448 */
  608|      2|	case DST_ALG_ED25519:
  ------------------
  |  Branch (608:2): [True: 2, False: 2]
  ------------------
  609|      2|		sig = ed25519_sig;
  610|      2|		sig_len = sizeof(ed25519_sig) - 1;
  611|      2|		key = ed25519_pub;
  612|      2|		key_len = sizeof(ed25519_pub) - 1;
  613|      2|		alginfo = openssleddsa_alg_info(algorithm);
  614|      2|		break;
  615|      0|	default:
  ------------------
  |  Branch (615:2): [True: 0, False: 4]
  ------------------
  616|      0|		CLEANUP(ISC_R_NOTIMPLEMENTED);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  617|      4|	}
  618|       |
  619|      4|	INSIST(alginfo != NULL);
  ------------------
  |  |  202|      4|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      4|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      4|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  620|      4|	CHECK(raw_key_to_ossl(alginfo, 0, key, &key_len, &pkey));
  ------------------
  |  |  255|      4|	{                                      \
  |  |  256|      4|		result = (r);                  \
  |  |  257|      4|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 4]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|      4|	}
  ------------------
  621|       |
  622|       |	/*
  623|       |	 * Check that we can verify the signature.
  624|       |	 */
  625|      4|	if (EVP_DigestVerifyInit(evp_md_ctx, NULL, NULL, NULL, pkey) != 1 ||
  ------------------
  |  Branch (625:6): [True: 0, False: 4]
  ------------------
  626|      4|	    EVP_DigestVerify(evp_md_ctx, sig, sig_len, test,
  ------------------
  |  Branch (626:6): [True: 0, False: 4]
  ------------------
  627|      4|			     sizeof(test) - 1) != 1)
  628|      0|	{
  629|      0|		CLEANUP(ISC_R_NOTIMPLEMENTED);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  630|      0|	}
  631|       |
  632|      4|cleanup:
  633|      4|	if (pkey != NULL) {
  ------------------
  |  Branch (633:6): [True: 4, False: 0]
  ------------------
  634|      4|		EVP_PKEY_free(pkey);
  635|      4|	}
  636|      4|	if (evp_md_ctx != NULL) {
  ------------------
  |  Branch (636:6): [True: 4, False: 0]
  ------------------
  637|       |		EVP_MD_CTX_destroy(evp_md_ctx);
  638|      4|	}
  639|      4|	ERR_clear_error();
  640|      4|	return result;
  641|      4|}
openssleddsa_link.c:openssleddsa_alg_info:
   54|      4|openssleddsa_alg_info(unsigned int key_alg) {
   55|      4|	if (key_alg == DST_ALG_ED25519) {
  ------------------
  |  Branch (55:6): [True: 2, False: 2]
  ------------------
   56|      2|		static const eddsa_alginfo_t ed25519_alginfo = {
   57|      2|			.pkey_type = EVP_PKEY_ED25519,
   58|      2|			.nid = NID_ED25519,
   59|      2|			.key_size = DNS_KEY_ED25519SIZE,
  ------------------
  |  |   74|      2|#define DNS_KEY_ED25519SIZE 32
  ------------------
   60|      2|			.sig_size = DNS_SIG_ED25519SIZE,
  ------------------
  |  |   75|      2|#define DNS_SIG_ED25519SIZE 64
  ------------------
   61|      2|		};
   62|      2|		return &ed25519_alginfo;
   63|      2|	}
   64|      2|#if HAVE_OPENSSL_ED448
   65|      2|	if (key_alg == DST_ALG_ED448) {
  ------------------
  |  Branch (65:6): [True: 2, False: 0]
  ------------------
   66|      2|		static const eddsa_alginfo_t ed448_alginfo = {
   67|      2|			.pkey_type = EVP_PKEY_ED448,
   68|      2|			.nid = NID_ED448,
   69|      2|			.key_size = DNS_KEY_ED448SIZE,
  ------------------
  |  |   77|      2|#define DNS_KEY_ED448SIZE 57
  ------------------
   70|      2|			.sig_size = DNS_SIG_ED448SIZE,
  ------------------
  |  |   78|      2|#define DNS_SIG_ED448SIZE 114
  ------------------
   71|      2|		};
   72|      2|		return &ed448_alginfo;
   73|      2|	}
   74|      0|#endif /* HAVE_OPENSSL_ED448 */
   75|      0|	return NULL;
   76|      2|}
openssleddsa_link.c:raw_key_to_ossl:
   80|      4|		const unsigned char *key, size_t *key_len, EVP_PKEY **pkey) {
   81|      4|	isc_result_t result;
   82|      4|	int pkey_type = alginfo->pkey_type;
   83|      4|	size_t len = alginfo->key_size;
   84|       |
   85|      4|	result = (private ? DST_R_INVALIDPRIVATEKEY : DST_R_INVALIDPUBLICKEY);
  ------------------
  |  Branch (85:12): [True: 0, False: 4]
  ------------------
   86|      4|	if (*key_len < len) {
  ------------------
  |  Branch (86:6): [True: 0, False: 4]
  ------------------
   87|      0|		return result;
   88|      0|	}
   89|       |
   90|      4|	if (private) {
  ------------------
  |  Branch (90:6): [True: 0, False: 4]
  ------------------
   91|      0|		*pkey = EVP_PKEY_new_raw_private_key(pkey_type, NULL, key, len);
   92|      4|	} else {
   93|      4|		*pkey = EVP_PKEY_new_raw_public_key(pkey_type, NULL, key, len);
   94|      4|	}
   95|      4|	if (*pkey == NULL) {
  ------------------
  |  Branch (95:6): [True: 0, False: 4]
  ------------------
   96|      0|		return dst__openssl_toresult(result);
  ------------------
  |  |   28|      0|	isc__ossl_wrap_logged_toresult(ISC_LOGCATEGORY_INVALID,               \
  |  |   29|      0|				       ISC_LOGMODULE_INVALID, NULL, fallback, \
  |  |   30|      0|				       __FILE__, __LINE__)
  ------------------
   97|      0|	}
   98|       |
   99|      4|	*key_len = len;
  100|      4|	return ISC_R_SUCCESS;
  101|      4|}

dst__opensslrsa_init:
  955|     12|dst__opensslrsa_init(dst_func_t **funcp, unsigned short algorithm) {
  956|     12|	REQUIRE(funcp != NULL);
  ------------------
  |  |  198|     12|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     12|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     12|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  957|       |
  958|     12|	if (*funcp == NULL) {
  ------------------
  |  Branch (958:6): [True: 12, False: 0]
  ------------------
  959|     12|		if (check_algorithm(algorithm) == ISC_R_SUCCESS) {
  ------------------
  |  Branch (959:7): [True: 12, False: 0]
  ------------------
  960|     12|			*funcp = &opensslrsa_functions;
  961|     12|		}
  962|     12|	}
  963|       |
  964|     12|	if (rsa_exponent_min == NULL) {
  ------------------
  |  Branch (964:6): [True: 2, False: 10]
  ------------------
  965|      2|		rsa_exponent_min = BN_new();
  966|      2|		INSIST(rsa_exponent_min != NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  967|       |
  968|      2|		RUNTIME_CHECK(BN_set_word(rsa_exponent_min, 3) == 1);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  969|      2|	}
  970|       |
  971|     12|	if (rsa_exponent_max == NULL) {
  ------------------
  |  Branch (971:6): [True: 2, False: 10]
  ------------------
  972|      2|		rsa_exponent_max = BN_new();
  973|      2|		INSIST(rsa_exponent_max != NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  974|       |
  975|      2|		RUNTIME_CHECK(BN_set_bit(rsa_exponent_max, 0) == 1);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  976|      2|		RUNTIME_CHECK(BN_set_bit(rsa_exponent_max, 32) == 1);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  977|      2|	}
  978|     12|}
opensslrsa_link.c:check_algorithm:
  895|     12|check_algorithm(unsigned short algorithm) {
  896|     12|	isc_ossl_wrap_rsa_components_t c = { .needs_cleanup = true };
  897|     12|	EVP_MD_CTX *evp_md_ctx = EVP_MD_CTX_create();
  898|     12|	EVP_PKEY *pkey = NULL;
  899|     12|	const EVP_MD *type = NULL;
  900|     12|	const unsigned char *sig = NULL;
  901|     12|	isc_result_t result = ISC_R_SUCCESS;
  902|     12|	size_t len;
  903|       |
  904|     12|	switch (algorithm) {
  905|      2|	case DST_ALG_RSASHA1:
  ------------------
  |  Branch (905:2): [True: 2, False: 10]
  ------------------
  906|      4|	case DST_ALG_NSEC3RSASHA1:
  ------------------
  |  Branch (906:2): [True: 2, False: 10]
  ------------------
  907|      4|		type = isc__crypto_md[ISC_MD_SHA1]; /* SHA1 + RSA */
  908|      4|		sig = sha1_sig;
  909|      4|		len = sizeof(sha1_sig) - 1;
  910|      4|		break;
  911|      2|	case DST_ALG_RSASHA256:
  ------------------
  |  Branch (911:2): [True: 2, False: 10]
  ------------------
  912|      4|	case DST_ALG_RSASHA256PRIVATEOID:
  ------------------
  |  Branch (912:2): [True: 2, False: 10]
  ------------------
  913|      4|		type = isc__crypto_md[ISC_MD_SHA256]; /* SHA256 + RSA */
  914|      4|		sig = sha256_sig;
  915|      4|		len = sizeof(sha256_sig) - 1;
  916|      4|		break;
  917|      2|	case DST_ALG_RSASHA512:
  ------------------
  |  Branch (917:2): [True: 2, False: 10]
  ------------------
  918|      4|	case DST_ALG_RSASHA512PRIVATEOID:
  ------------------
  |  Branch (918:2): [True: 2, False: 10]
  ------------------
  919|      4|		type = isc__crypto_md[ISC_MD_SHA512];
  920|      4|		sig = sha512_sig;
  921|      4|		len = sizeof(sha512_sig) - 1;
  922|      4|		break;
  923|      0|	default:
  ------------------
  |  Branch (923:2): [True: 0, False: 12]
  ------------------
  924|      0|		CLEANUP(ISC_R_NOTIMPLEMENTED);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  925|     12|	}
  926|       |
  927|       |	/*
  928|       |	 * Construct pkey.
  929|       |	 */
  930|     12|	c.e = BN_bin2bn(e_bytes, sizeof(e_bytes) - 1, NULL);
  931|     12|	c.n = BN_bin2bn(n_bytes, sizeof(n_bytes) - 1, NULL);
  932|       |
  933|     12|	result = isc_ossl_wrap_load_rsa_public_from_components(&c, &pkey);
  934|     12|	INSIST(result == ISC_R_SUCCESS);
  ------------------
  |  |  202|     12|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|     12|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|     12|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  935|       |
  936|       |	/*
  937|       |	 * Check that we can verify the signature.
  938|       |	 */
  939|     12|	if (EVP_DigestInit_ex(evp_md_ctx, type, NULL) != 1 ||
  ------------------
  |  Branch (939:6): [True: 0, False: 12]
  ------------------
  940|     12|	    EVP_DigestUpdate(evp_md_ctx, "test", 4) != 1 ||
  ------------------
  |  Branch (940:6): [True: 0, False: 12]
  ------------------
  941|     12|	    EVP_VerifyFinal(evp_md_ctx, sig, len, pkey) != 1)
  ------------------
  |  Branch (941:6): [True: 0, False: 12]
  ------------------
  942|      0|	{
  943|      0|		CLEANUP(ISC_R_NOTIMPLEMENTED);
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  944|      0|	}
  945|       |
  946|     12|cleanup:
  947|     12|	isc_ossl_wrap_rsa_components_cleanup(&c);
  948|     12|	EVP_PKEY_free(pkey);
  949|       |	EVP_MD_CTX_destroy(evp_md_ctx);
  950|     12|	ERR_clear_error();
  951|     12|	return result;
  952|     12|}

dns__qp_initialize:
  180|      2|dns__qp_initialize(void) {
  181|       |	/* zero common character marker not a valid shift position */
  182|      2|	INSIST(0 < SHIFT_BITMAP);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, Folded]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  183|       |	/* first bit is common byte or escape byte */
  184|      2|	dns_qpshift_t bit_one = SHIFT_BITMAP;
  185|       |	/* second bit is position in escaped range */
  186|      2|	dns_qpshift_t bit_two = SHIFT_BITMAP;
  187|      2|	bool escaping = true;
  188|       |
  189|    514|	for (unsigned int byte = 0; byte < BYTE_VALUES; byte++) {
  ------------------
  |  |  132|    514|#define BYTE_VALUES (UINT8_MAX + 1)
  ------------------
  |  Branch (189:30): [True: 512, False: 2]
  ------------------
  190|    512|		if (qp_common_character(byte)) {
  ------------------
  |  Branch (190:7): [True: 82, False: 430]
  ------------------
  191|     82|			escaping = false;
  192|     82|			bit_one++;
  193|     82|			dns_qp_byte_for_bit[bit_one] = byte;
  194|     82|			dns_qp_bits_for_byte[byte] = bit_one;
  195|    430|		} else if ('A' <= byte && byte <= 'Z') {
  ------------------
  |  Branch (195:14): [True: 326, False: 104]
  |  Branch (195:29): [True: 52, False: 274]
  ------------------
  196|       |			/* map upper case to lower case */
  197|     52|			dns_qpshift_t after_esc = bit_one + 1;
  198|     52|			dns_qpshift_t skip_punct = 'a' - '_';
  199|     52|			dns_qpshift_t letter = byte - 'A';
  200|     52|			dns_qpshift_t bit = after_esc + skip_punct + letter;
  201|     52|			dns_qp_bits_for_byte[byte] = bit;
  202|       |			/* to simplify reverse conversion */
  203|     52|			bit_two++;
  204|    378|		} else {
  205|       |			/* non-hostname characters need to be escaped */
  206|    378|			if (!escaping || bit_two >= SHIFT_OFFSET) {
  ------------------
  |  Branch (206:8): [True: 4, False: 374]
  |  Branch (206:21): [True: 4, False: 370]
  ------------------
  207|      8|				escaping = true;
  208|      8|				bit_one++;
  209|      8|				dns_qp_byte_for_bit[bit_one] = byte;
  210|      8|				bit_two = SHIFT_BITMAP;
  211|      8|			}
  212|    378|			dns_qp_bits_for_byte[byte] = bit_two << 8 | bit_one;
  213|    378|			bit_two++;
  214|    378|		}
  215|    512|	}
  216|      2|	ENSURE(bit_one < SHIFT_OFFSET);
  ------------------
  |  |  200|      2|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  217|      2|}

qp.c:qp_common_character:
  930|    512|qp_common_character(uint8_t byte) {
  931|    512|	return ('-' <= byte && byte <= '9') || ('_' <= byte && byte <= 'z');
  ------------------
  |  Branch (931:10): [True: 422, False: 90]
  |  Branch (931:25): [True: 26, False: 396]
  |  Branch (931:42): [True: 322, False: 164]
  |  Branch (931:57): [True: 56, False: 266]
  ------------------
  932|    512|}

dns__qpzone_initialize:
  471|      2|dns__qpzone_initialize(void) {
  472|  2.05k|	for (size_t idx = 0; idx < ARRAY_SIZE(qpzone_buckets_g); ++idx) {
  ------------------
  |  |   98|  2.05k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (472:23): [True: 2.04k, False: 2]
  ------------------
  473|  2.04k|		NODE_INITLOCK(&qpzone_buckets_g[idx].lock);
  ------------------
  |  |   28|  2.04k|#define NODE_INITLOCK(l)    isc_rwlock_init((l))
  ------------------
  474|  2.04k|	}
  475|      2|}

dns_rcode_totext:
  326|  17.6k|dns_rcode_totext(dns_rcode_t rcode, isc_buffer_t *target) {
  327|  17.6k|	return dns_mnemonic_totext(rcode, target, rcodes);
  328|  17.6k|}
dns_tsigrcode_totext:
  339|  3.15k|dns_tsigrcode_totext(dns_rcode_t rcode, isc_buffer_t *target) {
  340|  3.15k|	return dns_mnemonic_totext(rcode, target, tsigrcodes);
  341|  3.15k|}
dns_cert_totext:
  352|  2.77k|dns_cert_totext(dns_cert_t cert, isc_buffer_t *target) {
  353|  2.77k|	return dns_mnemonic_totext(cert, target, certs);
  354|  2.77k|}
dns_secalg_totext:
  365|  8.75k|dns_secalg_totext(dns_secalg_t secalg, isc_buffer_t *target) {
  366|  8.75k|	return dns_mnemonic_totext(secalg, target, secalgs);
  367|  8.75k|}
dns_secalg_format:
  370|  5.98k|dns_secalg_format(dns_secalg_t alg, char *cp, unsigned int size) {
  371|  5.98k|	isc_buffer_t b;
  372|  5.98k|	isc_region_t r;
  373|  5.98k|	isc_result_t result;
  374|       |
  375|  5.98k|	REQUIRE(cp != NULL && size > 0);
  ------------------
  |  |  198|  5.98k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  11.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 5.98k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 5.98k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.98k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  376|  5.98k|	isc_buffer_init(&b, cp, size - 1);
  377|  5.98k|	result = dns_secalg_totext(alg, &b);
  378|  5.98k|	isc_buffer_usedregion(&b, &r);
  379|  5.98k|	r.base[r.length] = 0;
  380|  5.98k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (380:6): [True: 0, False: 5.98k]
  ------------------
  381|      0|		r.base[0] = 0;
  382|      0|	}
  383|  5.98k|}
dns_dsyncscheme_totext:
  562|  1.05k|dns_dsyncscheme_totext(dns_dsyncscheme_t scheme, isc_buffer_t *target) {
  563|  1.05k|	return dns_mnemonic_totext(scheme, target, dsyncschemes);
  564|  1.05k|}
dns_rdataclass_totext:
  651|   374k|dns_rdataclass_totext(dns_rdataclass_t rdclass, isc_buffer_t *target) {
  652|   374k|	switch (rdclass) {
  653|  6.40k|	case dns_rdataclass_any:
  ------------------
  |  |   34|  6.40k|#define dns_rdataclass_any	((dns_rdataclass_t)dns_rdataclass_any)
  ------------------
  |  Branch (653:2): [True: 6.40k, False: 367k]
  ------------------
  654|  6.40k|		return str_totext("ANY", target);
  655|  4.87k|	case dns_rdataclass_chaos:
  ------------------
  |  |   26|  4.87k|#define dns_rdataclass_chaos	((dns_rdataclass_t)dns_rdataclass_chaos)
  ------------------
  |  Branch (655:2): [True: 4.87k, False: 369k]
  ------------------
  656|  4.87k|		return str_totext("CH", target);
  657|  2.48k|	case dns_rdataclass_hs:
  ------------------
  |  |   30|  2.48k|#define dns_rdataclass_hs	((dns_rdataclass_t)dns_rdataclass_hs)
  ------------------
  |  Branch (657:2): [True: 2.48k, False: 371k]
  ------------------
  658|  2.48k|		return str_totext("HS", target);
  659|  46.8k|	case dns_rdataclass_in:
  ------------------
  |  |   24|  46.8k|#define dns_rdataclass_in	((dns_rdataclass_t)dns_rdataclass_in)
  ------------------
  |  Branch (659:2): [True: 46.8k, False: 327k]
  ------------------
  660|  46.8k|		return str_totext("IN", target);
  661|  5.61k|	case dns_rdataclass_none:
  ------------------
  |  |   32|  5.61k|#define dns_rdataclass_none	((dns_rdataclass_t)dns_rdataclass_none)
  ------------------
  |  Branch (661:2): [True: 5.61k, False: 368k]
  ------------------
  662|  5.61k|		return str_totext("NONE", target);
  663|  47.0k|	case dns_rdataclass_reserved0:
  ------------------
  |  |   22|  47.0k|				((dns_rdataclass_t)dns_rdataclass_reserved0)
  ------------------
  |  Branch (663:2): [True: 47.0k, False: 327k]
  ------------------
  664|  47.0k|		return str_totext("RESERVED0", target);
  665|   260k|	default:
  ------------------
  |  Branch (665:2): [True: 260k, False: 113k]
  ------------------
  666|   260k|		return dns_rdataclass_tounknowntext(rdclass, target);
  667|   374k|	}
  668|   374k|}
dns_rdataclass_tounknowntext:
  671|   260k|dns_rdataclass_tounknowntext(dns_rdataclass_t rdclass, isc_buffer_t *target) {
  672|   260k|	char buf[sizeof("CLASS65535")];
  673|       |
  674|   260k|	snprintf(buf, sizeof(buf), "CLASS%u", rdclass);
  675|   260k|	return str_totext(buf, target);
  676|   260k|}
rcode.c:dns_mnemonic_totext:
  304|  33.3k|		    struct tbl *table) {
  305|  33.3k|	int i = 0;
  306|  33.3k|	char buf[sizeof("4294967296")];
  307|   318k|	while (table[i].name != NULL) {
  ------------------
  |  Branch (307:9): [True: 308k, False: 10.5k]
  ------------------
  308|   308k|		if (table[i].value == value) {
  ------------------
  |  Branch (308:7): [True: 22.8k, False: 285k]
  ------------------
  309|  22.8k|			return str_totext(table[i].name, target);
  310|  22.8k|		}
  311|   285k|		i++;
  312|   285k|	}
  313|  10.5k|	snprintf(buf, sizeof(buf), "%u", value);
  314|  10.5k|	return str_totext(buf, target);
  315|  33.3k|}
rcode.c:str_totext:
  222|   407k|str_totext(const char *source, isc_buffer_t *target) {
  223|   407k|	unsigned int l;
  224|   407k|	isc_region_t region;
  225|       |
  226|   407k|	isc_buffer_availableregion(target, &region);
  227|   407k|	l = strlen(source);
  228|       |
  229|   407k|	if (l > region.length) {
  ------------------
  |  Branch (229:6): [True: 0, False: 407k]
  ------------------
  230|      0|		return ISC_R_NOSPACE;
  231|      0|	}
  232|       |
  233|   407k|	memmove(region.base, source, l);
  234|   407k|	isc_buffer_add(target, l);
  235|   407k|	return ISC_R_SUCCESS;
  236|   407k|}

dns_rdata_init:
  800|   308k|dns_rdata_init(dns_rdata_t *rdata) {
  801|   308k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|   308k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   308k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 308k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   308k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  802|       |
  803|   308k|	rdata->data = NULL;
  804|   308k|	rdata->length = 0;
  805|   308k|	rdata->rdclass = 0;
  806|   308k|	rdata->type = dns_rdatatype_none;
  ------------------
  |  |  114|   308k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
  807|   308k|	rdata->flags = 0;
  808|   308k|	ISC_LINK_INIT(rdata, link);
  ------------------
  |  |   57|   308k|#define ISC_LINK_INIT(elt, link) ISC_LINK_INIT_TYPE(elt, link, void)
  |  |  ------------------
  |  |  |  |   53|   308k|	do {                                                 \
  |  |  |  |   54|   308k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   308k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   55|   308k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   308k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   56|   308k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (56:11): [Folded, False: 308k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  809|       |	/* ISC_LIST_INIT(rdata->list); */
  810|   308k|}
dns_rdata_clone:
  831|   391k|dns_rdata_clone(const dns_rdata_t *src, dns_rdata_t *target) {
  832|   391k|	REQUIRE(src != NULL);
  ------------------
  |  |  198|   391k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   391k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 391k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   391k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  833|   391k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|   391k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   391k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 391k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   391k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  834|       |
  835|   391k|	REQUIRE(DNS_RDATA_INITIALIZED(target));
  ------------------
  |  |  198|   391k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.91M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 391k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 391k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 391k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 391k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 391k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 391k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   391k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  836|       |
  837|   391k|	REQUIRE(DNS_RDATA_VALIDFLAGS(src));
  ------------------
  |  |  198|   391k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   391k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 391k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   391k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  838|   391k|	REQUIRE(DNS_RDATA_VALIDFLAGS(target));
  ------------------
  |  |  198|   391k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   391k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 391k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   391k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  839|       |
  840|   391k|	target->data = src->data;
  841|   391k|	target->length = src->length;
  842|   391k|	target->rdclass = src->rdclass;
  843|   391k|	target->type = src->type;
  844|   391k|	target->flags = src->flags;
  845|   391k|}
dns_rdata_compare:
  852|  12.1k|dns_rdata_compare(const dns_rdata_t *rdata1, const dns_rdata_t *rdata2) {
  853|  12.1k|	int result = 0;
  854|  12.1k|	bool use_default = false;
  855|       |
  856|  12.1k|	REQUIRE(rdata1 != NULL);
  ------------------
  |  |  198|  12.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  12.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  857|  12.1k|	REQUIRE(rdata2 != NULL);
  ------------------
  |  |  198|  12.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  12.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  858|  12.1k|	REQUIRE(rdata1->length == 0 || rdata1->data != NULL);
  ------------------
  |  |  198|  12.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.5k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.64k, False: 9.46k]
  |  |  |  |  |  Branch (42:11): [True: 9.46k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  859|  12.1k|	REQUIRE(rdata2->length == 0 || rdata2->data != NULL);
  ------------------
  |  |  198|  12.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.34k, False: 9.76k]
  |  |  |  |  |  Branch (42:11): [True: 9.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  860|  12.1k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata1));
  ------------------
  |  |  198|  12.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  12.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  861|  12.1k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata2));
  ------------------
  |  |  198|  12.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  12.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  12.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  862|       |
  863|  12.1k|	if (rdata1->rdclass != rdata2->rdclass) {
  ------------------
  |  Branch (863:6): [True: 0, False: 12.1k]
  ------------------
  864|      0|		return rdata1->rdclass < rdata2->rdclass ? -1 : 1;
  ------------------
  |  Branch (864:10): [True: 0, False: 0]
  ------------------
  865|      0|	}
  866|       |
  867|  12.1k|	if (rdata1->type != rdata2->type) {
  ------------------
  |  Branch (867:6): [True: 0, False: 12.1k]
  ------------------
  868|      0|		return rdata1->type < rdata2->type ? -1 : 1;
  ------------------
  |  Branch (868:10): [True: 0, False: 0]
  ------------------
  869|      0|	}
  870|       |
  871|  12.1k|	COMPARESWITCH
  ------------------
  |  |  760|  12.1k|	switch (rdata1->type) { \
  |  |  761|      0|	case 1: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (761:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  762|      0|		case 1: result = compare_in_a(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (762:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  763|      0|		case 3: result = compare_ch_a(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (763:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  764|      0|		case 4: result = compare_hs_a(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (764:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  765|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (765:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  766|      0|		} \
  |  |  767|      0|		break; \
  |  |  768|      0|	case 2: result = compare_ns(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (768:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  769|      0|	case 3: result = compare_md(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (769:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  770|      0|	case 4: result = compare_mf(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (770:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  771|  1.93k|	case 5: result = compare_cname(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (771:2): [True: 1.93k, False: 10.1k]
  |  |  ------------------
  |  |  772|  3.13k|	case 6: result = compare_soa(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (772:2): [True: 3.13k, False: 8.97k]
  |  |  ------------------
  |  |  773|      0|	case 7: result = compare_mb(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (773:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  774|      0|	case 8: result = compare_mg(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (774:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  775|      0|	case 9: result = compare_mr(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (775:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  776|      0|	case 10: result = compare_null(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (776:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  777|      0|	case 11: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (777:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  778|      0|		case 1: result = compare_in_wks(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (778:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  779|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (779:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  780|      0|		} \
  |  |  781|      0|		break; \
  |  |  782|      0|	case 12: result = compare_ptr(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (782:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  783|      0|	case 13: result = compare_hinfo(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (783:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  784|      0|	case 14: result = compare_minfo(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (784:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  785|      0|	case 15: result = compare_mx(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (785:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  786|      0|	case 16: result = compare_txt(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (786:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  787|      0|	case 17: result = compare_rp(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (787:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  788|      0|	case 18: result = compare_afsdb(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (788:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  789|      0|	case 19: result = compare_x25(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (789:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  790|      0|	case 20: result = compare_isdn(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (790:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  791|      0|	case 21: result = compare_rt(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (791:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  792|      0|	case 22: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (792:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  793|      0|		case 1: result = compare_in_nsap(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (793:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  794|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (794:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  795|      0|		} \
  |  |  796|      0|		break; \
  |  |  797|      0|	case 23: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (797:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  798|      0|		case 1: result = compare_in_nsap_ptr(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (798:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  799|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (799:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  800|      0|		} \
  |  |  801|      0|		break; \
  |  |  802|      0|	case 24: result = compare_sig(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (802:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  803|      0|	case 25: result = compare_key(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (803:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  804|      0|	case 26: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (804:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  805|      0|		case 1: result = compare_in_px(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (805:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  806|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (806:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  807|      0|		} \
  |  |  808|      0|		break; \
  |  |  809|      0|	case 27: result = compare_gpos(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (809:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  810|      0|	case 28: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (810:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  811|      0|		case 1: result = compare_in_aaaa(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (811:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  812|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (812:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  813|      0|		} \
  |  |  814|      0|		break; \
  |  |  815|      0|	case 29: result = compare_loc(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (815:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  816|      0|	case 30: result = compare_nxt(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (816:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  817|      0|	case 31: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (817:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  818|      0|		case 1: result = compare_in_eid(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (818:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  819|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (819:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  820|      0|		} \
  |  |  821|      0|		break; \
  |  |  822|      0|	case 32: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (822:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  823|      0|		case 1: result = compare_in_nimloc(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (823:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  824|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (824:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  825|      0|		} \
  |  |  826|      0|		break; \
  |  |  827|      0|	case 33: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (827:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  828|      0|		case 1: result = compare_in_srv(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (828:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  829|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (829:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  830|      0|		} \
  |  |  831|      0|		break; \
  |  |  832|      0|	case 34: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (832:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  833|      0|		case 1: result = compare_in_atma(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (833:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  834|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (834:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  835|      0|		} \
  |  |  836|      0|		break; \
  |  |  837|      0|	case 35: result = compare_naptr(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (837:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  838|      0|	case 36: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (838:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  839|      0|		case 1: result = compare_in_kx(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (839:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  840|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (840:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  841|      0|		} \
  |  |  842|      0|		break; \
  |  |  843|      0|	case 37: result = compare_cert(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (843:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  844|      0|	case 38: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (844:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  845|      0|		case 1: result = compare_in_a6(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (845:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  846|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (846:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  847|      0|		} \
  |  |  848|      0|		break; \
  |  |  849|  2.55k|	case 39: result = compare_dname(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (849:2): [True: 2.55k, False: 9.55k]
  |  |  ------------------
  |  |  850|      0|	case 40: result = compare_sink(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (850:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  851|  3.59k|	case 41: result = compare_opt(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (851:2): [True: 3.59k, False: 8.51k]
  |  |  ------------------
  |  |  852|      0|	case 42: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (852:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  853|      0|		case 1: result = compare_in_apl(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (853:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  854|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (854:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  855|      0|		} \
  |  |  856|      0|		break; \
  |  |  857|      0|	case 43: result = compare_ds(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (857:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  858|      0|	case 44: result = compare_sshfp(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (858:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  859|      0|	case 45: result = compare_ipseckey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (859:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  860|      0|	case 46: result = compare_rrsig(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (860:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  861|      0|	case 47: result = compare_nsec(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (861:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  862|      0|	case 48: result = compare_dnskey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (862:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  863|      0|	case 49: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (863:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  864|      0|		case 1: result = compare_in_dhcid(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (864:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  865|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (865:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  866|      0|		} \
  |  |  867|      0|		break; \
  |  |  868|      0|	case 50: result = compare_nsec3(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (868:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  869|      0|	case 51: result = compare_nsec3param(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (869:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  870|      0|	case 52: result = compare_tlsa(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (870:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  871|      0|	case 53: result = compare_smimea(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (871:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  872|      0|	case 55: result = compare_hip(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (872:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  873|      0|	case 56: result = compare_ninfo(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (873:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  874|      0|	case 57: result = compare_rkey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (874:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  875|      0|	case 58: result = compare_talink(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (875:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  876|      0|	case 59: result = compare_cds(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (876:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  877|      0|	case 60: result = compare_cdnskey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (877:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  878|      0|	case 61: result = compare_openpgpkey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (878:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  879|      0|	case 62: result = compare_csync(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (879:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  880|      0|	case 63: result = compare_zonemd(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (880:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  881|      0|	case 64: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (881:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  882|      0|		case 1: result = compare_in_svcb(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (882:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  883|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (883:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  884|      0|		} \
  |  |  885|      0|		break; \
  |  |  886|      0|	case 65: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (886:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  887|      0|		case 1: result = compare_in_https(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (887:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  888|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (888:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  889|      0|		} \
  |  |  890|      0|		break; \
  |  |  891|      0|	case 66: result = compare_dsync(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (891:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  892|      0|	case 67: result = compare_hhit(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (892:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  893|      0|	case 68: result = compare_brid(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (893:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  894|      0|	case 99: result = compare_spf(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (894:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  895|      0|	case 104: result = compare_nid(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (895:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  896|      0|	case 105: result = compare_l32(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (896:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  897|      0|	case 106: result = compare_l64(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (897:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  898|      0|	case 107: result = compare_lp(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (898:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  899|      0|	case 108: result = compare_eui48(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (899:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  900|      0|	case 109: result = compare_eui64(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (900:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  901|      0|	case 249: result = compare_tkey(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (901:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  902|      0|	case 250: switch (rdata1->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (902:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  903|      0|		case 255: result = compare_any_tsig(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (903:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  904|      0|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (904:3): [True: 0, False: 0]
  |  |  ------------------
  |  |  905|      0|		} \
  |  |  906|      0|		break; \
  |  |  907|      0|	case 256: result = compare_uri(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (907:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  908|      0|	case 257: result = compare_caa(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (908:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  909|      0|	case 258: result = compare_avc(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (909:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  910|      0|	case 259: result = compare_doa(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (910:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  911|      0|	case 260: result = compare_amtrelay(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (911:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  912|    893|	case 261: result = compare_resinfo(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (912:2): [True: 893, False: 11.2k]
  |  |  ------------------
  |  |  913|      0|	case 262: result = compare_wallet(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (913:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  914|      0|	case 32768: result = compare_ta(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (914:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  915|      0|	case 32769: result = compare_dlv(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (915:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  916|      0|	case 65533: result = compare_keydata(rdata1, rdata2); break; \
  |  |  ------------------
  |  |  |  Branch (916:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  917|      0|	default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (917:2): [True: 0, False: 12.1k]
  |  |  ------------------
  |  |  918|  12.1k|	}
  ------------------
  872|       |
  873|  12.1k|	if (use_default) {
  ------------------
  |  Branch (873:6): [True: 0, False: 12.1k]
  ------------------
  874|      0|		isc_region_t r1;
  875|      0|		isc_region_t r2;
  876|       |
  877|      0|		dns_rdata_toregion(rdata1, &r1);
  878|      0|		dns_rdata_toregion(rdata2, &r2);
  879|      0|		result = isc_region_compare(&r1, &r2);
  880|      0|	}
  881|  12.1k|	return result;
  882|  12.1k|}
dns_rdata_fromregion:
  923|   300k|		     dns_rdatatype_t type, isc_region_t *r) {
  924|   300k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|   300k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   300k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 300k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   300k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  925|   300k|	REQUIRE(DNS_RDATA_INITIALIZED(rdata));
  ------------------
  |  |  198|   300k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.00M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 300k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 300k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 300k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 300k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 300k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 300k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   300k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  926|   300k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   300k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   300k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 300k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   300k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  927|       |
  928|   300k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata));
  ------------------
  |  |  198|   300k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   300k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 300k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   300k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  929|       |
  930|   300k|	rdata->data = r->base;
  931|   300k|	rdata->length = r->length;
  932|   300k|	rdata->rdclass = rdclass;
  933|   300k|	rdata->type = type;
  934|   300k|	rdata->flags = 0;
  935|   300k|}
dns_rdata_toregion:
  938|   342k|dns_rdata_toregion(const dns_rdata_t *rdata, isc_region_t *r) {
  939|   342k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|   342k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   342k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 342k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   342k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  940|   342k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   342k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   342k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 342k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   342k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  941|   342k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata));
  ------------------
  |  |  198|   342k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   342k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 342k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   342k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  942|       |
  943|   342k|	r->base = rdata->data;
  944|   342k|	r->length = rdata->length;
  945|   342k|}
dns_rdata_fromwire:
  950|   350k|		   dns_decompress_t dctx, isc_buffer_t *target) {
  951|   350k|	isc_result_t result = ISC_R_NOTIMPLEMENTED;
  952|   350k|	isc_region_t region;
  953|   350k|	isc_buffer_t ss;
  954|   350k|	isc_buffer_t st;
  955|   350k|	bool use_default = false;
  956|   350k|	uint32_t activelength;
  957|   350k|	unsigned int length;
  958|       |
  959|   350k|	if (rdata != NULL) {
  ------------------
  |  Branch (959:6): [True: 350k, False: 0]
  ------------------
  960|   350k|		REQUIRE(DNS_RDATA_INITIALIZED(rdata));
  ------------------
  |  |  198|   350k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.50M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 350k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 350k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 350k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 350k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 350k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 350k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   350k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  961|   350k|		REQUIRE(DNS_RDATA_VALIDFLAGS(rdata));
  ------------------
  |  |  198|   350k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   350k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 350k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   350k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  962|   350k|	}
  963|   350k|	REQUIRE(source != NULL);
  ------------------
  |  |  198|   350k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   350k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 350k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   350k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  964|   350k|	REQUIRE(target != NULL);
  ------------------
  |  |  198|   350k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   350k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 350k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   350k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  965|       |
  966|   350k|	if (type == dns_rdatatype_none) {
  ------------------
  |  |  114|   350k|#define dns_rdatatype_none	((dns_rdatatype_t)dns_rdatatype_none)
  ------------------
  |  Branch (966:6): [True: 11, False: 350k]
  ------------------
  967|     11|		return DNS_R_FORMERR;
  968|     11|	}
  969|       |
  970|   350k|	ss = *source;
  971|   350k|	st = *target;
  972|       |
  973|   350k|	activelength = isc_buffer_activelength(source);
  ------------------
  |  |  160|   350k|#define isc_buffer_activelength(b)    ((b)->active - (b)->current) /* c-b */
  ------------------
  974|   350k|	INSIST(activelength < 65536);
  ------------------
  |  |  202|   350k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   350k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 350k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   350k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  975|       |
  976|   350k|	FROMWIRESWITCH
  ------------------
  |  |  438|   350k|	switch (type) { \
  |  |  439|  10.3k|	case 1: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (439:2): [True: 10.3k, False: 340k]
  |  |  ------------------
  |  |  440|  3.02k|		case 1: result = fromwire_in_a(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (440:3): [True: 3.02k, False: 7.35k]
  |  |  ------------------
  |  |  441|  1.64k|		case 3: result = fromwire_ch_a(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (441:3): [True: 1.64k, False: 8.73k]
  |  |  ------------------
  |  |  442|  1.24k|		case 4: result = fromwire_hs_a(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (442:3): [True: 1.24k, False: 9.13k]
  |  |  ------------------
  |  |  443|  4.46k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (443:3): [True: 4.46k, False: 5.91k]
  |  |  ------------------
  |  |  444|  10.3k|		} \
  |  |  445|  10.3k|		break; \
  |  |  446|  10.3k|	case 2: result = fromwire_ns(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (446:2): [True: 5.75k, False: 345k]
  |  |  ------------------
  |  |  447|  10.3k|	case 3: result = fromwire_md(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (447:2): [True: 1.81k, False: 349k]
  |  |  ------------------
  |  |  448|  10.3k|	case 4: result = fromwire_mf(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (448:2): [True: 1.04k, False: 349k]
  |  |  ------------------
  |  |  449|  10.3k|	case 5: result = fromwire_cname(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (449:2): [True: 2.47k, False: 348k]
  |  |  ------------------
  |  |  450|  10.3k|	case 6: result = fromwire_soa(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (450:2): [True: 5.44k, False: 345k]
  |  |  ------------------
  |  |  451|  10.3k|	case 7: result = fromwire_mb(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (451:2): [True: 1.24k, False: 349k]
  |  |  ------------------
  |  |  452|  10.3k|	case 8: result = fromwire_mg(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (452:2): [True: 1.14k, False: 349k]
  |  |  ------------------
  |  |  453|  10.3k|	case 9: result = fromwire_mr(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (453:2): [True: 1.34k, False: 349k]
  |  |  ------------------
  |  |  454|  10.3k|	case 10: result = fromwire_null(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (454:2): [True: 4.51k, False: 346k]
  |  |  ------------------
  |  |  455|  10.3k|	case 11: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (455:2): [True: 3.77k, False: 347k]
  |  |  ------------------
  |  |  456|  1.87k|		case 1: result = fromwire_in_wks(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (456:3): [True: 1.87k, False: 1.89k]
  |  |  ------------------
  |  |  457|  1.89k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (457:3): [True: 1.89k, False: 1.87k]
  |  |  ------------------
  |  |  458|  3.77k|		} \
  |  |  459|  3.77k|		break; \
  |  |  460|  3.77k|	case 12: result = fromwire_ptr(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (460:2): [True: 767, False: 350k]
  |  |  ------------------
  |  |  461|  3.77k|	case 13: result = fromwire_hinfo(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (461:2): [True: 1.08k, False: 349k]
  |  |  ------------------
  |  |  462|  3.77k|	case 14: result = fromwire_minfo(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (462:2): [True: 1.81k, False: 349k]
  |  |  ------------------
  |  |  463|  3.77k|	case 15: result = fromwire_mx(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (463:2): [True: 1.12k, False: 349k]
  |  |  ------------------
  |  |  464|  3.77k|	case 16: result = fromwire_txt(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (464:2): [True: 1.33k, False: 349k]
  |  |  ------------------
  |  |  465|  3.77k|	case 17: result = fromwire_rp(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (465:2): [True: 2.61k, False: 348k]
  |  |  ------------------
  |  |  466|  3.77k|	case 18: result = fromwire_afsdb(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (466:2): [True: 1.08k, False: 349k]
  |  |  ------------------
  |  |  467|  3.77k|	case 19: result = fromwire_x25(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (467:2): [True: 823, False: 350k]
  |  |  ------------------
  |  |  468|  3.77k|	case 20: result = fromwire_isdn(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (468:2): [True: 1.07k, False: 349k]
  |  |  ------------------
  |  |  469|  3.77k|	case 21: result = fromwire_rt(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (469:2): [True: 1.45k, False: 349k]
  |  |  ------------------
  |  |  470|  3.77k|	case 22: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (470:2): [True: 3.09k, False: 347k]
  |  |  ------------------
  |  |  471|  1.43k|		case 1: result = fromwire_in_nsap(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (471:3): [True: 1.43k, False: 1.66k]
  |  |  ------------------
  |  |  472|  1.66k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (472:3): [True: 1.66k, False: 1.43k]
  |  |  ------------------
  |  |  473|  3.09k|		} \
  |  |  474|  3.09k|		break; \
  |  |  475|  3.09k|	case 23: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (475:2): [True: 1.92k, False: 348k]
  |  |  ------------------
  |  |  476|    883|		case 1: result = fromwire_in_nsap_ptr(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (476:3): [True: 883, False: 1.04k]
  |  |  ------------------
  |  |  477|  1.04k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (477:3): [True: 1.04k, False: 883]
  |  |  ------------------
  |  |  478|  1.92k|		} \
  |  |  479|  1.92k|		break; \
  |  |  480|  5.35k|	case 24: result = fromwire_sig(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (480:2): [True: 5.35k, False: 345k]
  |  |  ------------------
  |  |  481|  1.92k|	case 25: result = fromwire_key(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (481:2): [True: 1.45k, False: 349k]
  |  |  ------------------
  |  |  482|  2.84k|	case 26: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (482:2): [True: 2.84k, False: 348k]
  |  |  ------------------
  |  |  483|  1.64k|		case 1: result = fromwire_in_px(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (483:3): [True: 1.64k, False: 1.20k]
  |  |  ------------------
  |  |  484|  1.20k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (484:3): [True: 1.20k, False: 1.64k]
  |  |  ------------------
  |  |  485|  2.84k|		} \
  |  |  486|  2.84k|		break; \
  |  |  487|  2.84k|	case 27: result = fromwire_gpos(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (487:2): [True: 1.25k, False: 349k]
  |  |  ------------------
  |  |  488|  3.57k|	case 28: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (488:2): [True: 3.57k, False: 347k]
  |  |  ------------------
  |  |  489|  2.04k|		case 1: result = fromwire_in_aaaa(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (489:3): [True: 2.04k, False: 1.52k]
  |  |  ------------------
  |  |  490|  1.52k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (490:3): [True: 1.52k, False: 2.04k]
  |  |  ------------------
  |  |  491|  3.57k|		} \
  |  |  492|  3.57k|		break; \
  |  |  493|  5.16k|	case 29: result = fromwire_loc(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (493:2): [True: 5.16k, False: 345k]
  |  |  ------------------
  |  |  494|  3.57k|	case 30: result = fromwire_nxt(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (494:2): [True: 2.78k, False: 348k]
  |  |  ------------------
  |  |  495|  6.31k|	case 31: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (495:2): [True: 6.31k, False: 344k]
  |  |  ------------------
  |  |  496|  3.89k|		case 1: result = fromwire_in_eid(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (496:3): [True: 3.89k, False: 2.42k]
  |  |  ------------------
  |  |  497|  2.42k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (497:3): [True: 2.42k, False: 3.89k]
  |  |  ------------------
  |  |  498|  6.31k|		} \
  |  |  499|  6.31k|		break; \
  |  |  500|  6.31k|	case 32: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (500:2): [True: 2.72k, False: 348k]
  |  |  ------------------
  |  |  501|  1.13k|		case 1: result = fromwire_in_nimloc(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (501:3): [True: 1.13k, False: 1.59k]
  |  |  ------------------
  |  |  502|  1.59k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (502:3): [True: 1.59k, False: 1.13k]
  |  |  ------------------
  |  |  503|  2.72k|		} \
  |  |  504|  2.72k|		break; \
  |  |  505|  3.17k|	case 33: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (505:2): [True: 3.17k, False: 347k]
  |  |  ------------------
  |  |  506|    933|		case 1: result = fromwire_in_srv(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (506:3): [True: 933, False: 2.24k]
  |  |  ------------------
  |  |  507|  2.24k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (507:3): [True: 2.24k, False: 933]
  |  |  ------------------
  |  |  508|  3.17k|		} \
  |  |  509|  3.17k|		break; \
  |  |  510|  4.09k|	case 34: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (510:2): [True: 4.09k, False: 346k]
  |  |  ------------------
  |  |  511|  2.61k|		case 1: result = fromwire_in_atma(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (511:3): [True: 2.61k, False: 1.47k]
  |  |  ------------------
  |  |  512|  1.47k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (512:3): [True: 1.47k, False: 2.61k]
  |  |  ------------------
  |  |  513|  4.09k|		} \
  |  |  514|  4.09k|		break; \
  |  |  515|  6.95k|	case 35: result = fromwire_naptr(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (515:2): [True: 6.95k, False: 343k]
  |  |  ------------------
  |  |  516|  4.09k|	case 36: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (516:2): [True: 3.82k, False: 347k]
  |  |  ------------------
  |  |  517|  1.85k|		case 1: result = fromwire_in_kx(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (517:3): [True: 1.85k, False: 1.96k]
  |  |  ------------------
  |  |  518|  1.96k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (518:3): [True: 1.96k, False: 1.85k]
  |  |  ------------------
  |  |  519|  3.82k|		} \
  |  |  520|  3.82k|		break; \
  |  |  521|  3.82k|	case 37: result = fromwire_cert(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (521:2): [True: 3.11k, False: 347k]
  |  |  ------------------
  |  |  522|  3.82k|	case 38: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (522:2): [True: 3.62k, False: 347k]
  |  |  ------------------
  |  |  523|  2.07k|		case 1: result = fromwire_in_a6(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (523:3): [True: 2.07k, False: 1.55k]
  |  |  ------------------
  |  |  524|  1.55k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (524:3): [True: 1.55k, False: 2.07k]
  |  |  ------------------
  |  |  525|  3.62k|		} \
  |  |  526|  3.62k|		break; \
  |  |  527|  3.62k|	case 39: result = fromwire_dname(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (527:2): [True: 3.54k, False: 347k]
  |  |  ------------------
  |  |  528|  3.62k|	case 40: result = fromwire_sink(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (528:2): [True: 1.87k, False: 349k]
  |  |  ------------------
  |  |  529|  10.4k|	case 41: result = fromwire_opt(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (529:2): [True: 10.4k, False: 340k]
  |  |  ------------------
  |  |  530|  3.96k|	case 42: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (530:2): [True: 3.96k, False: 346k]
  |  |  ------------------
  |  |  531|  2.76k|		case 1: result = fromwire_in_apl(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (531:3): [True: 2.76k, False: 1.20k]
  |  |  ------------------
  |  |  532|  1.20k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (532:3): [True: 1.20k, False: 2.76k]
  |  |  ------------------
  |  |  533|  3.96k|		} \
  |  |  534|  3.96k|		break; \
  |  |  535|  3.96k|	case 43: result = fromwire_ds(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (535:2): [True: 1.47k, False: 349k]
  |  |  ------------------
  |  |  536|  3.96k|	case 44: result = fromwire_sshfp(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (536:2): [True: 2.11k, False: 348k]
  |  |  ------------------
  |  |  537|  3.96k|	case 45: result = fromwire_ipseckey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (537:2): [True: 3.62k, False: 347k]
  |  |  ------------------
  |  |  538|  5.55k|	case 46: result = fromwire_rrsig(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (538:2): [True: 5.55k, False: 345k]
  |  |  ------------------
  |  |  539|  3.96k|	case 47: result = fromwire_nsec(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (539:2): [True: 2.47k, False: 348k]
  |  |  ------------------
  |  |  540|  3.96k|	case 48: result = fromwire_dnskey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (540:2): [True: 2.65k, False: 348k]
  |  |  ------------------
  |  |  541|  4.83k|	case 49: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (541:2): [True: 4.83k, False: 346k]
  |  |  ------------------
  |  |  542|  1.22k|		case 1: result = fromwire_in_dhcid(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (542:3): [True: 1.22k, False: 3.60k]
  |  |  ------------------
  |  |  543|  3.60k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (543:3): [True: 3.60k, False: 1.22k]
  |  |  ------------------
  |  |  544|  4.83k|		} \
  |  |  545|  4.83k|		break; \
  |  |  546|  4.87k|	case 50: result = fromwire_nsec3(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (546:2): [True: 4.87k, False: 346k]
  |  |  ------------------
  |  |  547|  4.83k|	case 51: result = fromwire_nsec3param(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (547:2): [True: 1.18k, False: 349k]
  |  |  ------------------
  |  |  548|  4.83k|	case 52: result = fromwire_tlsa(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (548:2): [True: 1.69k, False: 349k]
  |  |  ------------------
  |  |  549|  4.83k|	case 53: result = fromwire_smimea(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (549:2): [True: 1.16k, False: 349k]
  |  |  ------------------
  |  |  550|  49.8k|	case 55: result = fromwire_hip(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (550:2): [True: 49.8k, False: 301k]
  |  |  ------------------
  |  |  551|  4.83k|	case 56: result = fromwire_ninfo(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (551:2): [True: 857, False: 350k]
  |  |  ------------------
  |  |  552|  4.83k|	case 57: result = fromwire_rkey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (552:2): [True: 1.37k, False: 349k]
  |  |  ------------------
  |  |  553|  4.83k|	case 58: result = fromwire_talink(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (553:2): [True: 3.34k, False: 347k]
  |  |  ------------------
  |  |  554|  4.83k|	case 59: result = fromwire_cds(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (554:2): [True: 1.22k, False: 349k]
  |  |  ------------------
  |  |  555|  4.83k|	case 60: result = fromwire_cdnskey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (555:2): [True: 1.21k, False: 349k]
  |  |  ------------------
  |  |  556|  4.83k|	case 61: result = fromwire_openpgpkey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (556:2): [True: 1.41k, False: 349k]
  |  |  ------------------
  |  |  557|  4.83k|	case 62: result = fromwire_csync(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (557:2): [True: 2.25k, False: 348k]
  |  |  ------------------
  |  |  558|  4.83k|	case 63: result = fromwire_zonemd(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (558:2): [True: 1.89k, False: 349k]
  |  |  ------------------
  |  |  559|  7.38k|	case 64: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (559:2): [True: 7.38k, False: 343k]
  |  |  ------------------
  |  |  560|  5.43k|		case 1: result = fromwire_in_svcb(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (560:3): [True: 5.43k, False: 1.95k]
  |  |  ------------------
  |  |  561|  1.95k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (561:3): [True: 1.95k, False: 5.43k]
  |  |  ------------------
  |  |  562|  7.38k|		} \
  |  |  563|  7.38k|		break; \
  |  |  564|  7.38k|	case 65: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (564:2): [True: 4.92k, False: 345k]
  |  |  ------------------
  |  |  565|  2.98k|		case 1: result = fromwire_in_https(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (565:3): [True: 2.98k, False: 1.93k]
  |  |  ------------------
  |  |  566|  1.93k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (566:3): [True: 1.93k, False: 2.98k]
  |  |  ------------------
  |  |  567|  4.92k|		} \
  |  |  568|  4.92k|		break; \
  |  |  569|  4.92k|	case 66: result = fromwire_dsync(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (569:2): [True: 1.48k, False: 349k]
  |  |  ------------------
  |  |  570|  4.92k|	case 67: result = fromwire_hhit(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (570:2): [True: 1.21k, False: 349k]
  |  |  ------------------
  |  |  571|  4.92k|	case 68: result = fromwire_brid(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (571:2): [True: 1.59k, False: 349k]
  |  |  ------------------
  |  |  572|  4.92k|	case 99: result = fromwire_spf(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (572:2): [True: 1.01k, False: 349k]
  |  |  ------------------
  |  |  573|  4.92k|	case 104: result = fromwire_nid(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (573:2): [True: 1.29k, False: 349k]
  |  |  ------------------
  |  |  574|  4.92k|	case 105: result = fromwire_l32(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (574:2): [True: 1.91k, False: 348k]
  |  |  ------------------
  |  |  575|  4.92k|	case 106: result = fromwire_l64(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (575:2): [True: 1.16k, False: 349k]
  |  |  ------------------
  |  |  576|  4.92k|	case 107: result = fromwire_lp(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (576:2): [True: 838, False: 350k]
  |  |  ------------------
  |  |  577|  4.92k|	case 108: result = fromwire_eui48(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (577:2): [True: 1.13k, False: 349k]
  |  |  ------------------
  |  |  578|  4.92k|	case 109: result = fromwire_eui64(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (578:2): [True: 1.07k, False: 349k]
  |  |  ------------------
  |  |  579|  4.92k|	case 249: result = fromwire_tkey(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (579:2): [True: 3.32k, False: 347k]
  |  |  ------------------
  |  |  580|  6.68k|	case 250: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (580:2): [True: 6.68k, False: 344k]
  |  |  ------------------
  |  |  581|  3.05k|		case 255: result = fromwire_any_tsig(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (581:3): [True: 3.05k, False: 3.62k]
  |  |  ------------------
  |  |  582|  3.62k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (582:3): [True: 3.62k, False: 3.05k]
  |  |  ------------------
  |  |  583|  6.68k|		} \
  |  |  584|  6.68k|		break; \
  |  |  585|  6.68k|	case 256: result = fromwire_uri(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (585:2): [True: 1.84k, False: 349k]
  |  |  ------------------
  |  |  586|  6.68k|	case 257: result = fromwire_caa(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (586:2): [True: 1.57k, False: 349k]
  |  |  ------------------
  |  |  587|  6.68k|	case 258: result = fromwire_avc(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (587:2): [True: 1.53k, False: 349k]
  |  |  ------------------
  |  |  588|  6.68k|	case 259: result = fromwire_doa(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (588:2): [True: 1.58k, False: 349k]
  |  |  ------------------
  |  |  589|  6.68k|	case 260: result = fromwire_amtrelay(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (589:2): [True: 5.34k, False: 345k]
  |  |  ------------------
  |  |  590|  6.68k|	case 261: result = fromwire_resinfo(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (590:2): [True: 1.66k, False: 349k]
  |  |  ------------------
  |  |  591|  6.68k|	case 262: result = fromwire_wallet(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (591:2): [True: 1.19k, False: 349k]
  |  |  ------------------
  |  |  592|  6.68k|	case 32768: result = fromwire_ta(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (592:2): [True: 722, False: 350k]
  |  |  ------------------
  |  |  593|  6.68k|	case 32769: result = fromwire_dlv(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (593:2): [True: 798, False: 350k]
  |  |  ------------------
  |  |  594|  6.68k|	case 65533: result = fromwire_keydata(rdclass, type, source, dctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (594:2): [True: 1.79k, False: 349k]
  |  |  ------------------
  |  |  595|  69.5k|	default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (595:2): [True: 69.5k, False: 281k]
  |  |  ------------------
  |  |  596|   350k|	}
  ------------------
  977|       |
  978|   350k|	if (use_default) {
  ------------------
  |  Branch (978:6): [True: 104k, False: 246k]
  ------------------
  979|   104k|		if (activelength > isc_buffer_availablelength(target)) {
  ------------------
  |  |  161|   104k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (979:7): [True: 567, False: 104k]
  ------------------
  980|    567|			result = ISC_R_NOSPACE;
  981|   104k|		} else {
  982|   104k|			isc_buffer_putmem(target, isc_buffer_current(source),
  ------------------
  |  |  145|   104k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  983|   104k|					  activelength);
  984|   104k|			isc_buffer_forward(source, activelength);
  985|   104k|			result = ISC_R_SUCCESS;
  986|   104k|		}
  987|   104k|	}
  988|       |
  989|       |	/*
  990|       |	 * Reject any rdata that expands out to more than DNS_RDATA_MAXLENGTH
  991|       |	 * as we cannot transmit it.
  992|       |	 */
  993|   350k|	length = isc_buffer_usedlength(target) - isc_buffer_usedlength(&st);
  ------------------
  |  |  157|   350k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
              	length = isc_buffer_usedlength(target) - isc_buffer_usedlength(&st);
  ------------------
  |  |  157|   350k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
  994|   350k|	if (result == ISC_R_SUCCESS && length > DNS_RDATA_MAXLENGTH) {
  ------------------
  |  |  181|   300k|#define DNS_RDATA_MAXLENGTH 65512U
  ------------------
  |  Branch (994:6): [True: 300k, False: 50.6k]
  |  Branch (994:33): [True: 1, False: 300k]
  ------------------
  995|      1|		result = DNS_R_FORMERR;
  996|      1|	}
  997|       |
  998|       |	/*
  999|       |	 * We should have consumed all of our buffer.
 1000|       |	 */
 1001|   350k|	if (result == ISC_R_SUCCESS && !buffer_empty(source)) {
  ------------------
  |  Branch (1001:6): [True: 300k, False: 50.6k]
  |  Branch (1001:33): [True: 119, False: 300k]
  ------------------
 1002|    119|		result = DNS_R_EXTRADATA;
 1003|    119|	}
 1004|       |
 1005|   350k|	if (rdata != NULL && result == ISC_R_SUCCESS) {
  ------------------
  |  Branch (1005:6): [True: 350k, False: 0]
  |  Branch (1005:23): [True: 300k, False: 50.8k]
  ------------------
 1006|   300k|		region.base = isc_buffer_used(&st);
  ------------------
  |  |  149|   300k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1007|   300k|		region.length = length;
 1008|   300k|		dns_rdata_fromregion(rdata, rdclass, type, &region);
 1009|   300k|	}
 1010|       |
 1011|   350k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1011:6): [True: 50.8k, False: 300k]
  ------------------
 1012|  50.8k|		*source = ss;
 1013|  50.8k|		*target = st;
 1014|  50.8k|	}
 1015|   350k|	return result;
 1016|   350k|}
dns_rdata_towire:
 1020|   131k|		 isc_buffer_t *target) {
 1021|   131k|	isc_result_t result = ISC_R_NOTIMPLEMENTED;
 1022|   131k|	bool use_default = false;
 1023|   131k|	isc_region_t tr;
 1024|   131k|	isc_buffer_t st;
 1025|       |
 1026|   131k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|   131k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   131k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 131k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   131k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1027|   131k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata));
  ------------------
  |  |  198|   131k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   131k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 131k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   131k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1028|       |
 1029|       |	/*
 1030|       |	 * Some DynDNS meta-RRs have empty rdata.
 1031|       |	 */
 1032|   131k|	if ((rdata->flags & DNS_RDATA_UPDATE) != 0) {
  ------------------
  |  |  166|   131k|#define DNS_RDATA_UPDATE  0x0001 /*%< update pseudo record. */
  ------------------
  |  Branch (1032:6): [True: 1.02k, False: 130k]
  ------------------
 1033|  1.02k|		INSIST(rdata->length == 0);
  ------------------
  |  |  202|  1.02k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.02k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.02k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.02k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1034|  1.02k|		return ISC_R_SUCCESS;
 1035|  1.02k|	}
 1036|       |
 1037|   130k|	st = *target;
 1038|       |
 1039|   130k|	TOWIRESWITCH
  ------------------
  |  |  599|   130k|	switch (rdata->type) { \
  |  |  600|  4.09k|	case 1: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (600:2): [True: 4.09k, False: 126k]
  |  |  ------------------
  |  |  601|  1.22k|		case 1: result = towire_in_a(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (601:3): [True: 1.22k, False: 2.86k]
  |  |  ------------------
  |  |  602|    420|		case 3: result = towire_ch_a(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (602:3): [True: 420, False: 3.67k]
  |  |  ------------------
  |  |  603|    381|		case 4: result = towire_hs_a(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (603:3): [True: 381, False: 3.71k]
  |  |  ------------------
  |  |  604|  2.06k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (604:3): [True: 2.06k, False: 2.02k]
  |  |  ------------------
  |  |  605|  4.09k|		} \
  |  |  606|  4.09k|		break; \
  |  |  607|  4.09k|	case 2: result = towire_ns(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (607:2): [True: 2.43k, False: 128k]
  |  |  ------------------
  |  |  608|  4.09k|	case 3: result = towire_md(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (608:2): [True: 902, False: 129k]
  |  |  ------------------
  |  |  609|  4.09k|	case 4: result = towire_mf(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (609:2): [True: 505, False: 130k]
  |  |  ------------------
  |  |  610|  4.09k|	case 5: result = towire_cname(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (610:2): [True: 1.21k, False: 129k]
  |  |  ------------------
  |  |  611|  4.09k|	case 6: result = towire_soa(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (611:2): [True: 2.33k, False: 128k]
  |  |  ------------------
  |  |  612|  4.09k|	case 7: result = towire_mb(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (612:2): [True: 595, False: 130k]
  |  |  ------------------
  |  |  613|  4.09k|	case 8: result = towire_mg(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (613:2): [True: 556, False: 130k]
  |  |  ------------------
  |  |  614|  4.09k|	case 9: result = towire_mr(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (614:2): [True: 662, False: 130k]
  |  |  ------------------
  |  |  615|  4.09k|	case 10: result = towire_null(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (615:2): [True: 2.10k, False: 128k]
  |  |  ------------------
  |  |  616|  4.09k|	case 11: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (616:2): [True: 1.91k, False: 128k]
  |  |  ------------------
  |  |  617|    866|		case 1: result = towire_in_wks(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (617:3): [True: 866, False: 1.04k]
  |  |  ------------------
  |  |  618|  1.04k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (618:3): [True: 1.04k, False: 866]
  |  |  ------------------
  |  |  619|  1.91k|		} \
  |  |  620|  1.91k|		break; \
  |  |  621|  1.91k|	case 12: result = towire_ptr(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (621:2): [True: 376, False: 130k]
  |  |  ------------------
  |  |  622|  1.91k|	case 13: result = towire_hinfo(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (622:2): [True: 316, False: 130k]
  |  |  ------------------
  |  |  623|  1.91k|	case 14: result = towire_minfo(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (623:2): [True: 713, False: 129k]
  |  |  ------------------
  |  |  624|  1.91k|	case 15: result = towire_mx(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (624:2): [True: 473, False: 130k]
  |  |  ------------------
  |  |  625|  1.91k|	case 16: result = towire_txt(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (625:2): [True: 606, False: 130k]
  |  |  ------------------
  |  |  626|  1.91k|	case 17: result = towire_rp(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (626:2): [True: 1.05k, False: 129k]
  |  |  ------------------
  |  |  627|  1.91k|	case 18: result = towire_afsdb(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (627:2): [True: 450, False: 130k]
  |  |  ------------------
  |  |  628|  1.91k|	case 19: result = towire_x25(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (628:2): [True: 428, False: 130k]
  |  |  ------------------
  |  |  629|  1.91k|	case 20: result = towire_isdn(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (629:2): [True: 516, False: 130k]
  |  |  ------------------
  |  |  630|  1.91k|	case 21: result = towire_rt(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (630:2): [True: 503, False: 130k]
  |  |  ------------------
  |  |  631|  1.91k|	case 22: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (631:2): [True: 1.50k, False: 129k]
  |  |  ------------------
  |  |  632|    682|		case 1: result = towire_in_nsap(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (632:3): [True: 682, False: 821]
  |  |  ------------------
  |  |  633|    821|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (633:3): [True: 821, False: 682]
  |  |  ------------------
  |  |  634|  1.50k|		} \
  |  |  635|  1.50k|		break; \
  |  |  636|  1.50k|	case 23: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (636:2): [True: 960, False: 129k]
  |  |  ------------------
  |  |  637|    440|		case 1: result = towire_in_nsap_ptr(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (637:3): [True: 440, False: 520]
  |  |  ------------------
  |  |  638|    520|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (638:3): [True: 520, False: 440]
  |  |  ------------------
  |  |  639|    960|		} \
  |  |  640|    960|		break; \
  |  |  641|  2.09k|	case 24: result = towire_sig(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (641:2): [True: 2.09k, False: 128k]
  |  |  ------------------
  |  |  642|    960|	case 25: result = towire_key(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (642:2): [True: 700, False: 129k]
  |  |  ------------------
  |  |  643|    960|	case 26: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (643:2): [True: 952, False: 129k]
  |  |  ------------------
  |  |  644|    358|		case 1: result = towire_in_px(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (644:3): [True: 358, False: 594]
  |  |  ------------------
  |  |  645|    594|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (645:3): [True: 594, False: 358]
  |  |  ------------------
  |  |  646|    952|		} \
  |  |  647|    952|		break; \
  |  |  648|    952|	case 27: result = towire_gpos(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (648:2): [True: 563, False: 130k]
  |  |  ------------------
  |  |  649|  1.39k|	case 28: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (649:2): [True: 1.39k, False: 129k]
  |  |  ------------------
  |  |  650|    672|		case 1: result = towire_in_aaaa(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (650:3): [True: 672, False: 725]
  |  |  ------------------
  |  |  651|    725|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (651:3): [True: 725, False: 672]
  |  |  ------------------
  |  |  652|  1.39k|		} \
  |  |  653|  1.39k|		break; \
  |  |  654|  2.31k|	case 29: result = towire_loc(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (654:2): [True: 2.31k, False: 128k]
  |  |  ------------------
  |  |  655|  1.39k|	case 30: result = towire_nxt(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (655:2): [True: 1.31k, False: 129k]
  |  |  ------------------
  |  |  656|  2.73k|	case 31: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (656:2): [True: 2.73k, False: 127k]
  |  |  ------------------
  |  |  657|  1.56k|		case 1: result = towire_in_eid(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (657:3): [True: 1.56k, False: 1.17k]
  |  |  ------------------
  |  |  658|  1.17k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (658:3): [True: 1.17k, False: 1.56k]
  |  |  ------------------
  |  |  659|  2.73k|		} \
  |  |  660|  2.73k|		break; \
  |  |  661|  2.73k|	case 32: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (661:2): [True: 1.16k, False: 129k]
  |  |  ------------------
  |  |  662|    364|		case 1: result = towire_in_nimloc(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (662:3): [True: 364, False: 796]
  |  |  ------------------
  |  |  663|    796|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (663:3): [True: 796, False: 364]
  |  |  ------------------
  |  |  664|  1.16k|		} \
  |  |  665|  1.16k|		break; \
  |  |  666|  1.47k|	case 33: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (666:2): [True: 1.47k, False: 129k]
  |  |  ------------------
  |  |  667|    389|		case 1: result = towire_in_srv(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (667:3): [True: 389, False: 1.08k]
  |  |  ------------------
  |  |  668|  1.08k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (668:3): [True: 1.08k, False: 389]
  |  |  ------------------
  |  |  669|  1.47k|		} \
  |  |  670|  1.47k|		break; \
  |  |  671|  1.96k|	case 34: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (671:2): [True: 1.96k, False: 128k]
  |  |  ------------------
  |  |  672|  1.22k|		case 1: result = towire_in_atma(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (672:3): [True: 1.22k, False: 744]
  |  |  ------------------
  |  |  673|    744|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (673:3): [True: 744, False: 1.22k]
  |  |  ------------------
  |  |  674|  1.96k|		} \
  |  |  675|  1.96k|		break; \
  |  |  676|  2.24k|	case 35: result = towire_naptr(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (676:2): [True: 2.24k, False: 128k]
  |  |  ------------------
  |  |  677|  1.96k|	case 36: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (677:2): [True: 1.68k, False: 129k]
  |  |  ------------------
  |  |  678|    705|		case 1: result = towire_in_kx(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (678:3): [True: 705, False: 980]
  |  |  ------------------
  |  |  679|    980|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (679:3): [True: 980, False: 705]
  |  |  ------------------
  |  |  680|  1.68k|		} \
  |  |  681|  1.68k|		break; \
  |  |  682|  1.68k|	case 37: result = towire_cert(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (682:2): [True: 1.41k, False: 129k]
  |  |  ------------------
  |  |  683|  1.68k|	case 38: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (683:2): [True: 1.33k, False: 129k]
  |  |  ------------------
  |  |  684|    591|		case 1: result = towire_in_a6(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (684:3): [True: 591, False: 742]
  |  |  ------------------
  |  |  685|    742|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (685:3): [True: 742, False: 591]
  |  |  ------------------
  |  |  686|  1.33k|		} \
  |  |  687|  1.33k|		break; \
  |  |  688|  1.61k|	case 39: result = towire_dname(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (688:2): [True: 1.61k, False: 129k]
  |  |  ------------------
  |  |  689|  1.33k|	case 40: result = towire_sink(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (689:2): [True: 697, False: 129k]
  |  |  ------------------
  |  |  690|  4.63k|	case 41: result = towire_opt(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (690:2): [True: 4.63k, False: 126k]
  |  |  ------------------
  |  |  691|  1.83k|	case 42: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (691:2): [True: 1.83k, False: 128k]
  |  |  ------------------
  |  |  692|  1.24k|		case 1: result = towire_in_apl(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (692:3): [True: 1.24k, False: 590]
  |  |  ------------------
  |  |  693|    590|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (693:3): [True: 590, False: 1.24k]
  |  |  ------------------
  |  |  694|  1.83k|		} \
  |  |  695|  1.83k|		break; \
  |  |  696|  1.83k|	case 43: result = towire_ds(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (696:2): [True: 530, False: 130k]
  |  |  ------------------
  |  |  697|  1.83k|	case 44: result = towire_sshfp(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (697:2): [True: 925, False: 129k]
  |  |  ------------------
  |  |  698|  1.83k|	case 45: result = towire_ipseckey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (698:2): [True: 1.08k, False: 129k]
  |  |  ------------------
  |  |  699|  2.07k|	case 46: result = towire_rrsig(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (699:2): [True: 2.07k, False: 128k]
  |  |  ------------------
  |  |  700|  1.83k|	case 47: result = towire_nsec(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (700:2): [True: 1.14k, False: 129k]
  |  |  ------------------
  |  |  701|  1.83k|	case 48: result = towire_dnskey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (701:2): [True: 1.12k, False: 129k]
  |  |  ------------------
  |  |  702|  1.99k|	case 49: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (702:2): [True: 1.99k, False: 128k]
  |  |  ------------------
  |  |  703|    386|		case 1: result = towire_in_dhcid(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (703:3): [True: 386, False: 1.60k]
  |  |  ------------------
  |  |  704|  1.60k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (704:3): [True: 1.60k, False: 386]
  |  |  ------------------
  |  |  705|  1.99k|		} \
  |  |  706|  1.99k|		break; \
  |  |  707|  2.12k|	case 50: result = towire_nsec3(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (707:2): [True: 2.12k, False: 128k]
  |  |  ------------------
  |  |  708|  1.99k|	case 51: result = towire_nsec3param(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (708:2): [True: 508, False: 130k]
  |  |  ------------------
  |  |  709|  1.99k|	case 52: result = towire_tlsa(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (709:2): [True: 644, False: 130k]
  |  |  ------------------
  |  |  710|  1.99k|	case 53: result = towire_smimea(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (710:2): [True: 535, False: 130k]
  |  |  ------------------
  |  |  711|  3.22k|	case 55: result = towire_hip(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (711:2): [True: 3.22k, False: 127k]
  |  |  ------------------
  |  |  712|  1.99k|	case 56: result = towire_ninfo(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (712:2): [True: 362, False: 130k]
  |  |  ------------------
  |  |  713|  1.99k|	case 57: result = towire_rkey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (713:2): [True: 688, False: 129k]
  |  |  ------------------
  |  |  714|  1.99k|	case 58: result = towire_talink(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (714:2): [True: 1.37k, False: 129k]
  |  |  ------------------
  |  |  715|  1.99k|	case 59: result = towire_cds(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (715:2): [True: 585, False: 130k]
  |  |  ------------------
  |  |  716|  1.99k|	case 60: result = towire_cdnskey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (716:2): [True: 585, False: 130k]
  |  |  ------------------
  |  |  717|  1.99k|	case 61: result = towire_openpgpkey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (717:2): [True: 487, False: 130k]
  |  |  ------------------
  |  |  718|  1.99k|	case 62: result = towire_csync(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (718:2): [True: 664, False: 130k]
  |  |  ------------------
  |  |  719|  1.99k|	case 63: result = towire_zonemd(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (719:2): [True: 636, False: 130k]
  |  |  ------------------
  |  |  720|  2.51k|	case 64: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (720:2): [True: 2.51k, False: 128k]
  |  |  ------------------
  |  |  721|  1.57k|		case 1: result = towire_in_svcb(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (721:3): [True: 1.57k, False: 944]
  |  |  ------------------
  |  |  722|    944|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (722:3): [True: 944, False: 1.57k]
  |  |  ------------------
  |  |  723|  2.51k|		} \
  |  |  724|  2.51k|		break; \
  |  |  725|  2.51k|	case 65: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (725:2): [True: 2.31k, False: 128k]
  |  |  ------------------
  |  |  726|  1.37k|		case 1: result = towire_in_https(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (726:3): [True: 1.37k, False: 946]
  |  |  ------------------
  |  |  727|    946|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (727:3): [True: 946, False: 1.37k]
  |  |  ------------------
  |  |  728|  2.31k|		} \
  |  |  729|  2.31k|		break; \
  |  |  730|  2.31k|	case 66: result = towire_dsync(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (730:2): [True: 537, False: 130k]
  |  |  ------------------
  |  |  731|  2.31k|	case 67: result = towire_hhit(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (731:2): [True: 484, False: 130k]
  |  |  ------------------
  |  |  732|  2.31k|	case 68: result = towire_brid(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (732:2): [True: 448, False: 130k]
  |  |  ------------------
  |  |  733|  2.31k|	case 99: result = towire_spf(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (733:2): [True: 438, False: 130k]
  |  |  ------------------
  |  |  734|  2.31k|	case 104: result = towire_nid(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (734:2): [True: 430, False: 130k]
  |  |  ------------------
  |  |  735|  2.31k|	case 105: result = towire_l32(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (735:2): [True: 716, False: 129k]
  |  |  ------------------
  |  |  736|  2.31k|	case 106: result = towire_l64(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (736:2): [True: 387, False: 130k]
  |  |  ------------------
  |  |  737|  2.31k|	case 107: result = towire_lp(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (737:2): [True: 355, False: 130k]
  |  |  ------------------
  |  |  738|  2.31k|	case 108: result = towire_eui48(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (738:2): [True: 371, False: 130k]
  |  |  ------------------
  |  |  739|  2.31k|	case 109: result = towire_eui64(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (739:2): [True: 337, False: 130k]
  |  |  ------------------
  |  |  740|  2.31k|	case 249: result = towire_tkey(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (740:2): [True: 1.01k, False: 129k]
  |  |  ------------------
  |  |  741|  2.31k|	case 250: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (741:2): [True: 2.13k, False: 128k]
  |  |  ------------------
  |  |  742|    573|		case 255: result = towire_any_tsig(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (742:3): [True: 573, False: 1.56k]
  |  |  ------------------
  |  |  743|  1.56k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (743:3): [True: 1.56k, False: 573]
  |  |  ------------------
  |  |  744|  2.13k|		} \
  |  |  745|  2.13k|		break; \
  |  |  746|  2.13k|	case 256: result = towire_uri(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (746:2): [True: 806, False: 129k]
  |  |  ------------------
  |  |  747|  2.13k|	case 257: result = towire_caa(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (747:2): [True: 375, False: 130k]
  |  |  ------------------
  |  |  748|  2.13k|	case 258: result = towire_avc(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (748:2): [True: 580, False: 130k]
  |  |  ------------------
  |  |  749|  2.13k|	case 259: result = towire_doa(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (749:2): [True: 588, False: 130k]
  |  |  ------------------
  |  |  750|  2.13k|	case 260: result = towire_amtrelay(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (750:2): [True: 1.79k, False: 128k]
  |  |  ------------------
  |  |  751|  2.13k|	case 261: result = towire_resinfo(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (751:2): [True: 542, False: 130k]
  |  |  ------------------
  |  |  752|  2.13k|	case 262: result = towire_wallet(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (752:2): [True: 409, False: 130k]
  |  |  ------------------
  |  |  753|  2.13k|	case 32768: result = towire_ta(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (753:2): [True: 344, False: 130k]
  |  |  ------------------
  |  |  754|  2.13k|	case 32769: result = towire_dlv(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (754:2): [True: 388, False: 130k]
  |  |  ------------------
  |  |  755|  2.13k|	case 65533: result = towire_keydata(rdata, cctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (755:2): [True: 807, False: 129k]
  |  |  ------------------
  |  |  756|  32.9k|	default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (756:2): [True: 32.9k, False: 97.7k]
  |  |  ------------------
  |  |  757|   130k|	}
  ------------------
 1040|       |
 1041|   130k|	if (use_default) {
  ------------------
  |  Branch (1041:6): [True: 49.8k, False: 80.7k]
  ------------------
 1042|  49.8k|		isc_buffer_availableregion(target, &tr);
 1043|  49.8k|		if (tr.length < rdata->length) {
  ------------------
  |  Branch (1043:7): [True: 1, False: 49.8k]
  ------------------
 1044|      1|			return ISC_R_NOSPACE;
 1045|      1|		}
 1046|  49.8k|		memmove(tr.base, rdata->data, rdata->length);
 1047|  49.8k|		isc_buffer_add(target, rdata->length);
 1048|  49.8k|		return ISC_R_SUCCESS;
 1049|  49.8k|	}
 1050|  80.7k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1050:6): [True: 143, False: 80.6k]
  ------------------
 1051|    143|		*target = st;
 1052|    143|		dns_compress_rollback(cctx, target->used);
 1053|    143|	}
 1054|  80.7k|	return result;
 1055|   130k|}
dns_rdata_tofmttext:
 1347|   255k|		    isc_buffer_t *target) {
 1348|   255k|	dns_rdata_textctx_t tctx;
 1349|       |
 1350|   255k|	REQUIRE(DNS_RDATA_VALIDFLAGS(rdata));
  ------------------
  |  |  198|   255k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   255k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 255k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   255k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1351|       |
 1352|       |	/*
 1353|       |	 * Set up formatting options for formatted output.
 1354|       |	 */
 1355|   255k|	tctx.origin = origin;
 1356|   255k|	tctx.flags = flags;
 1357|   255k|	if (split_width == 0xffffffff) {
  ------------------
  |  Branch (1357:6): [True: 255k, False: 0]
  ------------------
 1358|   255k|		tctx.width = width;
 1359|   255k|	} else {
 1360|      0|		tctx.width = split_width;
 1361|      0|	}
 1362|       |
 1363|   255k|	if ((flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|   255k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (1363:6): [True: 0, False: 255k]
  ------------------
 1364|      0|		tctx.linebreak = linebreak;
 1365|   255k|	} else {
 1366|   255k|		if (split_width == 0xffffffff) {
  ------------------
  |  Branch (1366:7): [True: 255k, False: 0]
  ------------------
 1367|   255k|			tctx.width = 60; /* Used for hex word length only. */
 1368|   255k|		}
 1369|   255k|		tctx.linebreak = " ";
 1370|   255k|	}
 1371|   255k|	return rdata_totext(rdata, &tctx, target);
 1372|   255k|}
dns_rdata_checkowner:
 1490|  5.66k|		     dns_rdatatype_t type, bool wildcard) {
 1491|  5.66k|	bool result;
 1492|       |
 1493|  5.66k|	CHECKOWNERSWITCH
  ------------------
  |  | 1887|  5.66k|	switch (type) { \
  |  | 1888|      0|	case 1: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1888:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1889|      0|		case 1: result = checkowner_in_a(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1889:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1890|      0|		case 3: result = checkowner_ch_a(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1890:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1891|      0|		case 4: result = checkowner_hs_a(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1891:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1892|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1892:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1893|      0|		} \
  |  | 1894|      0|		break; \
  |  | 1895|      0|	case 2: result = checkowner_ns(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1895:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1896|      0|	case 3: result = checkowner_md(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1896:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1897|      0|	case 4: result = checkowner_mf(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1897:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1898|      0|	case 5: result = checkowner_cname(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1898:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1899|      0|	case 6: result = checkowner_soa(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1899:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1900|      0|	case 7: result = checkowner_mb(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1900:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1901|      0|	case 8: result = checkowner_mg(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1901:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1902|      0|	case 9: result = checkowner_mr(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1902:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1903|      0|	case 10: result = checkowner_null(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1903:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1904|      0|	case 11: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1904:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1905|      0|		case 1: result = checkowner_in_wks(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1905:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1906|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1906:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1907|      0|		} \
  |  | 1908|      0|		break; \
  |  | 1909|      0|	case 12: result = checkowner_ptr(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1909:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1910|      0|	case 13: result = checkowner_hinfo(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1910:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1911|      0|	case 14: result = checkowner_minfo(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1911:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1912|      0|	case 15: result = checkowner_mx(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1912:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1913|      0|	case 16: result = checkowner_txt(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1913:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1914|      0|	case 17: result = checkowner_rp(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1914:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1915|      0|	case 18: result = checkowner_afsdb(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1915:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1916|      0|	case 19: result = checkowner_x25(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1916:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1917|      0|	case 20: result = checkowner_isdn(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1917:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1918|      0|	case 21: result = checkowner_rt(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1918:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1919|      0|	case 22: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1919:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1920|      0|		case 1: result = checkowner_in_nsap(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1920:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1921|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1921:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1922|      0|		} \
  |  | 1923|      0|		break; \
  |  | 1924|      0|	case 23: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1924:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1925|      0|		case 1: result = checkowner_in_nsap_ptr(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1925:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1926|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1926:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1927|      0|		} \
  |  | 1928|      0|		break; \
  |  | 1929|      0|	case 24: result = checkowner_sig(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1929:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1930|      0|	case 25: result = checkowner_key(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1930:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1931|      0|	case 26: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1931:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1932|      0|		case 1: result = checkowner_in_px(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1932:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1933|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1933:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1934|      0|		} \
  |  | 1935|      0|		break; \
  |  | 1936|      0|	case 27: result = checkowner_gpos(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1936:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1937|      0|	case 28: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1937:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1938|      0|		case 1: result = checkowner_in_aaaa(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1938:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1939|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1939:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1940|      0|		} \
  |  | 1941|      0|		break; \
  |  | 1942|      0|	case 29: result = checkowner_loc(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1942:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1943|      0|	case 30: result = checkowner_nxt(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1943:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1944|      0|	case 31: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1944:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1945|      0|		case 1: result = checkowner_in_eid(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1945:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1946|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1946:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1947|      0|		} \
  |  | 1948|      0|		break; \
  |  | 1949|      0|	case 32: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1949:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1950|      0|		case 1: result = checkowner_in_nimloc(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1950:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1951|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1951:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1952|      0|		} \
  |  | 1953|      0|		break; \
  |  | 1954|      0|	case 33: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1954:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1955|      0|		case 1: result = checkowner_in_srv(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1955:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1956|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1956:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1957|      0|		} \
  |  | 1958|      0|		break; \
  |  | 1959|      0|	case 34: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1959:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1960|      0|		case 1: result = checkowner_in_atma(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1960:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1961|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1961:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1962|      0|		} \
  |  | 1963|      0|		break; \
  |  | 1964|      0|	case 35: result = checkowner_naptr(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1964:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1965|      0|	case 36: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1965:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1966|      0|		case 1: result = checkowner_in_kx(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1966:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1967|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1967:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1968|      0|		} \
  |  | 1969|      0|		break; \
  |  | 1970|      0|	case 37: result = checkowner_cert(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1970:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1971|      0|	case 38: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1971:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1972|      0|		case 1: result = checkowner_in_a6(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1972:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1973|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1973:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1974|      0|		} \
  |  | 1975|      0|		break; \
  |  | 1976|      0|	case 39: result = checkowner_dname(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1976:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1977|      0|	case 40: result = checkowner_sink(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1977:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1978|      0|	case 41: result = checkowner_opt(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1978:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1979|      0|	case 42: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1979:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1980|      0|		case 1: result = checkowner_in_apl(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1980:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1981|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1981:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1982|      0|		} \
  |  | 1983|      0|		break; \
  |  | 1984|      0|	case 43: result = checkowner_ds(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1984:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1985|      0|	case 44: result = checkowner_sshfp(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1985:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1986|      0|	case 45: result = checkowner_ipseckey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1986:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1987|      0|	case 46: result = checkowner_rrsig(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1987:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1988|      0|	case 47: result = checkowner_nsec(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1988:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1989|      0|	case 48: result = checkowner_dnskey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1989:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1990|      0|	case 49: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (1990:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1991|      0|		case 1: result = checkowner_in_dhcid(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1991:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1992|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (1992:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 1993|      0|		} \
  |  | 1994|      0|		break; \
  |  | 1995|  5.66k|	case 50: result = checkowner_nsec3(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1995:2): [True: 5.66k, False: 0]
  |  |  ------------------
  |  | 1996|      0|	case 51: result = checkowner_nsec3param(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1996:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1997|      0|	case 52: result = checkowner_tlsa(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1997:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1998|      0|	case 53: result = checkowner_smimea(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1998:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 1999|      0|	case 55: result = checkowner_hip(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (1999:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2000|      0|	case 56: result = checkowner_ninfo(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2000:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2001|      0|	case 57: result = checkowner_rkey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2001:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2002|      0|	case 58: result = checkowner_talink(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2002:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2003|      0|	case 59: result = checkowner_cds(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2003:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2004|      0|	case 60: result = checkowner_cdnskey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2004:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2005|      0|	case 61: result = checkowner_openpgpkey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2005:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2006|      0|	case 62: result = checkowner_csync(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2006:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2007|      0|	case 63: result = checkowner_zonemd(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2007:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2008|      0|	case 64: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (2008:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2009|      0|		case 1: result = checkowner_in_svcb(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2009:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2010|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (2010:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2011|      0|		} \
  |  | 2012|      0|		break; \
  |  | 2013|      0|	case 65: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (2013:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2014|      0|		case 1: result = checkowner_in_https(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2014:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2015|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (2015:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2016|      0|		} \
  |  | 2017|      0|		break; \
  |  | 2018|      0|	case 66: result = checkowner_dsync(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2018:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2019|      0|	case 67: result = checkowner_hhit(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2019:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2020|      0|	case 68: result = checkowner_brid(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2020:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2021|      0|	case 99: result = checkowner_spf(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2021:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2022|      0|	case 104: result = checkowner_nid(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2022:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2023|      0|	case 105: result = checkowner_l32(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2023:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2024|      0|	case 106: result = checkowner_l64(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2024:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2025|      0|	case 107: result = checkowner_lp(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2025:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2026|      0|	case 108: result = checkowner_eui48(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2026:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2027|      0|	case 109: result = checkowner_eui64(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2027:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2028|      0|	case 249: result = checkowner_tkey(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2028:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2029|      0|	case 250: switch (rdclass) { \
  |  |  ------------------
  |  |  |  Branch (2029:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2030|      0|		case 255: result = checkowner_any_tsig(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2030:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2031|      0|		default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (2031:3): [True: 0, False: 0]
  |  |  ------------------
  |  | 2032|      0|		} \
  |  | 2033|      0|		break; \
  |  | 2034|      0|	case 256: result = checkowner_uri(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2034:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2035|      0|	case 257: result = checkowner_caa(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2035:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2036|      0|	case 258: result = checkowner_avc(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2036:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2037|      0|	case 259: result = checkowner_doa(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2037:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2038|      0|	case 260: result = checkowner_amtrelay(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2038:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2039|      0|	case 261: result = checkowner_resinfo(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2039:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2040|      0|	case 262: result = checkowner_wallet(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2040:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2041|      0|	case 32768: result = checkowner_ta(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2041:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2042|      0|	case 32769: result = checkowner_dlv(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2042:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2043|      0|	case 65533: result = checkowner_keydata(name, rdclass, type, wildcard); break; \
  |  |  ------------------
  |  |  |  Branch (2043:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2044|      0|	default: result = true; break; \
  |  |  ------------------
  |  |  |  Branch (2044:2): [True: 0, False: 5.66k]
  |  |  ------------------
  |  | 2045|  5.66k|	}
  ------------------
 1494|  5.66k|	return result;
 1495|  5.66k|}
dns_rdatatype_attributes:
 1507|   552k|dns_rdatatype_attributes(dns_rdatatype_t type) {
 1508|   552k|	RDATATYPE_ATTRIBUTE_SW
  ------------------
  |  | 2467|   552k|	switch (type) { \
  |  |  ------------------
  |  |  |  Branch (2467:10): [True: 416k, False: 135k]
  |  |  ------------------
  |  | 2468|  15.9k|	case 1: return (RRTYPE_A_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   18|  15.9k|#define RRTYPE_A_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2468:2): [True: 15.9k, False: 536k]
  |  |  ------------------
  |  | 2469|  11.4k|	case 2: return (RRTYPE_NS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  11.4k|#define RRTYPE_NS_ATTRIBUTES (DNS_RDATATYPEATTR_ZONECUTAUTH)
  |  |  ------------------
  |  |  |  Branch (2469:2): [True: 11.4k, False: 540k]
  |  |  ------------------
  |  | 2470|  4.23k|	case 3: return (RRTYPE_MD_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  4.23k|#define RRTYPE_MD_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2470:2): [True: 4.23k, False: 547k]
  |  |  ------------------
  |  | 2471|  2.97k|	case 4: return (RRTYPE_MF_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.97k|#define RRTYPE_MF_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2471:2): [True: 2.97k, False: 549k]
  |  |  ------------------
  |  | 2472|  5.81k|	case 5: return (RRTYPE_CNAME_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   18|  5.81k|	(DNS_RDATATYPEATTR_EXCLUSIVE | DNS_RDATATYPEATTR_SINGLETON)
  |  |  ------------------
  |  |  |  Branch (2472:2): [True: 5.81k, False: 546k]
  |  |  ------------------
  |  | 2473|  8.64k|	case 6: return (RRTYPE_SOA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  8.64k|#define RRTYPE_SOA_ATTRIBUTES (DNS_RDATATYPEATTR_SINGLETON)
  |  |  ------------------
  |  |  |  Branch (2473:2): [True: 8.64k, False: 543k]
  |  |  ------------------
  |  | 2474|  3.71k|	case 7: return (RRTYPE_MB_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  3.71k|#define RRTYPE_MB_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2474:2): [True: 3.71k, False: 548k]
  |  |  ------------------
  |  | 2475|  2.31k|	case 8: return (RRTYPE_MG_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.31k|#define RRTYPE_MG_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2475:2): [True: 2.31k, False: 549k]
  |  |  ------------------
  |  | 2476|  3.22k|	case 9: return (RRTYPE_MR_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  3.22k|#define RRTYPE_MR_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2476:2): [True: 3.22k, False: 548k]
  |  |  ------------------
  |  | 2477|  7.11k|	case 10: return (RRTYPE_NULL_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  7.11k|#define RRTYPE_NULL_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2477:2): [True: 7.11k, False: 545k]
  |  |  ------------------
  |  | 2478|  7.04k|	case 11: return (RRTYPE_WKS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   24|  7.04k|#define RRTYPE_WKS_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2478:2): [True: 7.04k, False: 545k]
  |  |  ------------------
  |  | 2479|  2.20k|	case 12: return (RRTYPE_PTR_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.20k|#define RRTYPE_PTR_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2479:2): [True: 2.20k, False: 549k]
  |  |  ------------------
  |  | 2480|  2.54k|	case 13: return (RRTYPE_HINFO_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   16|  2.54k|#define RRTYPE_HINFO_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2480:2): [True: 2.54k, False: 549k]
  |  |  ------------------
  |  | 2481|  3.18k|	case 14: return (RRTYPE_MINFO_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  3.18k|#define RRTYPE_MINFO_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2481:2): [True: 3.18k, False: 549k]
  |  |  ------------------
  |  | 2482|  2.82k|	case 15: return (RRTYPE_MX_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   23|  2.82k|#define RRTYPE_MX_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2482:2): [True: 2.82k, False: 549k]
  |  |  ------------------
  |  | 2483|  2.61k|	case 16: return (RRTYPE_TXT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.61k|#define RRTYPE_TXT_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2483:2): [True: 2.61k, False: 549k]
  |  |  ------------------
  |  | 2484|  3.94k|	case 17: return (RRTYPE_RP_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.94k|#define RRTYPE_RP_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2484:2): [True: 3.94k, False: 548k]
  |  |  ------------------
  |  | 2485|  1.57k|	case 18: return (RRTYPE_AFSDB_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.57k|#define RRTYPE_AFSDB_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2485:2): [True: 1.57k, False: 550k]
  |  |  ------------------
  |  | 2486|  1.82k|	case 19: return (RRTYPE_X25_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.82k|#define RRTYPE_X25_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2486:2): [True: 1.82k, False: 550k]
  |  |  ------------------
  |  | 2487|  2.01k|	case 20: return (RRTYPE_ISDN_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.01k|#define RRTYPE_ISDN_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2487:2): [True: 2.01k, False: 550k]
  |  |  ------------------
  |  | 2488|  2.46k|	case 21: return (RRTYPE_RT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.46k|#define RRTYPE_RT_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2488:2): [True: 2.46k, False: 549k]
  |  |  ------------------
  |  | 2489|  3.62k|	case 22: return (RRTYPE_NSAP_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.62k|#define RRTYPE_NSAP_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2489:2): [True: 3.62k, False: 548k]
  |  |  ------------------
  |  | 2490|  2.58k|	case 23: return (RRTYPE_NSAP_PTR_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.58k|#define RRTYPE_NSAP_PTR_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2490:2): [True: 2.58k, False: 549k]
  |  |  ------------------
  |  | 2491|  7.53k|	case 24: return (RRTYPE_SIG_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  7.53k|#define RRTYPE_SIG_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2491:2): [True: 7.53k, False: 544k]
  |  |  ------------------
  |  | 2492|  3.16k|	case 25: return (RRTYPE_KEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  3.16k|#define RRTYPE_KEY_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2492:2): [True: 3.16k, False: 549k]
  |  |  ------------------
  |  | 2493|  4.16k|	case 26: return (RRTYPE_PX_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  4.16k|#define RRTYPE_PX_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2493:2): [True: 4.16k, False: 548k]
  |  |  ------------------
  |  | 2494|  2.53k|	case 27: return (RRTYPE_GPOS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.53k|#define RRTYPE_GPOS_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2494:2): [True: 2.53k, False: 549k]
  |  |  ------------------
  |  | 2495|  5.41k|	case 28: return (RRTYPE_AAAA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  5.41k|#define RRTYPE_AAAA_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2495:2): [True: 5.41k, False: 546k]
  |  |  ------------------
  |  | 2496|  8.18k|	case 29: return (RRTYPE_LOC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  8.18k|#define RRTYPE_LOC_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2496:2): [True: 8.18k, False: 544k]
  |  |  ------------------
  |  | 2497|  3.65k|	case 30: return (RRTYPE_NXT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   23|  3.65k|#define RRTYPE_NXT_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2497:2): [True: 3.65k, False: 548k]
  |  |  ------------------
  |  | 2498|  10.4k|	case 31: return (RRTYPE_EID_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  10.4k|#define RRTYPE_EID_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2498:2): [True: 10.4k, False: 541k]
  |  |  ------------------
  |  | 2499|  3.61k|	case 32: return (RRTYPE_NIMLOC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.61k|#define RRTYPE_NIMLOC_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2499:2): [True: 3.61k, False: 548k]
  |  |  ------------------
  |  | 2500|  5.70k|	case 33: return (RRTYPE_SRV_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  5.70k|#define RRTYPE_SRV_ATTRIBUTES (DNS_RDATATYPEATTR_FOLLOWADDITIONAL)
  |  |  ------------------
  |  |  |  Branch (2500:2): [True: 5.70k, False: 546k]
  |  |  ------------------
  |  | 2501|  6.86k|	case 34: return (RRTYPE_ATMA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  6.86k|#define RRTYPE_ATMA_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2501:2): [True: 6.86k, False: 545k]
  |  |  ------------------
  |  | 2502|  9.49k|	case 35: return (RRTYPE_NAPTR_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  9.49k|#define RRTYPE_NAPTR_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2502:2): [True: 9.49k, False: 542k]
  |  |  ------------------
  |  | 2503|  6.66k|	case 36: return (RRTYPE_KX_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  6.66k|#define RRTYPE_KX_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2503:2): [True: 6.66k, False: 545k]
  |  |  ------------------
  |  | 2504|  5.61k|	case 37: return (RRTYPE_CERT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  5.61k|#define RRTYPE_CERT_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2504:2): [True: 5.61k, False: 546k]
  |  |  ------------------
  |  | 2505|  5.62k|	case 38: return (RRTYPE_A6_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  5.62k|#define RRTYPE_A6_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2505:2): [True: 5.62k, False: 546k]
  |  |  ------------------
  |  | 2506|  6.64k|	case 39: return (RRTYPE_DNAME_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  6.64k|#define RRTYPE_DNAME_ATTRIBUTES (DNS_RDATATYPEATTR_SINGLETON)
  |  |  ------------------
  |  |  |  Branch (2506:2): [True: 6.64k, False: 545k]
  |  |  ------------------
  |  | 2507|  3.26k|	case 40: return (RRTYPE_SINK_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.26k|#define RRTYPE_SINK_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2507:2): [True: 3.26k, False: 548k]
  |  |  ------------------
  |  | 2508|  9.46k|	case 41: return (RRTYPE_OPT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   20|  9.46k|	(DNS_RDATATYPEATTR_SINGLETON | DNS_RDATATYPEATTR_META | \
  |  |  |  |   21|  9.46k|	 DNS_RDATATYPEATTR_NOTQUESTION)
  |  |  ------------------
  |  |  |  Branch (2508:2): [True: 9.46k, False: 542k]
  |  |  ------------------
  |  | 2509|  6.21k|	case 42: return (RRTYPE_APL_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  6.21k|#define RRTYPE_APL_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2509:2): [True: 6.21k, False: 545k]
  |  |  ------------------
  |  | 2510|  2.79k|	case 43: return (RRTYPE_DS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   20|  2.79k|	(DNS_RDATATYPEATTR_DNSSEC | DNS_RDATATYPEATTR_ZONECUTAUTH | \
  |  |  |  |   21|  2.79k|	 DNS_RDATATYPEATTR_ATPARENT)
  |  |  ------------------
  |  |  |  Branch (2510:2): [True: 2.79k, False: 549k]
  |  |  ------------------
  |  | 2511|  3.58k|	case 44: return (RRTYPE_SSHFP_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.58k|#define RRTYPE_SSHFP_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2511:2): [True: 3.58k, False: 548k]
  |  |  ------------------
  |  | 2512|  5.26k|	case 45: return (RRTYPE_IPSECKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  5.26k|#define RRTYPE_IPSECKEY_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2512:2): [True: 5.26k, False: 546k]
  |  |  ------------------
  |  | 2513|  8.26k|	case 46: return (RRTYPE_RRSIG_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   20|  8.26k|	(DNS_RDATATYPEATTR_DNSSEC | DNS_RDATATYPEATTR_ZONECUTAUTH | \
  |  |  |  |   21|  8.26k|	 DNS_RDATATYPEATTR_ATCNAME)
  |  |  ------------------
  |  |  |  Branch (2513:2): [True: 8.26k, False: 543k]
  |  |  ------------------
  |  | 2514|  5.97k|	case 47: return (RRTYPE_NSEC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   24|  5.97k|	(DNS_RDATATYPEATTR_DNSSEC | DNS_RDATATYPEATTR_ZONECUTAUTH | \
  |  |  |  |   25|  5.97k|	 DNS_RDATATYPEATTR_ATCNAME)
  |  |  ------------------
  |  |  |  Branch (2514:2): [True: 5.97k, False: 546k]
  |  |  ------------------
  |  | 2515|  3.46k|	case 48: return (RRTYPE_DNSKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  3.46k|#define RRTYPE_DNSKEY_ATTRIBUTES (DNS_RDATATYPEATTR_DNSSEC)
  |  |  ------------------
  |  |  |  Branch (2515:2): [True: 3.46k, False: 548k]
  |  |  ------------------
  |  | 2516|  7.59k|	case 49: return (RRTYPE_DHCID_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  7.59k|#define RRTYPE_DHCID_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2516:2): [True: 7.59k, False: 544k]
  |  |  ------------------
  |  | 2517|  6.77k|	case 50: return (RRTYPE_NSEC3_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   40|  6.77k|#define RRTYPE_NSEC3_ATTRIBUTES DNS_RDATATYPEATTR_DNSSEC
  |  |  ------------------
  |  |  |  Branch (2517:2): [True: 6.77k, False: 545k]
  |  |  ------------------
  |  | 2518|  2.47k|	case 51: return (RRTYPE_NSEC3PARAM_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   38|  2.47k|#define RRTYPE_NSEC3PARAM_ATTRIBUTES (DNS_RDATATYPEATTR_DNSSEC)
  |  |  ------------------
  |  |  |  Branch (2518:2): [True: 2.47k, False: 549k]
  |  |  ------------------
  |  | 2519|  2.82k|	case 52: return (RRTYPE_TLSA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.82k|#define RRTYPE_TLSA_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2519:2): [True: 2.82k, False: 549k]
  |  |  ------------------
  |  | 2520|  2.51k|	case 53: return (RRTYPE_SMIMEA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.51k|#define RRTYPE_SMIMEA_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2520:2): [True: 2.51k, False: 549k]
  |  |  ------------------
  |  | 2521|  33.4k|	case 55: return (RRTYPE_HIP_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   18|  33.4k|#define RRTYPE_HIP_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2521:2): [True: 33.4k, False: 518k]
  |  |  ------------------
  |  | 2522|  2.29k|	case 56: return (RRTYPE_NINFO_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.29k|#define RRTYPE_NINFO_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2522:2): [True: 2.29k, False: 549k]
  |  |  ------------------
  |  | 2523|  3.48k|	case 57: return (RRTYPE_RKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  3.48k|#define RRTYPE_RKEY_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2523:2): [True: 3.48k, False: 548k]
  |  |  ------------------
  |  | 2524|  4.96k|	case 58: return (RRTYPE_TALINK_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  4.96k|#define RRTYPE_TALINK_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2524:2): [True: 4.96k, False: 547k]
  |  |  ------------------
  |  | 2525|  3.07k|	case 59: return (RRTYPE_CDS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.07k|#define RRTYPE_CDS_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2525:2): [True: 3.07k, False: 549k]
  |  |  ------------------
  |  | 2526|  2.48k|	case 60: return (RRTYPE_CDNSKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  2.48k|#define RRTYPE_CDNSKEY_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2526:2): [True: 2.48k, False: 549k]
  |  |  ------------------
  |  | 2527|  2.41k|	case 61: return (RRTYPE_OPENPGPKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.41k|#define RRTYPE_OPENPGPKEY_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2527:2): [True: 2.41k, False: 549k]
  |  |  ------------------
  |  | 2528|  3.52k|	case 62: return (RRTYPE_CSYNC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.52k|#define RRTYPE_CSYNC_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2528:2): [True: 3.52k, False: 548k]
  |  |  ------------------
  |  | 2529|  3.85k|	case 63: return (RRTYPE_ZONEMD_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  3.85k|#define RRTYPE_ZONEMD_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2529:2): [True: 3.85k, False: 548k]
  |  |  ------------------
  |  | 2530|  9.10k|	case 64: return (RRTYPE_SVCB_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  9.10k|#define RRTYPE_SVCB_ATTRIBUTES (DNS_RDATATYPEATTR_FOLLOWADDITIONAL)
  |  |  ------------------
  |  |  |  Branch (2530:2): [True: 9.10k, False: 543k]
  |  |  ------------------
  |  | 2531|  7.23k|	case 65: return (RRTYPE_HTTPS_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   18|  7.23k|#define RRTYPE_HTTPS_ATTRIBUTES (DNS_RDATATYPEATTR_FOLLOWADDITIONAL)
  |  |  ------------------
  |  |  |  Branch (2531:2): [True: 7.23k, False: 544k]
  |  |  ------------------
  |  | 2532|  2.58k|	case 66: return (RRTYPE_DSYNC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   24|  2.58k|#define RRTYPE_DSYNC_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2532:2): [True: 2.58k, False: 549k]
  |  |  ------------------
  |  | 2533|  1.73k|	case 67: return (RRTYPE_HHIT_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.73k|#define RRTYPE_HHIT_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2533:2): [True: 1.73k, False: 550k]
  |  |  ------------------
  |  | 2534|  2.50k|	case 68: return (RRTYPE_BRID_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  2.50k|#define RRTYPE_BRID_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2534:2): [True: 2.50k, False: 549k]
  |  |  ------------------
  |  | 2535|  1.92k|	case 99: return (RRTYPE_SPF_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  1.92k|#define RRTYPE_SPF_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2535:2): [True: 1.92k, False: 550k]
  |  |  ------------------
  |  | 2536|    908|	case 100: return (0); \
  |  |  ------------------
  |  |  |  Branch (2536:2): [True: 908, False: 551k]
  |  |  ------------------
  |  | 2537|  1.18k|	case 101: return (0); \
  |  |  ------------------
  |  |  |  Branch (2537:2): [True: 1.18k, False: 551k]
  |  |  ------------------
  |  | 2538|    985|	case 102: return (0); \
  |  |  ------------------
  |  |  |  Branch (2538:2): [True: 985, False: 551k]
  |  |  ------------------
  |  | 2539|  1.08k|	case 103: return (0); \
  |  |  ------------------
  |  |  |  Branch (2539:2): [True: 1.08k, False: 551k]
  |  |  ------------------
  |  | 2540|  1.89k|	case 104: return (RRTYPE_NID_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  1.89k|#define RRTYPE_NID_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2540:2): [True: 1.89k, False: 550k]
  |  |  ------------------
  |  | 2541|  2.96k|	case 105: return (RRTYPE_L32_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  2.96k|#define RRTYPE_L32_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2541:2): [True: 2.96k, False: 549k]
  |  |  ------------------
  |  | 2542|  1.71k|	case 106: return (RRTYPE_L64_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  1.71k|#define RRTYPE_L64_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2542:2): [True: 1.71k, False: 550k]
  |  |  ------------------
  |  | 2543|  1.41k|	case 107: return (RRTYPE_LP_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  1.41k|#define RRTYPE_LP_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2543:2): [True: 1.41k, False: 550k]
  |  |  ------------------
  |  | 2544|  1.68k|	case 108: return (RRTYPE_EUI48_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.68k|#define RRTYPE_EUI48_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2544:2): [True: 1.68k, False: 550k]
  |  |  ------------------
  |  | 2545|  1.62k|	case 109: return (RRTYPE_EUI64_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.62k|#define RRTYPE_EUI64_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2545:2): [True: 1.62k, False: 550k]
  |  |  ------------------
  |  | 2546|  4.41k|	case 249: return (RRTYPE_TKEY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  4.41k|#define RRTYPE_TKEY_ATTRIBUTES (DNS_RDATATYPEATTR_META)
  |  |  ------------------
  |  |  |  Branch (2546:2): [True: 4.41k, False: 547k]
  |  |  ------------------
  |  | 2547|  7.70k|	case 250: return (RRTYPE_TSIG_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   18|  7.70k|	(DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_NOTQUESTION)
  |  |  ------------------
  |  |  |  Branch (2547:2): [True: 7.70k, False: 544k]
  |  |  ------------------
  |  | 2548|  1.00k|	case 251: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \
  |  |  ------------------
  |  |  |  Branch (2548:2): [True: 1.00k, False: 551k]
  |  |  ------------------
  |  | 2549|  2.26k|	case 252: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \
  |  |  ------------------
  |  |  |  Branch (2549:2): [True: 2.26k, False: 549k]
  |  |  ------------------
  |  | 2550|  1.59k|	case 253: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \
  |  |  ------------------
  |  |  |  Branch (2550:2): [True: 1.59k, False: 550k]
  |  |  ------------------
  |  | 2551|  2.42k|	case 254: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \
  |  |  ------------------
  |  |  |  Branch (2551:2): [True: 2.42k, False: 549k]
  |  |  ------------------
  |  | 2552|  1.86k|	case 255: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \
  |  |  ------------------
  |  |  |  Branch (2552:2): [True: 1.86k, False: 550k]
  |  |  ------------------
  |  | 2553|  2.51k|	case 256: return (RRTYPE_URI_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.51k|#define RRTYPE_URI_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2553:2): [True: 2.51k, False: 549k]
  |  |  ------------------
  |  | 2554|  1.86k|	case 257: return (RRTYPE_CAA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  1.86k|#define RRTYPE_CAA_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2554:2): [True: 1.86k, False: 550k]
  |  |  ------------------
  |  | 2555|  2.02k|	case 258: return (RRTYPE_AVC_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.02k|#define RRTYPE_AVC_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2555:2): [True: 2.02k, False: 550k]
  |  |  ------------------
  |  | 2556|  2.30k|	case 259: return (RRTYPE_DOA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.30k|#define RRTYPE_DOA_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2556:2): [True: 2.30k, False: 549k]
  |  |  ------------------
  |  | 2557|  7.04k|	case 260: return (RRTYPE_AMTRELAY_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   21|  7.04k|#define RRTYPE_AMTRELAY_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2557:2): [True: 7.04k, False: 545k]
  |  |  ------------------
  |  | 2558|  2.24k|	case 261: return (RRTYPE_RESINFO_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  2.24k|#define RRTYPE_RESINFO_ATTRIBUTES (DNS_RDATATYPEATTR_SINGLETON)
  |  |  ------------------
  |  |  |  Branch (2558:2): [True: 2.24k, False: 549k]
  |  |  ------------------
  |  | 2559|  1.76k|	case 262: return (RRTYPE_WALLET_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   17|  1.76k|#define RRTYPE_WALLET_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2559:2): [True: 1.76k, False: 550k]
  |  |  ------------------
  |  | 2560|  1.71k|	case 32768: return (RRTYPE_TA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.71k|#define RRTYPE_TA_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2560:2): [True: 1.71k, False: 550k]
  |  |  ------------------
  |  | 2561|  1.44k|	case 32769: return (RRTYPE_DLV_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   19|  1.44k|#define RRTYPE_DLV_ATTRIBUTES 0
  |  |  ------------------
  |  |  |  Branch (2561:2): [True: 1.44k, False: 550k]
  |  |  ------------------
  |  | 2562|  2.73k|	case 65533: return (RRTYPE_KEYDATA_ATTRIBUTES); \
  |  |  ------------------
  |  |  |  |   22|  2.73k|#define RRTYPE_KEYDATA_ATTRIBUTES (0)
  |  |  ------------------
  |  |  |  Branch (2562:2): [True: 2.73k, False: 549k]
  |  |  ------------------
  |  | 2563|   552k|	}
  ------------------
 1509|   135k|	if (type >= (dns_rdatatype_t)128 && type <= (dns_rdatatype_t)255) {
  ------------------
  |  Branch (1509:6): [True: 116k, False: 18.7k]
  |  Branch (1509:38): [True: 8.28k, False: 108k]
  ------------------
 1510|  8.28k|		return DNS_RDATATYPEATTR_UNKNOWN | DNS_RDATATYPEATTR_META;
 1511|  8.28k|	}
 1512|   127k|	return DNS_RDATATYPEATTR_UNKNOWN;
 1513|   135k|}
dns_rdatatype_totext:
 1563|   436k|dns_rdatatype_totext(dns_rdatatype_t type, isc_buffer_t *target) {
 1564|   436k|	RDATATYPE_TOTEXT_SW
  ------------------
  |  | 2565|   436k|	switch (type) { \
  |  |  ------------------
  |  |  |  Branch (2565:10): [True: 268k, False: 168k]
  |  |  ------------------
  |  | 2566|  10.7k|	case 1: return (str_totext("A", target)); \
  |  |  ------------------
  |  |  |  Branch (2566:2): [True: 10.7k, False: 425k]
  |  |  ------------------
  |  | 2567|  6.65k|	case 2: return (str_totext("NS", target)); \
  |  |  ------------------
  |  |  |  Branch (2567:2): [True: 6.65k, False: 429k]
  |  |  ------------------
  |  | 2568|  3.40k|	case 3: return (str_totext("MD", target)); \
  |  |  ------------------
  |  |  |  Branch (2568:2): [True: 3.40k, False: 432k]
  |  |  ------------------
  |  | 2569|  2.88k|	case 4: return (str_totext("MF", target)); \
  |  |  ------------------
  |  |  |  Branch (2569:2): [True: 2.88k, False: 433k]
  |  |  ------------------
  |  | 2570|  3.96k|	case 5: return (str_totext("CNAME", target)); \
  |  |  ------------------
  |  |  |  Branch (2570:2): [True: 3.96k, False: 432k]
  |  |  ------------------
  |  | 2571|  6.19k|	case 6: return (str_totext("SOA", target)); \
  |  |  ------------------
  |  |  |  Branch (2571:2): [True: 6.19k, False: 429k]
  |  |  ------------------
  |  | 2572|  3.14k|	case 7: return (str_totext("MB", target)); \
  |  |  ------------------
  |  |  |  Branch (2572:2): [True: 3.14k, False: 432k]
  |  |  ------------------
  |  | 2573|  1.79k|	case 8: return (str_totext("MG", target)); \
  |  |  ------------------
  |  |  |  Branch (2573:2): [True: 1.79k, False: 434k]
  |  |  ------------------
  |  | 2574|  2.55k|	case 9: return (str_totext("MR", target)); \
  |  |  ------------------
  |  |  |  Branch (2574:2): [True: 2.55k, False: 433k]
  |  |  ------------------
  |  | 2575|  5.10k|	case 10: return (str_totext("NULL", target)); \
  |  |  ------------------
  |  |  |  Branch (2575:2): [True: 5.10k, False: 430k]
  |  |  ------------------
  |  | 2576|  4.33k|	case 11: return (str_totext("WKS", target)); \
  |  |  ------------------
  |  |  |  Branch (2576:2): [True: 4.33k, False: 431k]
  |  |  ------------------
  |  | 2577|  2.35k|	case 12: return (str_totext("PTR", target)); \
  |  |  ------------------
  |  |  |  Branch (2577:2): [True: 2.35k, False: 433k]
  |  |  ------------------
  |  | 2578|  1.90k|	case 13: return (str_totext("HINFO", target)); \
  |  |  ------------------
  |  |  |  Branch (2578:2): [True: 1.90k, False: 434k]
  |  |  ------------------
  |  | 2579|  2.83k|	case 14: return (str_totext("MINFO", target)); \
  |  |  ------------------
  |  |  |  Branch (2579:2): [True: 2.83k, False: 433k]
  |  |  ------------------
  |  | 2580|  2.61k|	case 15: return (str_totext("MX", target)); \
  |  |  ------------------
  |  |  |  Branch (2580:2): [True: 2.61k, False: 433k]
  |  |  ------------------
  |  | 2581|  1.97k|	case 16: return (str_totext("TXT", target)); \
  |  |  ------------------
  |  |  |  Branch (2581:2): [True: 1.97k, False: 434k]
  |  |  ------------------
  |  | 2582|  2.82k|	case 17: return (str_totext("RP", target)); \
  |  |  ------------------
  |  |  |  Branch (2582:2): [True: 2.82k, False: 433k]
  |  |  ------------------
  |  | 2583|  1.46k|	case 18: return (str_totext("AFSDB", target)); \
  |  |  ------------------
  |  |  |  Branch (2583:2): [True: 1.46k, False: 434k]
  |  |  ------------------
  |  | 2584|  1.43k|	case 19: return (str_totext("X25", target)); \
  |  |  ------------------
  |  |  |  Branch (2584:2): [True: 1.43k, False: 434k]
  |  |  ------------------
  |  | 2585|  1.43k|	case 20: return (str_totext("ISDN", target)); \
  |  |  ------------------
  |  |  |  Branch (2585:2): [True: 1.43k, False: 434k]
  |  |  ------------------
  |  | 2586|  1.49k|	case 21: return (str_totext("RT", target)); \
  |  |  ------------------
  |  |  |  Branch (2586:2): [True: 1.49k, False: 434k]
  |  |  ------------------
  |  | 2587|  3.56k|	case 22: return (str_totext("NSAP", target)); \
  |  |  ------------------
  |  |  |  Branch (2587:2): [True: 3.56k, False: 432k]
  |  |  ------------------
  |  | 2588|  2.75k|	case 23: return (str_totext("NSAP-PTR", target)); \
  |  |  ------------------
  |  |  |  Branch (2588:2): [True: 2.75k, False: 433k]
  |  |  ------------------
  |  | 2589|  5.20k|	case 24: return (str_totext("SIG", target)); \
  |  |  ------------------
  |  |  |  Branch (2589:2): [True: 5.20k, False: 430k]
  |  |  ------------------
  |  | 2590|  2.15k|	case 25: return (str_totext("KEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2590:2): [True: 2.15k, False: 433k]
  |  |  ------------------
  |  | 2591|  2.74k|	case 26: return (str_totext("PX", target)); \
  |  |  ------------------
  |  |  |  Branch (2591:2): [True: 2.74k, False: 433k]
  |  |  ------------------
  |  | 2592|  1.65k|	case 27: return (str_totext("GPOS", target)); \
  |  |  ------------------
  |  |  |  Branch (2592:2): [True: 1.65k, False: 434k]
  |  |  ------------------
  |  | 2593|  3.48k|	case 28: return (str_totext("AAAA", target)); \
  |  |  ------------------
  |  |  |  Branch (2593:2): [True: 3.48k, False: 432k]
  |  |  ------------------
  |  | 2594|  5.31k|	case 29: return (str_totext("LOC", target)); \
  |  |  ------------------
  |  |  |  Branch (2594:2): [True: 5.31k, False: 430k]
  |  |  ------------------
  |  | 2595|  2.95k|	case 30: return (str_totext("NXT", target)); \
  |  |  ------------------
  |  |  |  Branch (2595:2): [True: 2.95k, False: 433k]
  |  |  ------------------
  |  | 2596|  6.03k|	case 31: return (str_totext("EID", target)); \
  |  |  ------------------
  |  |  |  Branch (2596:2): [True: 6.03k, False: 430k]
  |  |  ------------------
  |  | 2597|  3.10k|	case 32: return (str_totext("NIMLOC", target)); \
  |  |  ------------------
  |  |  |  Branch (2597:2): [True: 3.10k, False: 432k]
  |  |  ------------------
  |  | 2598|  3.85k|	case 33: return (str_totext("SRV", target)); \
  |  |  ------------------
  |  |  |  Branch (2598:2): [True: 3.85k, False: 432k]
  |  |  ------------------
  |  | 2599|  4.84k|	case 34: return (str_totext("ATMA", target)); \
  |  |  ------------------
  |  |  |  Branch (2599:2): [True: 4.84k, False: 431k]
  |  |  ------------------
  |  | 2600|  5.38k|	case 35: return (str_totext("NAPTR", target)); \
  |  |  ------------------
  |  |  |  Branch (2600:2): [True: 5.38k, False: 430k]
  |  |  ------------------
  |  | 2601|  4.38k|	case 36: return (str_totext("KX", target)); \
  |  |  ------------------
  |  |  |  Branch (2601:2): [True: 4.38k, False: 431k]
  |  |  ------------------
  |  | 2602|  3.85k|	case 37: return (str_totext("CERT", target)); \
  |  |  ------------------
  |  |  |  Branch (2602:2): [True: 3.85k, False: 432k]
  |  |  ------------------
  |  | 2603|  3.55k|	case 38: return (str_totext("A6", target)); \
  |  |  ------------------
  |  |  |  Branch (2603:2): [True: 3.55k, False: 432k]
  |  |  ------------------
  |  | 2604|  3.99k|	case 39: return (str_totext("DNAME", target)); \
  |  |  ------------------
  |  |  |  Branch (2604:2): [True: 3.99k, False: 432k]
  |  |  ------------------
  |  | 2605|  2.06k|	case 40: return (str_totext("SINK", target)); \
  |  |  ------------------
  |  |  |  Branch (2605:2): [True: 2.06k, False: 434k]
  |  |  ------------------
  |  | 2606|  5.58k|	case 41: return (str_totext("OPT", target)); \
  |  |  ------------------
  |  |  |  Branch (2606:2): [True: 5.58k, False: 430k]
  |  |  ------------------
  |  | 2607|  4.43k|	case 42: return (str_totext("APL", target)); \
  |  |  ------------------
  |  |  |  Branch (2607:2): [True: 4.43k, False: 431k]
  |  |  ------------------
  |  | 2608|  1.83k|	case 43: return (str_totext("DS", target)); \
  |  |  ------------------
  |  |  |  Branch (2608:2): [True: 1.83k, False: 434k]
  |  |  ------------------
  |  | 2609|  2.77k|	case 44: return (str_totext("SSHFP", target)); \
  |  |  ------------------
  |  |  |  Branch (2609:2): [True: 2.77k, False: 433k]
  |  |  ------------------
  |  | 2610|  3.05k|	case 45: return (str_totext("IPSECKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2610:2): [True: 3.05k, False: 433k]
  |  |  ------------------
  |  | 2611|  6.33k|	case 46: return (str_totext("RRSIG", target)); \
  |  |  ------------------
  |  |  |  Branch (2611:2): [True: 6.33k, False: 429k]
  |  |  ------------------
  |  | 2612|  3.85k|	case 47: return (str_totext("NSEC", target)); \
  |  |  ------------------
  |  |  |  Branch (2612:2): [True: 3.85k, False: 432k]
  |  |  ------------------
  |  | 2613|  3.06k|	case 48: return (str_totext("DNSKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2613:2): [True: 3.06k, False: 433k]
  |  |  ------------------
  |  | 2614|  4.74k|	case 49: return (str_totext("DHCID", target)); \
  |  |  ------------------
  |  |  |  Branch (2614:2): [True: 4.74k, False: 431k]
  |  |  ------------------
  |  | 2615|  5.77k|	case 50: return (str_totext("NSEC3", target)); \
  |  |  ------------------
  |  |  |  Branch (2615:2): [True: 5.77k, False: 430k]
  |  |  ------------------
  |  | 2616|  1.85k|	case 51: return (str_totext("NSEC3PARAM", target)); \
  |  |  ------------------
  |  |  |  Branch (2616:2): [True: 1.85k, False: 434k]
  |  |  ------------------
  |  | 2617|  1.94k|	case 52: return (str_totext("TLSA", target)); \
  |  |  ------------------
  |  |  |  Branch (2617:2): [True: 1.94k, False: 434k]
  |  |  ------------------
  |  | 2618|  1.83k|	case 53: return (str_totext("SMIMEA", target)); \
  |  |  ------------------
  |  |  |  Branch (2618:2): [True: 1.83k, False: 434k]
  |  |  ------------------
  |  | 2619|  7.53k|	case 55: return (str_totext("HIP", target)); \
  |  |  ------------------
  |  |  |  Branch (2619:2): [True: 7.53k, False: 428k]
  |  |  ------------------
  |  | 2620|  1.73k|	case 56: return (str_totext("NINFO", target)); \
  |  |  ------------------
  |  |  |  Branch (2620:2): [True: 1.73k, False: 434k]
  |  |  ------------------
  |  | 2621|  2.40k|	case 57: return (str_totext("RKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2621:2): [True: 2.40k, False: 433k]
  |  |  ------------------
  |  | 2622|  4.02k|	case 58: return (str_totext("TALINK", target)); \
  |  |  ------------------
  |  |  |  Branch (2622:2): [True: 4.02k, False: 432k]
  |  |  ------------------
  |  | 2623|  2.24k|	case 59: return (str_totext("CDS", target)); \
  |  |  ------------------
  |  |  |  Branch (2623:2): [True: 2.24k, False: 433k]
  |  |  ------------------
  |  | 2624|  1.66k|	case 60: return (str_totext("CDNSKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2624:2): [True: 1.66k, False: 434k]
  |  |  ------------------
  |  | 2625|  1.90k|	case 61: return (str_totext("OPENPGPKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2625:2): [True: 1.90k, False: 434k]
  |  |  ------------------
  |  | 2626|  1.75k|	case 62: return (str_totext("CSYNC", target)); \
  |  |  ------------------
  |  |  |  Branch (2626:2): [True: 1.75k, False: 434k]
  |  |  ------------------
  |  | 2627|  2.64k|	case 63: return (str_totext("ZONEMD", target)); \
  |  |  ------------------
  |  |  |  Branch (2627:2): [True: 2.64k, False: 433k]
  |  |  ------------------
  |  | 2628|  5.25k|	case 64: return (str_totext("SVCB", target)); \
  |  |  ------------------
  |  |  |  Branch (2628:2): [True: 5.25k, False: 430k]
  |  |  ------------------
  |  | 2629|  5.02k|	case 65: return (str_totext("HTTPS", target)); \
  |  |  ------------------
  |  |  |  Branch (2629:2): [True: 5.02k, False: 431k]
  |  |  ------------------
  |  | 2630|  1.36k|	case 66: return (str_totext("DSYNC", target)); \
  |  |  ------------------
  |  |  |  Branch (2630:2): [True: 1.36k, False: 434k]
  |  |  ------------------
  |  | 2631|  1.05k|	case 67: return (str_totext("HHIT", target)); \
  |  |  ------------------
  |  |  |  Branch (2631:2): [True: 1.05k, False: 435k]
  |  |  ------------------
  |  | 2632|  1.40k|	case 68: return (str_totext("BRID", target)); \
  |  |  ------------------
  |  |  |  Branch (2632:2): [True: 1.40k, False: 434k]
  |  |  ------------------
  |  | 2633|  1.26k|	case 99: return (str_totext("SPF", target)); \
  |  |  ------------------
  |  |  |  Branch (2633:2): [True: 1.26k, False: 434k]
  |  |  ------------------
  |  | 2634|    702|	case 100: return (str_totext("UINFO", target)); \
  |  |  ------------------
  |  |  |  Branch (2634:2): [True: 702, False: 435k]
  |  |  ------------------
  |  | 2635|    933|	case 101: return (str_totext("UID", target)); \
  |  |  ------------------
  |  |  |  Branch (2635:2): [True: 933, False: 435k]
  |  |  ------------------
  |  | 2636|    838|	case 102: return (str_totext("GID", target)); \
  |  |  ------------------
  |  |  |  Branch (2636:2): [True: 838, False: 435k]
  |  |  ------------------
  |  | 2637|    854|	case 103: return (str_totext("UNSPEC", target)); \
  |  |  ------------------
  |  |  |  Branch (2637:2): [True: 854, False: 435k]
  |  |  ------------------
  |  | 2638|    972|	case 104: return (str_totext("NID", target)); \
  |  |  ------------------
  |  |  |  Branch (2638:2): [True: 972, False: 435k]
  |  |  ------------------
  |  | 2639|  1.51k|	case 105: return (str_totext("L32", target)); \
  |  |  ------------------
  |  |  |  Branch (2639:2): [True: 1.51k, False: 434k]
  |  |  ------------------
  |  | 2640|    888|	case 106: return (str_totext("L64", target)); \
  |  |  ------------------
  |  |  |  Branch (2640:2): [True: 888, False: 435k]
  |  |  ------------------
  |  | 2641|    845|	case 107: return (str_totext("LP", target)); \
  |  |  ------------------
  |  |  |  Branch (2641:2): [True: 845, False: 435k]
  |  |  ------------------
  |  | 2642|    863|	case 108: return (str_totext("EUI48", target)); \
  |  |  ------------------
  |  |  |  Branch (2642:2): [True: 863, False: 435k]
  |  |  ------------------
  |  | 2643|    828|	case 109: return (str_totext("EUI64", target)); \
  |  |  ------------------
  |  |  |  Branch (2643:2): [True: 828, False: 435k]
  |  |  ------------------
  |  | 2644|  2.51k|	case 249: return (str_totext("TKEY", target)); \
  |  |  ------------------
  |  |  |  Branch (2644:2): [True: 2.51k, False: 433k]
  |  |  ------------------
  |  | 2645|  4.33k|	case 250: return (str_totext("TSIG", target)); \
  |  |  ------------------
  |  |  |  Branch (2645:2): [True: 4.33k, False: 431k]
  |  |  ------------------
  |  | 2646|    695|	case 251: return (str_totext("IXFR", target)); \
  |  |  ------------------
  |  |  |  Branch (2646:2): [True: 695, False: 435k]
  |  |  ------------------
  |  | 2647|  1.49k|	case 252: return (str_totext("AXFR", target)); \
  |  |  ------------------
  |  |  |  Branch (2647:2): [True: 1.49k, False: 434k]
  |  |  ------------------
  |  | 2648|  1.09k|	case 253: return (str_totext("MAILB", target)); \
  |  |  ------------------
  |  |  |  Branch (2648:2): [True: 1.09k, False: 435k]
  |  |  ------------------
  |  | 2649|  1.79k|	case 254: return (str_totext("MAILA", target)); \
  |  |  ------------------
  |  |  |  Branch (2649:2): [True: 1.79k, False: 434k]
  |  |  ------------------
  |  | 2650|  1.75k|	case 255: return (str_totext("ANY", target)); \
  |  |  ------------------
  |  |  |  Branch (2650:2): [True: 1.75k, False: 434k]
  |  |  ------------------
  |  | 2651|  2.75k|	case 256: return (str_totext("URI", target)); \
  |  |  ------------------
  |  |  |  Branch (2651:2): [True: 2.75k, False: 433k]
  |  |  ------------------
  |  | 2652|  1.25k|	case 257: return (str_totext("CAA", target)); \
  |  |  ------------------
  |  |  |  Branch (2652:2): [True: 1.25k, False: 434k]
  |  |  ------------------
  |  | 2653|  1.35k|	case 258: return (str_totext("AVC", target)); \
  |  |  ------------------
  |  |  |  Branch (2653:2): [True: 1.35k, False: 434k]
  |  |  ------------------
  |  | 2654|  1.33k|	case 259: return (str_totext("DOA", target)); \
  |  |  ------------------
  |  |  |  Branch (2654:2): [True: 1.33k, False: 434k]
  |  |  ------------------
  |  | 2655|  3.62k|	case 260: return (str_totext("AMTRELAY", target)); \
  |  |  ------------------
  |  |  |  Branch (2655:2): [True: 3.62k, False: 432k]
  |  |  ------------------
  |  | 2656|  1.25k|	case 261: return (str_totext("RESINFO", target)); \
  |  |  ------------------
  |  |  |  Branch (2656:2): [True: 1.25k, False: 434k]
  |  |  ------------------
  |  | 2657|    961|	case 262: return (str_totext("WALLET", target)); \
  |  |  ------------------
  |  |  |  Branch (2657:2): [True: 961, False: 435k]
  |  |  ------------------
  |  | 2658|  1.33k|	case 32768: return (str_totext("TA", target)); \
  |  |  ------------------
  |  |  |  Branch (2658:2): [True: 1.33k, False: 434k]
  |  |  ------------------
  |  | 2659|    852|	case 32769: return (str_totext("DLV", target)); \
  |  |  ------------------
  |  |  |  Branch (2659:2): [True: 852, False: 435k]
  |  |  ------------------
  |  | 2660|   436k|	}
  ------------------
 1565|       |
 1566|   168k|	return dns_rdatatype_tounknowntext(type, target);
 1567|   436k|}
dns_rdatatype_tounknowntext:
 1570|   168k|dns_rdatatype_tounknowntext(dns_rdatatype_t type, isc_buffer_t *target) {
 1571|   168k|	char buf[sizeof("TYPE65535")];
 1572|       |
 1573|   168k|	snprintf(buf, sizeof(buf), "TYPE%u", type);
 1574|   168k|	return str_totext(buf, target);
 1575|   168k|}
dns_rdata_covers:
 2327|  9.60k|dns_rdata_covers(dns_rdata_t *rdata) {
 2328|  9.60k|	if (rdata->type == dns_rdatatype_rrsig) {
  ------------------
  |  |  160|  9.60k|#define dns_rdatatype_rrsig	((dns_rdatatype_t)dns_rdatatype_rrsig)
  ------------------
  |  Branch (2328:6): [True: 4.86k, False: 4.74k]
  ------------------
 2329|  4.86k|		return covers_rrsig(rdata);
 2330|  4.86k|	}
 2331|  4.74k|	return covers_sig(rdata);
 2332|  9.60k|}
rdata.c:uint8_fromregion:
 2171|   172k|uint8_fromregion(isc_region_t *region) {
 2172|   172k|	REQUIRE(region->length >= 1);
  ------------------
  |  |  198|   172k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   172k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 172k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   172k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2173|       |
 2174|   172k|	return region->base[0];
 2175|   172k|}
rdata.c:name_length:
 1608|  66.2k|name_length(const dns_name_t *name) {
 1609|  66.2k|	return name->length;
 1610|  66.2k|}
rdata.c:mem_tobuffer:
 2186|   315k|mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length) {
 2187|   315k|	isc_region_t tr;
 2188|       |
 2189|   315k|	if (length == 0U) {
  ------------------
  |  Branch (2189:6): [True: 12.3k, False: 302k]
  ------------------
 2190|  12.3k|		return ISC_R_SUCCESS;
 2191|  12.3k|	}
 2192|       |
 2193|   302k|	isc_buffer_availableregion(target, &tr);
 2194|   302k|	if (length > tr.length) {
  ------------------
  |  Branch (2194:6): [True: 12.2k, False: 290k]
  ------------------
 2195|  12.2k|		return ISC_R_NOSPACE;
 2196|  12.2k|	}
 2197|   290k|	if (tr.base != base) {
  ------------------
  |  Branch (2197:6): [True: 290k, False: 0]
  ------------------
 2198|   290k|		memmove(tr.base, base, length);
 2199|   290k|	}
 2200|   290k|	isc_buffer_add(target, length);
 2201|   290k|	return ISC_R_SUCCESS;
 2202|   302k|}
rdata.c:txt_fromwire:
 1837|  75.5k|txt_fromwire(isc_buffer_t *source, isc_buffer_t *target) {
 1838|  75.5k|	unsigned int n;
 1839|  75.5k|	isc_region_t sregion;
 1840|  75.5k|	isc_region_t tregion;
 1841|       |
 1842|  75.5k|	isc_buffer_activeregion(source, &sregion);
 1843|  75.5k|	if (sregion.length == 0) {
  ------------------
  |  Branch (1843:6): [True: 37, False: 75.5k]
  ------------------
 1844|     37|		return ISC_R_UNEXPECTEDEND;
 1845|     37|	}
 1846|  75.5k|	n = *sregion.base + 1;
 1847|  75.5k|	if (n > sregion.length) {
  ------------------
  |  Branch (1847:6): [True: 59, False: 75.4k]
  ------------------
 1848|     59|		return ISC_R_UNEXPECTEDEND;
 1849|     59|	}
 1850|       |
 1851|  75.4k|	isc_buffer_availableregion(target, &tregion);
 1852|  75.4k|	if (n > tregion.length) {
  ------------------
  |  Branch (1852:6): [True: 2.15k, False: 73.2k]
  ------------------
 1853|  2.15k|		return ISC_R_NOSPACE;
 1854|  2.15k|	}
 1855|       |
 1856|  73.2k|	if (tregion.base != sregion.base) {
  ------------------
  |  Branch (1856:6): [True: 73.2k, False: 0]
  ------------------
 1857|  73.2k|		memmove(tregion.base, sregion.base, n);
 1858|  73.2k|	}
 1859|  73.2k|	isc_buffer_forward(source, n);
 1860|  73.2k|	isc_buffer_add(target, n);
 1861|  73.2k|	return ISC_R_SUCCESS;
 1862|  75.4k|}
rdata.c:check_private:
  586|  2.29k|check_private(isc_buffer_t *source, dns_secalg_t alg) {
  587|  2.29k|	isc_region_t sr;
  588|  2.29k|	if (alg == DNS_KEYALG_PRIVATEDNS) {
  ------------------
  |  Branch (588:6): [True: 1.43k, False: 860]
  ------------------
  589|  1.43k|		dns_fixedname_t fixed;
  590|       |
  591|  1.43k|		RETERR(dns_name_fromwire(dns_fixedname_initname(&fixed), source,
  ------------------
  |  |  276|  1.43k|	{                                  \
  |  |  277|  1.43k|		isc_result_t _r = (x);     \
  |  |  278|  1.43k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 81, False: 1.34k]
  |  |  ------------------
  |  |  279|     81|			return ((_r));     \
  |  |  280|     81|		}                          \
  |  |  281|  1.43k|	}
  ------------------
  592|  1.43k|					 DNS_DECOMPRESS_DEFAULT, NULL));
  593|  1.34k|	} else if (alg == DNS_KEYALG_PRIVATEOID) {
  ------------------
  |  Branch (593:13): [True: 860, False: 0]
  ------------------
  594|       |		/*
  595|       |		 * Check that we can extract the OID from the start of the
  596|       |		 * key data. We have a length byte followed by the OID BER
  597|       |		 * encoded.
  598|       |		 */
  599|    860|		const unsigned char *in = NULL;
  600|    860|		ASN1_OBJECT *obj = NULL;
  601|       |
  602|    860|		isc_buffer_activeregion(source, &sr);
  603|    860|		if (sr.length < 1 || (unsigned int)*sr.base + 1 > sr.length) {
  ------------------
  |  Branch (603:7): [True: 0, False: 860]
  |  Branch (603:24): [True: 6, False: 854]
  ------------------
  604|      6|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      6|	{                                  \
  |  |  277|      6|		isc_result_t _r = (x);     \
  |  |  278|      6|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 6, False: 0]
  |  |  ------------------
  |  |  279|      6|			return ((_r));     \
  |  |  280|      6|		}                          \
  |  |  281|      6|	}
  ------------------
  605|      0|		}
  606|    854|		in = sr.base + 1;
  607|    854|		obj = d2i_ASN1_OBJECT(NULL, &in, *sr.base);
  608|    854|		if (obj == NULL) {
  ------------------
  |  Branch (608:7): [True: 26, False: 828]
  ------------------
  609|     26|			ERR_clear_error();
  610|     26|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     26|	{                                  \
  |  |  277|     26|		isc_result_t _r = (x);     \
  |  |  278|     26|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 26, False: 0]
  |  |  ------------------
  |  |  279|     26|			return ((_r));     \
  |  |  280|     26|		}                          \
  |  |  281|     26|	}
  ------------------
  611|      0|		}
  612|    828|		ASN1_OBJECT_free(obj);
  613|    828|		if ((in - sr.base) != (*sr.base + 1)) {
  ------------------
  |  Branch (613:7): [True: 1, False: 827]
  ------------------
  614|      1|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      1|	{                                  \
  |  |  277|      1|		isc_result_t _r = (x);     \
  |  |  278|      1|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 0]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|      1|	}
  ------------------
  615|      0|		}
  616|    828|	}
  617|  2.17k|	return ISC_R_SUCCESS;
  618|  2.29k|}
rdata.c:uint32_fromregion:
 2144|  72.9k|uint32_fromregion(isc_region_t *region) {
 2145|  72.9k|	uint32_t value;
 2146|       |
 2147|  72.9k|	REQUIRE(region->length >= 4);
  ------------------
  |  |  198|  72.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  72.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 72.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  72.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2148|  72.9k|	value = (uint32_t)region->base[0] << 24;
 2149|  72.9k|	value |= (uint32_t)region->base[1] << 16;
 2150|  72.9k|	value |= (uint32_t)region->base[2] << 8;
 2151|  72.9k|	value |= (uint32_t)region->base[3];
 2152|  72.9k|	return value;
 2153|  72.9k|}
rdata.c:typemap_test:
  533|  9.34k|typemap_test(isc_region_t *sr, bool allow_empty) {
  534|  9.34k|	unsigned int window, lastwindow = 0;
  535|  9.34k|	unsigned int len;
  536|  9.34k|	bool first = true;
  537|  9.34k|	unsigned int i;
  538|       |
  539|  15.9k|	for (i = 0; i < sr->length; i += len) {
  ------------------
  |  Branch (539:14): [True: 6.70k, False: 9.26k]
  ------------------
  540|       |		/*
  541|       |		 * Check for overflow.
  542|       |		 */
  543|  6.70k|		if (i + 2 > sr->length) {
  ------------------
  |  Branch (543:7): [True: 3, False: 6.70k]
  ------------------
  544|      3|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      3|	{                                  \
  |  |  277|      3|		isc_result_t _r = (x);     \
  |  |  278|      3|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 3, False: 0]
  |  |  ------------------
  |  |  279|      3|			return ((_r));     \
  |  |  280|      3|		}                          \
  |  |  281|      3|	}
  ------------------
  545|      0|		}
  546|  6.70k|		window = sr->base[i];
  547|  6.70k|		len = sr->base[i + 1];
  548|  6.70k|		i += 2;
  549|       |		/*
  550|       |		 * Check that bitmap windows are in the correct order.
  551|       |		 */
  552|  6.70k|		if (!first && window <= lastwindow) {
  ------------------
  |  Branch (552:7): [True: 1.33k, False: 5.36k]
  |  Branch (552:17): [True: 25, False: 1.31k]
  ------------------
  553|     25|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     25|	{                                  \
  |  |  277|     25|		isc_result_t _r = (x);     \
  |  |  278|     25|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 25, False: 0]
  |  |  ------------------
  |  |  279|     25|			return ((_r));     \
  |  |  280|     25|		}                          \
  |  |  281|     25|	}
  ------------------
  554|      0|		}
  555|       |		/*
  556|       |		 * Check for legal lengths.
  557|       |		 */
  558|  6.67k|		if (len < 1 || len > 32) {
  ------------------
  |  Branch (558:7): [True: 15, False: 6.66k]
  |  Branch (558:18): [True: 20, False: 6.64k]
  ------------------
  559|     35|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     35|	{                                  \
  |  |  277|     35|		isc_result_t _r = (x);     \
  |  |  278|     35|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 35, False: 0]
  |  |  ------------------
  |  |  279|     35|			return ((_r));     \
  |  |  280|     35|		}                          \
  |  |  281|     35|	}
  ------------------
  560|      0|		}
  561|       |		/*
  562|       |		 * Check for overflow.
  563|       |		 */
  564|  6.64k|		if (i + len > sr->length) {
  ------------------
  |  Branch (564:7): [True: 19, False: 6.62k]
  ------------------
  565|     19|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     19|	{                                  \
  |  |  277|     19|		isc_result_t _r = (x);     \
  |  |  278|     19|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 19, False: 0]
  |  |  ------------------
  |  |  279|     19|			return ((_r));     \
  |  |  280|     19|		}                          \
  |  |  281|     19|	}
  ------------------
  566|      0|		}
  567|       |		/*
  568|       |		 * The last octet of the bitmap must be non zero.
  569|       |		 */
  570|  6.62k|		if (sr->base[i + len - 1] == 0) {
  ------------------
  |  Branch (570:7): [True: 4, False: 6.62k]
  ------------------
  571|      4|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      4|	{                                  \
  |  |  277|      4|		isc_result_t _r = (x);     \
  |  |  278|      4|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 4, False: 0]
  |  |  ------------------
  |  |  279|      4|			return ((_r));     \
  |  |  280|      4|		}                          \
  |  |  281|      4|	}
  ------------------
  572|      0|		}
  573|  6.62k|		lastwindow = window;
  574|  6.62k|		first = false;
  575|  6.62k|	}
  576|  9.26k|	if (i != sr->length) {
  ------------------
  |  Branch (576:6): [True: 0, False: 9.26k]
  ------------------
  577|      0|		return DNS_R_EXTRADATA;
  578|      0|	}
  579|  9.26k|	if (!allow_empty && first) {
  ------------------
  |  Branch (579:6): [True: 2.42k, False: 6.83k]
  |  Branch (579:22): [True: 9, False: 2.41k]
  ------------------
  580|      9|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      9|	{                                  \
  |  |  277|      9|		isc_result_t _r = (x);     \
  |  |  278|      9|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 9, False: 0]
  |  |  ------------------
  |  |  279|      9|			return ((_r));     \
  |  |  280|      9|		}                          \
  |  |  281|      9|	}
  ------------------
  581|      0|	}
  582|  9.25k|	return ISC_R_SUCCESS;
  583|  9.26k|}
rdata.c:validate_dohpath:
  624|  1.94k|validate_dohpath(isc_region_t *region) {
  625|  1.94k|	const unsigned char *p;
  626|  1.94k|	const unsigned char *v = NULL;
  627|  1.94k|	const unsigned char *n = NULL;
  628|  1.94k|	unsigned char c;
  629|  1.94k|	bool dns = false;
  630|  1.94k|	bool wasop = false;
  631|  1.94k|	enum {
  632|  1.94k|		path,
  633|  1.94k|		variable,
  634|  1.94k|		percent1,
  635|  1.94k|		percent2,
  636|  1.94k|		variable_percent1,
  637|  1.94k|		variable_percent2,
  638|  1.94k|		prefix,
  639|  1.94k|		explode
  640|  1.94k|	} state = path;
  641|       |
  642|  1.94k|	if (region->length == 0 || *region->base != '/' ||
  ------------------
  |  Branch (642:6): [True: 2, False: 1.94k]
  |  Branch (642:29): [True: 3, False: 1.94k]
  ------------------
  643|  1.94k|	    !isc_utf8_valid(region->base, region->length))
  ------------------
  |  Branch (643:6): [True: 1, False: 1.94k]
  ------------------
  644|      6|	{
  645|      6|		return false;
  646|      6|	}
  647|       |
  648|       |	/*
  649|       |	 * RFC 6570 URI Template check + "dns" variable.
  650|       |	 */
  651|  1.94k|	p = region->base;
  652|  64.1k|	while (p < region->base + region->length) {
  ------------------
  |  Branch (652:9): [True: 62.2k, False: 1.90k]
  ------------------
  653|  62.2k|		switch (state) {
  ------------------
  |  Branch (653:11): [True: 62.2k, False: 0]
  ------------------
  654|  24.6k|		case path:
  ------------------
  |  Branch (654:3): [True: 24.6k, False: 37.6k]
  ------------------
  655|  24.6k|			switch (*p++) {
  656|  4.22k|			case '{': /*}*/
  ------------------
  |  Branch (656:4): [True: 4.22k, False: 20.3k]
  ------------------
  657|  4.22k|				state = variable;
  658|  4.22k|				wasop = false;
  659|  4.22k|				v = p;
  660|  4.22k|				break;
  661|    225|			case '%':
  ------------------
  |  Branch (661:4): [True: 225, False: 24.3k]
  ------------------
  662|    225|				state = percent1;
  663|    225|				break;
  664|  20.1k|			default:
  ------------------
  |  Branch (664:4): [True: 20.1k, False: 4.44k]
  ------------------
  665|  20.1k|				break;
  666|  24.6k|			}
  667|  24.6k|			break;
  668|  30.1k|		case variable:
  ------------------
  |  Branch (668:3): [True: 30.1k, False: 32.1k]
  ------------------
  669|  30.1k|			c = *p++;
  670|  30.1k|			switch (c) {
  671|    480|			case '+':
  ------------------
  |  Branch (671:4): [True: 480, False: 29.6k]
  ------------------
  672|    587|			case '#':
  ------------------
  |  Branch (672:4): [True: 107, False: 30.0k]
  ------------------
  673|  2.69k|			case '.':
  ------------------
  |  Branch (673:4): [True: 2.11k, False: 28.0k]
  ------------------
  674|  4.09k|			case '/':
  ------------------
  |  Branch (674:4): [True: 1.39k, False: 28.7k]
  ------------------
  675|  4.45k|			case ';':
  ------------------
  |  Branch (675:4): [True: 355, False: 29.7k]
  ------------------
  676|  5.10k|			case '?':
  ------------------
  |  Branch (676:4): [True: 650, False: 29.4k]
  ------------------
  677|  5.50k|			case '&':
  ------------------
  |  Branch (677:4): [True: 403, False: 29.7k]
  ------------------
  678|       |				/* Operators. */
  679|  5.50k|				if (p != v + 1 || wasop) {
  ------------------
  |  Branch (679:9): [True: 1, False: 5.50k]
  |  Branch (679:23): [True: 14, False: 5.48k]
  ------------------
  680|     15|					return false;
  681|     15|				}
  682|  5.48k|				wasop = true;
  683|  5.48k|				v = p;
  684|  5.48k|				break;
  685|      1|			case '=':
  ------------------
  |  Branch (685:4): [True: 1, False: 30.1k]
  ------------------
  686|      2|			case '!':
  ------------------
  |  Branch (686:4): [True: 1, False: 30.1k]
  ------------------
  687|      3|			case '@':
  ------------------
  |  Branch (687:4): [True: 1, False: 30.1k]
  ------------------
  688|      4|			case '|':
  ------------------
  |  Branch (688:4): [True: 1, False: 30.1k]
  ------------------
  689|       |				/* Reserved operators. */
  690|      4|				return false;
  691|    293|			case '*':
  ------------------
  |  Branch (691:4): [True: 293, False: 29.8k]
  ------------------
  692|  2.30k|			case ':':
  ------------------
  |  Branch (692:4): [True: 2.01k, False: 28.1k]
  ------------------
  693|  4.77k|			case '}':
  ------------------
  |  Branch (693:4): [True: 2.46k, False: 27.6k]
  ------------------
  694|  7.54k|			case ',':
  ------------------
  |  Branch (694:4): [True: 2.77k, False: 27.3k]
  ------------------
  695|       |				/* Found the end of the variable name. */
  696|  7.54k|				if (p == (v + 1)) {
  ------------------
  |  Branch (696:9): [True: 8, False: 7.53k]
  ------------------
  697|      8|					return false;
  698|      8|				}
  699|       |				/* 'p' has been incremented so 4 not 3 */
  700|  7.53k|				if ((p - v) == 4 && memcmp(v, "dns", 3) == 0) {
  ------------------
  |  Branch (700:9): [True: 3.00k, False: 4.53k]
  |  Branch (700:25): [True: 1.95k, False: 1.04k]
  ------------------
  701|  1.95k|					dns = true;
  702|  1.95k|				}
  703|  7.53k|				switch (c) {
  ------------------
  |  Branch (703:13): [True: 7.53k, False: 0]
  ------------------
  704|  2.00k|				case ':':
  ------------------
  |  Branch (704:5): [True: 2.00k, False: 5.52k]
  ------------------
  705|  2.00k|					state = prefix;
  706|  2.00k|					n = p;
  707|  2.00k|					break;
  708|  2.46k|				case /*{*/ '}':
  ------------------
  |  Branch (708:5): [True: 2.46k, False: 5.06k]
  ------------------
  709|  2.46k|					state = path;
  710|  2.46k|					break;
  711|    292|				case '*':
  ------------------
  |  Branch (711:5): [True: 292, False: 7.24k]
  ------------------
  712|    292|					state = explode;
  713|    292|					break;
  714|  2.76k|				case ',':
  ------------------
  |  Branch (714:5): [True: 2.76k, False: 4.76k]
  ------------------
  715|  2.76k|					wasop = false;
  716|  2.76k|					v = p;
  717|  2.76k|					break;
  718|  7.53k|				}
  719|  7.53k|				break;
  720|  7.53k|			case '%':
  ------------------
  |  Branch (720:4): [True: 108, False: 30.0k]
  ------------------
  721|       |				/* Percent encoded variable name. */
  722|    108|				state = variable_percent1;
  723|    108|				break;
  724|  16.9k|			default:
  ------------------
  |  Branch (724:4): [True: 16.9k, False: 13.1k]
  ------------------
  725|       |				/* Valid variable name character? */
  726|  16.9k|				if (c != '_' && !isalnum(c)) {
  ------------------
  |  Branch (726:9): [True: 16.6k, False: 311]
  |  Branch (726:21): [True: 4, False: 16.6k]
  ------------------
  727|      4|					return false;
  728|      4|				}
  729|  16.9k|				break;
  730|  30.1k|			}
  731|  30.1k|			break;
  732|  30.1k|		case explode:
  ------------------
  |  Branch (732:3): [True: 289, False: 61.9k]
  ------------------
  733|    289|			switch (*p++) {
  734|     97|			case ',':
  ------------------
  |  Branch (734:4): [True: 97, False: 192]
  ------------------
  735|     97|				state = variable;
  736|     97|				wasop = false;
  737|     97|				v = p;
  738|     97|				break;
  739|    190|			case /*}*/ '}':
  ------------------
  |  Branch (739:4): [True: 190, False: 99]
  ------------------
  740|    190|				state = path;
  741|    190|				break;
  742|      2|			default:
  ------------------
  |  Branch (742:4): [True: 2, False: 287]
  ------------------
  743|      2|				return false;
  744|    289|			}
  745|    287|			break;
  746|       |		/* Check % encoding */
  747|    287|		case percent1:
  ------------------
  |  Branch (747:3): [True: 221, False: 62.0k]
  ------------------
  748|    440|		case percent2:
  ------------------
  |  Branch (748:3): [True: 219, False: 62.0k]
  ------------------
  749|    546|		case variable_percent1:
  ------------------
  |  Branch (749:3): [True: 106, False: 62.1k]
  ------------------
  750|    648|		case variable_percent2:
  ------------------
  |  Branch (750:3): [True: 102, False: 62.1k]
  ------------------
  751|       |			/* bad percent encoding? */
  752|    648|			if (!isxdigit(*p++)) {
  ------------------
  |  Branch (752:8): [True: 3, False: 645]
  ------------------
  753|      3|				return false;
  754|      3|			}
  755|    645|			if (state == percent1) {
  ------------------
  |  Branch (755:8): [True: 221, False: 424]
  ------------------
  756|    221|				state = percent2;
  757|    424|			} else if (state == percent2) {
  ------------------
  |  Branch (757:15): [True: 218, False: 206]
  ------------------
  758|    218|				state = path;
  759|    218|			} else if (state == variable_percent1) {
  ------------------
  |  Branch (759:15): [True: 105, False: 101]
  ------------------
  760|    105|				state = variable_percent2;
  761|    105|			} else {
  762|    101|				state = variable;
  763|    101|			}
  764|    645|			break;
  765|  6.58k|		case prefix:
  ------------------
  |  Branch (765:3): [True: 6.58k, False: 55.6k]
  ------------------
  766|  6.58k|			c = *p++;
  767|  6.58k|			if (!isdigit(c)) {
  ------------------
  |  Branch (767:8): [True: 2.00k, False: 4.58k]
  ------------------
  768|       |				/* valid number range [1..9999] */
  769|  2.00k|				if ((p == n + 1) || (p - n) > 5 || *n == '0') {
  ------------------
  |  Branch (769:9): [True: 2, False: 1.99k]
  |  Branch (769:25): [True: 3, False: 1.99k]
  |  Branch (769:40): [True: 1, False: 1.99k]
  ------------------
  770|      6|					return false;
  771|      6|				}
  772|  1.99k|				switch (c) {
  773|    525|				case ',':
  ------------------
  |  Branch (773:5): [True: 525, False: 1.46k]
  ------------------
  774|    525|					state = variable;
  775|    525|					wasop = false;
  776|    525|					break;
  777|  1.46k|				case /*{*/ '}':
  ------------------
  |  Branch (777:5): [True: 1.46k, False: 526]
  ------------------
  778|  1.46k|					state = path;
  779|  1.46k|					break;
  780|      1|				default:
  ------------------
  |  Branch (780:5): [True: 1, False: 1.99k]
  ------------------
  781|      1|					return false;
  782|  1.99k|				}
  783|  1.99k|			}
  784|  6.57k|			break;
  785|  62.2k|		}
  786|  62.2k|	}
  787|  1.90k|	return state == path && dns;
  ------------------
  |  Branch (787:9): [True: 1.83k, False: 62]
  |  Branch (787:26): [True: 1.81k, False: 19]
  ------------------
  788|  1.94k|}
rdata.c:rdata_totext:
 1291|   255k|	     isc_buffer_t *target) {
 1292|   255k|	isc_result_t result = ISC_R_NOTIMPLEMENTED;
 1293|   255k|	bool use_default = false;
 1294|   255k|	unsigned int cur;
 1295|       |
 1296|   255k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|   255k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   255k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 255k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   255k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1297|   255k|	REQUIRE(tctx->origin == NULL || dns_name_isabsolute(tctx->origin));
  ------------------
  |  |  198|   255k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   255k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 255k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   255k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1298|       |
 1299|       |	/*
 1300|       |	 * Some DynDNS meta-RRs have empty rdata.
 1301|       |	 */
 1302|   255k|	if ((rdata->flags & DNS_RDATA_UPDATE) != 0) {
  ------------------
  |  |  166|   255k|#define DNS_RDATA_UPDATE  0x0001 /*%< update pseudo record. */
  ------------------
  |  Branch (1302:6): [True: 1.95k, False: 253k]
  ------------------
 1303|  1.95k|		INSIST(rdata->length == 0);
  ------------------
  |  |  202|  1.95k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.95k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.95k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.95k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1304|  1.95k|		return ISC_R_SUCCESS;
 1305|  1.95k|	}
 1306|       |
 1307|   253k|	if ((tctx->flags & DNS_STYLEFLAG_UNKNOWNFORMAT) != 0) {
  ------------------
  |  |  201|   253k|#define DNS_STYLEFLAG_UNKNOWNFORMAT 0x00000010ULL
  ------------------
  |  Branch (1307:6): [True: 0, False: 253k]
  ------------------
 1308|      0|		return unknown_totext(rdata, tctx, target);
 1309|      0|	}
 1310|       |
 1311|   253k|	cur = isc_buffer_usedlength(target);
  ------------------
  |  |  157|   253k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
 1312|       |
 1313|   253k|	TOTEXTSWITCH
  ------------------
  |  |  277|   253k|	switch (rdata->type) { \
  |  |  278|  8.06k|	case 1: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (278:2): [True: 8.06k, False: 245k]
  |  |  ------------------
  |  |  279|  2.42k|		case 1: result = totext_in_a(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (279:3): [True: 2.42k, False: 5.64k]
  |  |  ------------------
  |  |  280|    833|		case 3: result = totext_ch_a(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (280:3): [True: 833, False: 7.23k]
  |  |  ------------------
  |  |  281|    731|		case 4: result = totext_hs_a(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (281:3): [True: 731, False: 7.33k]
  |  |  ------------------
  |  |  282|  4.07k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (282:3): [True: 4.07k, False: 3.99k]
  |  |  ------------------
  |  |  283|  8.06k|		} \
  |  |  284|  8.06k|		break; \
  |  |  285|  8.06k|	case 2: result = totext_ns(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (285:2): [True: 4.83k, False: 248k]
  |  |  ------------------
  |  |  286|  8.06k|	case 3: result = totext_md(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (286:2): [True: 1.78k, False: 251k]
  |  |  ------------------
  |  |  287|  8.06k|	case 4: result = totext_mf(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (287:2): [True: 993, False: 252k]
  |  |  ------------------
  |  |  288|  8.06k|	case 5: result = totext_cname(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (288:2): [True: 2.41k, False: 250k]
  |  |  ------------------
  |  |  289|  8.06k|	case 6: result = totext_soa(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (289:2): [True: 4.33k, False: 248k]
  |  |  ------------------
  |  |  290|  8.06k|	case 7: result = totext_mb(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (290:2): [True: 1.18k, False: 252k]
  |  |  ------------------
  |  |  291|  8.06k|	case 8: result = totext_mg(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (291:2): [True: 1.10k, False: 252k]
  |  |  ------------------
  |  |  292|  8.06k|	case 9: result = totext_mr(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (292:2): [True: 1.30k, False: 252k]
  |  |  ------------------
  |  |  293|  8.06k|	case 10: result = totext_null(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (293:2): [True: 4.19k, False: 249k]
  |  |  ------------------
  |  |  294|  8.06k|	case 11: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (294:2): [True: 3.27k, False: 250k]
  |  |  ------------------
  |  |  295|  1.41k|		case 1: result = totext_in_wks(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (295:3): [True: 1.41k, False: 1.86k]
  |  |  ------------------
  |  |  296|  1.86k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (296:3): [True: 1.86k, False: 1.41k]
  |  |  ------------------
  |  |  297|  3.27k|		} \
  |  |  298|  3.27k|		break; \
  |  |  299|  3.27k|	case 12: result = totext_ptr(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (299:2): [True: 747, False: 252k]
  |  |  ------------------
  |  |  300|  3.27k|	case 13: result = totext_hinfo(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (300:2): [True: 628, False: 252k]
  |  |  ------------------
  |  |  301|  3.27k|	case 14: result = totext_minfo(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (301:2): [True: 1.41k, False: 251k]
  |  |  ------------------
  |  |  302|  3.27k|	case 15: result = totext_mx(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (302:2): [True: 926, False: 252k]
  |  |  ------------------
  |  |  303|  3.27k|	case 16: result = totext_txt(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (303:2): [True: 1.19k, False: 252k]
  |  |  ------------------
  |  |  304|  3.27k|	case 17: result = totext_rp(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (304:2): [True: 2.10k, False: 251k]
  |  |  ------------------
  |  |  305|  3.27k|	case 18: result = totext_afsdb(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (305:2): [True: 914, False: 252k]
  |  |  ------------------
  |  |  306|  3.27k|	case 19: result = totext_x25(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (306:2): [True: 767, False: 252k]
  |  |  ------------------
  |  |  307|  3.27k|	case 20: result = totext_isdn(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (307:2): [True: 997, False: 252k]
  |  |  ------------------
  |  |  308|  3.27k|	case 21: result = totext_rt(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (308:2): [True: 1.00k, False: 252k]
  |  |  ------------------
  |  |  309|  3.27k|	case 22: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (309:2): [True: 2.89k, False: 250k]
  |  |  ------------------
  |  |  310|  1.29k|		case 1: result = totext_in_nsap(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (310:3): [True: 1.29k, False: 1.60k]
  |  |  ------------------
  |  |  311|  1.60k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (311:3): [True: 1.60k, False: 1.29k]
  |  |  ------------------
  |  |  312|  2.89k|		} \
  |  |  313|  2.89k|		break; \
  |  |  314|  2.89k|	case 23: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (314:2): [True: 1.89k, False: 251k]
  |  |  ------------------
  |  |  315|    874|		case 1: result = totext_in_nsap_ptr(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (315:3): [True: 874, False: 1.02k]
  |  |  ------------------
  |  |  316|  1.02k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (316:3): [True: 1.02k, False: 874]
  |  |  ------------------
  |  |  317|  1.89k|		} \
  |  |  318|  1.89k|		break; \
  |  |  319|  4.23k|	case 24: result = totext_sig(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (319:2): [True: 4.23k, False: 249k]
  |  |  ------------------
  |  |  320|  1.89k|	case 25: result = totext_key(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (320:2): [True: 1.37k, False: 251k]
  |  |  ------------------
  |  |  321|  1.89k|	case 26: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (321:2): [True: 1.87k, False: 251k]
  |  |  ------------------
  |  |  322|    706|		case 1: result = totext_in_px(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (322:3): [True: 706, False: 1.17k]
  |  |  ------------------
  |  |  323|  1.17k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (323:3): [True: 1.17k, False: 706]
  |  |  ------------------
  |  |  324|  1.87k|		} \
  |  |  325|  1.87k|		break; \
  |  |  326|  1.87k|	case 27: result = totext_gpos(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (326:2): [True: 858, False: 252k]
  |  |  ------------------
  |  |  327|  2.77k|	case 28: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (327:2): [True: 2.77k, False: 250k]
  |  |  ------------------
  |  |  328|  1.33k|		case 1: result = totext_in_aaaa(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (328:3): [True: 1.33k, False: 1.43k]
  |  |  ------------------
  |  |  329|  1.43k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (329:3): [True: 1.43k, False: 1.33k]
  |  |  ------------------
  |  |  330|  2.77k|		} \
  |  |  331|  2.77k|		break; \
  |  |  332|  4.45k|	case 29: result = totext_loc(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (332:2): [True: 4.45k, False: 248k]
  |  |  ------------------
  |  |  333|  2.77k|	case 30: result = totext_nxt(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (333:2): [True: 2.55k, False: 250k]
  |  |  ------------------
  |  |  334|  5.32k|	case 31: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (334:2): [True: 5.32k, False: 247k]
  |  |  ------------------
  |  |  335|  3.04k|		case 1: result = totext_in_eid(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (335:3): [True: 3.04k, False: 2.28k]
  |  |  ------------------
  |  |  336|  2.28k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (336:3): [True: 2.28k, False: 3.04k]
  |  |  ------------------
  |  |  337|  5.32k|		} \
  |  |  338|  5.32k|		break; \
  |  |  339|  5.32k|	case 32: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (339:2): [True: 2.27k, False: 251k]
  |  |  ------------------
  |  |  340|    720|		case 1: result = totext_in_nimloc(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (340:3): [True: 720, False: 1.55k]
  |  |  ------------------
  |  |  341|  1.55k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (341:3): [True: 1.55k, False: 720]
  |  |  ------------------
  |  |  342|  2.27k|		} \
  |  |  343|  2.27k|		break; \
  |  |  344|  2.90k|	case 33: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (344:2): [True: 2.90k, False: 250k]
  |  |  ------------------
  |  |  345|    768|		case 1: result = totext_in_srv(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (345:3): [True: 768, False: 2.13k]
  |  |  ------------------
  |  |  346|  2.13k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (346:3): [True: 2.13k, False: 768]
  |  |  ------------------
  |  |  347|  2.90k|		} \
  |  |  348|  2.90k|		break; \
  |  |  349|  3.91k|	case 34: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (349:2): [True: 3.91k, False: 249k]
  |  |  ------------------
  |  |  350|  2.44k|		case 1: result = totext_in_atma(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (350:3): [True: 2.44k, False: 1.46k]
  |  |  ------------------
  |  |  351|  1.46k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (351:3): [True: 1.46k, False: 2.44k]
  |  |  ------------------
  |  |  352|  3.91k|		} \
  |  |  353|  3.91k|		break; \
  |  |  354|  4.61k|	case 35: result = totext_naptr(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (354:2): [True: 4.61k, False: 248k]
  |  |  ------------------
  |  |  355|  3.91k|	case 36: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (355:2): [True: 3.32k, False: 250k]
  |  |  ------------------
  |  |  356|  1.39k|		case 1: result = totext_in_kx(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (356:3): [True: 1.39k, False: 1.92k]
  |  |  ------------------
  |  |  357|  1.92k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (357:3): [True: 1.92k, False: 1.39k]
  |  |  ------------------
  |  |  358|  3.32k|		} \
  |  |  359|  3.32k|		break; \
  |  |  360|  3.32k|	case 37: result = totext_cert(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (360:2): [True: 2.77k, False: 250k]
  |  |  ------------------
  |  |  361|  3.32k|	case 38: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (361:2): [True: 2.63k, False: 250k]
  |  |  ------------------
  |  |  362|  1.16k|		case 1: result = totext_in_a6(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (362:3): [True: 1.16k, False: 1.47k]
  |  |  ------------------
  |  |  363|  1.47k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (363:3): [True: 1.47k, False: 1.16k]
  |  |  ------------------
  |  |  364|  2.63k|		} \
  |  |  365|  2.63k|		break; \
  |  |  366|  3.19k|	case 39: result = totext_dname(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (366:2): [True: 3.19k, False: 250k]
  |  |  ------------------
  |  |  367|  2.63k|	case 40: result = totext_sink(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (367:2): [True: 1.37k, False: 251k]
  |  |  ------------------
  |  |  368|  4.76k|	case 41: result = totext_opt(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (368:2): [True: 4.76k, False: 248k]
  |  |  ------------------
  |  |  369|  3.72k|	case 42: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (369:2): [True: 3.72k, False: 249k]
  |  |  ------------------
  |  |  370|  2.55k|		case 1: result = totext_in_apl(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (370:3): [True: 2.55k, False: 1.16k]
  |  |  ------------------
  |  |  371|  1.16k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (371:3): [True: 1.16k, False: 2.55k]
  |  |  ------------------
  |  |  372|  3.72k|		} \
  |  |  373|  3.72k|		break; \
  |  |  374|  3.72k|	case 43: result = totext_ds(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (374:2): [True: 972, False: 252k]
  |  |  ------------------
  |  |  375|  3.72k|	case 44: result = totext_sshfp(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (375:2): [True: 1.83k, False: 251k]
  |  |  ------------------
  |  |  376|  3.72k|	case 45: result = totext_ipseckey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (376:2): [True: 2.09k, False: 251k]
  |  |  ------------------
  |  |  377|  4.07k|	case 46: result = totext_rrsig(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (377:2): [True: 4.07k, False: 249k]
  |  |  ------------------
  |  |  378|  3.72k|	case 47: result = totext_nsec(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (378:2): [True: 2.21k, False: 251k]
  |  |  ------------------
  |  |  379|  3.72k|	case 48: result = totext_dnskey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (379:2): [True: 2.13k, False: 251k]
  |  |  ------------------
  |  |  380|  3.91k|	case 49: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (380:2): [True: 3.91k, False: 249k]
  |  |  ------------------
  |  |  381|    757|		case 1: result = totext_in_dhcid(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (381:3): [True: 757, False: 3.15k]
  |  |  ------------------
  |  |  382|  3.15k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (382:3): [True: 3.15k, False: 757]
  |  |  ------------------
  |  |  383|  3.91k|		} \
  |  |  384|  3.91k|		break; \
  |  |  385|  4.19k|	case 50: result = totext_nsec3(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (385:2): [True: 4.19k, False: 249k]
  |  |  ------------------
  |  |  386|  3.91k|	case 51: result = totext_nsec3param(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (386:2): [True: 1.00k, False: 252k]
  |  |  ------------------
  |  |  387|  3.91k|	case 52: result = totext_tlsa(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (387:2): [True: 1.25k, False: 252k]
  |  |  ------------------
  |  |  388|  3.91k|	case 53: result = totext_smimea(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (388:2): [True: 1.00k, False: 252k]
  |  |  ------------------
  |  |  389|  7.21k|	case 55: result = totext_hip(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (389:2): [True: 7.21k, False: 246k]
  |  |  ------------------
  |  |  390|  3.91k|	case 56: result = totext_ninfo(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (390:2): [True: 714, False: 252k]
  |  |  ------------------
  |  |  391|  3.91k|	case 57: result = totext_rkey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (391:2): [True: 1.33k, False: 251k]
  |  |  ------------------
  |  |  392|  3.91k|	case 58: result = totext_talink(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (392:2): [True: 2.73k, False: 250k]
  |  |  ------------------
  |  |  393|  3.91k|	case 59: result = totext_cds(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (393:2): [True: 1.15k, False: 252k]
  |  |  ------------------
  |  |  394|  3.91k|	case 60: result = totext_cdnskey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (394:2): [True: 1.13k, False: 252k]
  |  |  ------------------
  |  |  395|  3.91k|	case 61: result = totext_openpgpkey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (395:2): [True: 964, False: 252k]
  |  |  ------------------
  |  |  396|  3.91k|	case 62: result = totext_csync(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (396:2): [True: 1.31k, False: 252k]
  |  |  ------------------
  |  |  397|  3.91k|	case 63: result = totext_zonemd(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (397:2): [True: 1.26k, False: 252k]
  |  |  ------------------
  |  |  398|  4.92k|	case 64: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (398:2): [True: 4.92k, False: 248k]
  |  |  ------------------
  |  |  399|  3.04k|		case 1: result = totext_in_svcb(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (399:3): [True: 3.04k, False: 1.88k]
  |  |  ------------------
  |  |  400|  1.88k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (400:3): [True: 1.88k, False: 3.04k]
  |  |  ------------------
  |  |  401|  4.92k|		} \
  |  |  402|  4.92k|		break; \
  |  |  403|  4.92k|	case 65: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (403:2): [True: 4.60k, False: 248k]
  |  |  ------------------
  |  |  404|  2.70k|		case 1: result = totext_in_https(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (404:3): [True: 2.70k, False: 1.89k]
  |  |  ------------------
  |  |  405|  1.89k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (405:3): [True: 1.89k, False: 2.70k]
  |  |  ------------------
  |  |  406|  4.60k|		} \
  |  |  407|  4.60k|		break; \
  |  |  408|  4.60k|	case 66: result = totext_dsync(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (408:2): [True: 1.05k, False: 252k]
  |  |  ------------------
  |  |  409|  4.60k|	case 67: result = totext_hhit(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (409:2): [True: 795, False: 252k]
  |  |  ------------------
  |  |  410|  4.60k|	case 68: result = totext_brid(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (410:2): [True: 885, False: 252k]
  |  |  ------------------
  |  |  411|  4.60k|	case 99: result = totext_spf(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (411:2): [True: 865, False: 252k]
  |  |  ------------------
  |  |  412|  4.60k|	case 104: result = totext_nid(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (412:2): [True: 849, False: 252k]
  |  |  ------------------
  |  |  413|  4.60k|	case 105: result = totext_l32(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (413:2): [True: 1.39k, False: 251k]
  |  |  ------------------
  |  |  414|  4.60k|	case 106: result = totext_l64(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (414:2): [True: 767, False: 252k]
  |  |  ------------------
  |  |  415|  4.60k|	case 107: result = totext_lp(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (415:2): [True: 706, False: 252k]
  |  |  ------------------
  |  |  416|  4.60k|	case 108: result = totext_eui48(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (416:2): [True: 731, False: 252k]
  |  |  ------------------
  |  |  417|  4.60k|	case 109: result = totext_eui64(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (417:2): [True: 665, False: 252k]
  |  |  ------------------
  |  |  418|  4.60k|	case 249: result = totext_tkey(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (418:2): [True: 1.97k, False: 251k]
  |  |  ------------------
  |  |  419|  4.60k|	case 250: switch (rdata->rdclass) { \
  |  |  ------------------
  |  |  |  Branch (419:2): [True: 4.28k, False: 249k]
  |  |  ------------------
  |  |  420|  1.17k|		case 255: result = totext_any_tsig(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (420:3): [True: 1.17k, False: 3.10k]
  |  |  ------------------
  |  |  421|  3.10k|		default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (421:3): [True: 3.10k, False: 1.17k]
  |  |  ------------------
  |  |  422|  4.28k|		} \
  |  |  423|  4.28k|		break; \
  |  |  424|  4.28k|	case 256: result = totext_uri(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (424:2): [True: 1.53k, False: 251k]
  |  |  ------------------
  |  |  425|  4.28k|	case 257: result = totext_caa(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (425:2): [True: 589, False: 252k]
  |  |  ------------------
  |  |  426|  4.28k|	case 258: result = totext_avc(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (426:2): [True: 1.07k, False: 252k]
  |  |  ------------------
  |  |  427|  4.28k|	case 259: result = totext_doa(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (427:2): [True: 1.14k, False: 252k]
  |  |  ------------------
  |  |  428|  4.28k|	case 260: result = totext_amtrelay(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (428:2): [True: 3.49k, False: 249k]
  |  |  ------------------
  |  |  429|  4.28k|	case 261: result = totext_resinfo(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (429:2): [True: 1.07k, False: 252k]
  |  |  ------------------
  |  |  430|  4.28k|	case 262: result = totext_wallet(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (430:2): [True: 796, False: 252k]
  |  |  ------------------
  |  |  431|  4.28k|	case 32768: result = totext_ta(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (431:2): [True: 683, False: 252k]
  |  |  ------------------
  |  |  432|  4.28k|	case 32769: result = totext_dlv(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (432:2): [True: 769, False: 252k]
  |  |  ------------------
  |  |  433|  4.28k|	case 65533: result = totext_keydata(rdata, tctx, target); break; \
  |  |  ------------------
  |  |  |  Branch (433:2): [True: 1.59k, False: 251k]
  |  |  ------------------
  |  |  434|  65.6k|	default: use_default = true; break; \
  |  |  ------------------
  |  |  |  Branch (434:2): [True: 65.6k, False: 187k]
  |  |  ------------------
  |  |  435|   253k|	}
  ------------------
 1314|       |
 1315|   253k|	if (use_default || (result == ISC_R_NOTIMPLEMENTED)) {
  ------------------
  |  Branch (1315:6): [True: 98.8k, False: 154k]
  |  Branch (1315:21): [True: 3.74k, False: 150k]
  ------------------
 1316|   102k|		unsigned int u = isc_buffer_usedlength(target);
  ------------------
  |  |  157|   102k|#define isc_buffer_usedlength(b)      ((b)->used)		   /* d-a */
  ------------------
 1317|       |
 1318|   102k|		INSIST(u >= cur);
  ------------------
  |  |  202|   102k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   102k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 102k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   102k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1319|   102k|		isc_buffer_subtract(target, u - cur);
 1320|   102k|		result = unknown_totext(rdata, tctx, target);
 1321|   102k|	}
 1322|       |
 1323|   253k|	return result;
 1324|   253k|}
rdata.c:unknown_totext:
 1254|   108k|	       isc_buffer_t *target) {
 1255|   108k|	isc_result_t result = ISC_R_SUCCESS;
 1256|   108k|	char buf[sizeof("65535")];
 1257|   108k|	isc_region_t sr;
 1258|       |
 1259|   108k|	strlcpy(buf, "\\# ", sizeof(buf));
 1260|   108k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|   108k|	{                                  \
  |  |  277|   108k|		isc_result_t _r = (x);     \
  |  |  278|   108k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 108k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|   108k|	}
  ------------------
 1261|       |
 1262|   108k|	dns_rdata_toregion(rdata, &sr);
 1263|   108k|	INSIST(sr.length < 65536);
  ------------------
  |  |  202|   108k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   108k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 108k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   108k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1264|   108k|	snprintf(buf, sizeof(buf), "%u", sr.length);
 1265|   108k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|   108k|	{                                  \
  |  |  277|   108k|		isc_result_t _r = (x);     \
  |  |  278|   108k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 108k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   108k|	}
  ------------------
 1266|       |
 1267|   108k|	if (sr.length != 0U) {
  ------------------
  |  Branch (1267:6): [True: 56.2k, False: 52.1k]
  ------------------
 1268|  56.2k|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  56.2k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (1268:7): [True: 0, False: 56.2k]
  ------------------
 1269|      0|			RETERR(str_totext(" ( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
 1270|  56.2k|		} else {
 1271|  56.2k|			RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  56.2k|	{                                  \
  |  |  277|  56.2k|		isc_result_t _r = (x);     \
  |  |  278|  56.2k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 56.2k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  56.2k|	}
  ------------------
 1272|  56.2k|		}
 1273|       |
 1274|  56.2k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (1274:7): [True: 0, False: 56.2k]
  ------------------
 1275|      0|			result = isc_hex_totext(&sr, 0, "", target);
 1276|  56.2k|		} else {
 1277|  56.2k|			result = isc_hex_totext(&sr, tctx->width - 2,
 1278|  56.2k|						tctx->linebreak, target);
 1279|  56.2k|		}
 1280|  56.2k|		if (result == ISC_R_SUCCESS &&
  ------------------
  |  Branch (1280:7): [True: 56.2k, False: 0]
  ------------------
 1281|  56.2k|		    (tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0)
  ------------------
  |  |  191|  56.2k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (1281:7): [True: 0, False: 56.2k]
  ------------------
 1282|      0|		{
 1283|      0|			result = str_totext(" )", target);
 1284|      0|		}
 1285|  56.2k|	}
 1286|   108k|	return result;
 1287|   108k|}
rdata.c:inet_totext:
 2051|  11.4k|inet_totext(int af, uint32_t flags, isc_region_t *src, isc_buffer_t *target) {
 2052|  11.4k|	char tmpbuf[64];
 2053|       |
 2054|       |	/* Note - inet_ntop doesn't do size checking on its input. */
 2055|  11.4k|	if (inet_ntop(af, src->base, tmpbuf, sizeof(tmpbuf)) == NULL) {
  ------------------
  |  Branch (2055:6): [True: 0, False: 11.4k]
  ------------------
 2056|      0|		return ISC_R_NOSPACE;
 2057|      0|	}
 2058|  11.4k|	if (strlen(tmpbuf) > isc_buffer_availablelength(target)) {
  ------------------
  |  |  161|  11.4k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (2058:6): [True: 0, False: 11.4k]
  ------------------
 2059|      0|		return ISC_R_NOSPACE;
 2060|      0|	}
 2061|  11.4k|	isc_buffer_putstr(target, tmpbuf);
 2062|       |
 2063|       |	/*
 2064|       |	 * An IPv6 address ending in "::" breaks YAML
 2065|       |	 * parsing, so append 0 in that case.
 2066|       |	 */
 2067|  11.4k|	if (af == AF_INET6 && (flags & DNS_STYLEFLAG_YAML) != 0) {
  ------------------
  |  |  107|  4.05k|#define DNS_STYLEFLAG_YAML 0x080000000ULL
  ------------------
  |  Branch (2067:6): [True: 4.05k, False: 7.41k]
  |  Branch (2067:24): [True: 0, False: 4.05k]
  ------------------
 2068|      0|		isc_region_t r;
 2069|      0|		isc_buffer_usedregion(target, &r);
 2070|      0|		if (r.length > 0 && r.base[r.length - 1] == ':') {
  ------------------
  |  Branch (2070:7): [True: 0, False: 0]
  |  Branch (2070:23): [True: 0, False: 0]
  ------------------
 2071|      0|			if (isc_buffer_availablelength(target) == 0) {
  ------------------
  |  |  161|      0|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  |  Branch (2071:8): [True: 0, False: 0]
  ------------------
 2072|      0|				return ISC_R_NOSPACE;
 2073|      0|			}
 2074|      0|			isc_buffer_putmem(target, (const unsigned char *)"0",
 2075|      0|					  1);
 2076|      0|		}
 2077|      0|	}
 2078|       |
 2079|  11.4k|	return ISC_R_SUCCESS;
 2080|  11.4k|}
rdata.c:name_prefix:
 1997|  69.5k|name_prefix(dns_name_t *name, const dns_name_t *origin, dns_name_t *target) {
 1998|  69.5k|	int l1, l2;
 1999|       |
 2000|  69.5k|	if (origin == NULL) {
  ------------------
  |  Branch (2000:6): [True: 69.5k, False: 0]
  ------------------
 2001|  69.5k|		goto return_false;
 2002|  69.5k|	}
 2003|       |
 2004|      0|	if (dns_name_compare(origin, dns_rootname) == 0) {
  ------------------
  |  Branch (2004:6): [True: 0, False: 0]
  ------------------
 2005|      0|		goto return_false;
 2006|      0|	}
 2007|       |
 2008|      0|	if (!dns_name_issubdomain(name, origin)) {
  ------------------
  |  Branch (2008:6): [True: 0, False: 0]
  ------------------
 2009|      0|		goto return_false;
 2010|      0|	}
 2011|       |
 2012|      0|	l1 = dns_name_countlabels(name);
 2013|      0|	l2 = dns_name_countlabels(origin);
 2014|       |
 2015|      0|	if (l1 == l2) {
  ------------------
  |  Branch (2015:6): [True: 0, False: 0]
  ------------------
 2016|      0|		goto return_false;
 2017|      0|	}
 2018|       |
 2019|       |	/* Master files should be case preserving. */
 2020|      0|	dns_name_getlabelsequence(name, l1 - l2, l2, target);
 2021|      0|	if (!dns_name_caseequal(origin, target)) {
  ------------------
  |  Branch (2021:6): [True: 0, False: 0]
  ------------------
 2022|      0|		goto return_false;
 2023|      0|	}
 2024|       |
 2025|      0|	dns_name_getlabelsequence(name, 0, l1 - l2, target);
 2026|      0|	return true;
 2027|       |
 2028|  69.5k|return_false:
 2029|  69.5k|	*target = *name;
 2030|       |	return false;
 2031|      0|}
rdata.c:txt_totext:
 1707|  56.7k|txt_totext(isc_region_t *source, bool quote, isc_buffer_t *target) {
 1708|       |	return commatxt_totext(source, quote, false, target);
 1709|  56.7k|}
rdata.c:commatxt_totext:
 1614|  57.9k|		isc_buffer_t *target) {
 1615|  57.9k|	unsigned int tl;
 1616|  57.9k|	unsigned int n;
 1617|  57.9k|	unsigned char *sp;
 1618|  57.9k|	char *tp;
 1619|  57.9k|	isc_region_t region;
 1620|       |
 1621|  57.9k|	isc_buffer_availableregion(target, &region);
 1622|  57.9k|	sp = source->base;
 1623|  57.9k|	tp = (char *)region.base;
 1624|  57.9k|	tl = region.length;
 1625|       |
 1626|  57.9k|	n = *sp++;
 1627|       |
 1628|  57.9k|	REQUIRE(n + 1 <= source->length);
  ------------------
  |  |  198|  57.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  57.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 57.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  57.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1629|  57.9k|	if (n == 0U) {
  ------------------
  |  Branch (1629:6): [True: 34.9k, False: 22.9k]
  ------------------
 1630|  34.9k|		REQUIRE(quote);
  ------------------
  |  |  198|  34.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  34.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 34.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  34.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1631|  34.9k|	}
 1632|       |
 1633|  57.9k|	if (quote) {
  ------------------
  |  Branch (1633:6): [True: 56.1k, False: 1.74k]
  ------------------
 1634|  56.1k|		if (tl < 1) {
  ------------------
  |  Branch (1634:7): [True: 0, False: 56.1k]
  ------------------
 1635|      0|			return ISC_R_NOSPACE;
 1636|      0|		}
 1637|  56.1k|		*tp++ = '"';
 1638|  56.1k|		tl--;
 1639|  56.1k|	}
 1640|   865k|	while (n--) {
  ------------------
  |  Branch (1640:9): [True: 807k, False: 57.9k]
  ------------------
 1641|       |		/*
 1642|       |		 * \DDD space (0x20) if not quoting.
 1643|       |		 */
 1644|   807k|		if (*sp < (quote ? ' ' : '!') || *sp >= 0x7f) {
  ------------------
  |  Branch (1644:7): [True: 311k, False: 495k]
  |  Branch (1644:14): [True: 794k, False: 12.7k]
  |  Branch (1644:36): [True: 139k, False: 356k]
  ------------------
 1645|   450k|			if (tl < 4) {
  ------------------
  |  Branch (1645:8): [True: 0, False: 450k]
  ------------------
 1646|      0|				return ISC_R_NOSPACE;
 1647|      0|			}
 1648|   450k|			*tp++ = '\\';
 1649|   450k|			*tp++ = '0' + ((*sp / 100) % 10);
 1650|   450k|			*tp++ = '0' + ((*sp / 10) % 10);
 1651|   450k|			*tp++ = '0' + (*sp % 10);
 1652|   450k|			sp++;
 1653|   450k|			tl -= 4;
 1654|   450k|			continue;
 1655|   450k|		}
 1656|       |		/*
 1657|       |		 * Escape double quote and backslash.  If we are not
 1658|       |		 * enclosing the string in double quotes, also escape
 1659|       |		 * at sign (@) and semicolon (;) unless comma is set.
 1660|       |		 * If comma is set, then only escape commas (,).
 1661|       |		 */
 1662|   356k|		if (*sp == '"' || *sp == '\\' || (comma && *sp == ',') ||
  ------------------
  |  Branch (1662:7): [True: 3.02k, False: 353k]
  |  Branch (1662:21): [True: 21.4k, False: 331k]
  |  Branch (1662:37): [True: 1.83k, False: 330k]
  |  Branch (1662:46): [True: 349, False: 1.48k]
  ------------------
 1663|   331k|		    (!comma && !quote && (*sp == '@' || *sp == ';')))
  ------------------
  |  Branch (1663:8): [True: 330k, False: 1.48k]
  |  Branch (1663:18): [True: 1.46k, False: 328k]
  |  Branch (1663:29): [True: 0, False: 1.46k]
  |  Branch (1663:43): [True: 0, False: 1.46k]
  ------------------
 1664|  24.7k|		{
 1665|  24.7k|			if (tl < 2) {
  ------------------
  |  Branch (1665:8): [True: 0, False: 24.7k]
  ------------------
 1666|      0|				return ISC_R_NOSPACE;
 1667|      0|			}
 1668|  24.7k|			*tp++ = '\\';
 1669|  24.7k|			tl--;
 1670|       |			/*
 1671|       |			 * Perform comma escape processing.
 1672|       |			 * ',' => '\\,'
 1673|       |			 * '\' => '\\\\'
 1674|       |			 */
 1675|  24.7k|			if (comma && (*sp == ',' || *sp == '\\')) {
  ------------------
  |  Branch (1675:8): [True: 1.80k, False: 22.9k]
  |  Branch (1675:18): [True: 349, False: 1.45k]
  |  Branch (1675:32): [True: 1.14k, False: 311]
  ------------------
 1676|  1.49k|				if (tl < ((*sp == '\\') ? 3 : 2)) {
  ------------------
  |  Branch (1676:9): [True: 0, False: 1.49k]
  |  Branch (1676:15): [True: 1.14k, False: 349]
  ------------------
 1677|      0|					return ISC_R_NOSPACE;
 1678|      0|				}
 1679|  1.49k|				*tp++ = '\\';
 1680|  1.49k|				tl--;
 1681|  1.49k|				if (*sp == '\\') {
  ------------------
  |  Branch (1681:9): [True: 1.14k, False: 349]
  ------------------
 1682|  1.14k|					*tp++ = '\\';
 1683|  1.14k|					tl--;
 1684|  1.14k|				}
 1685|  1.49k|			}
 1686|  24.7k|		}
 1687|   356k|		if (tl < 1) {
  ------------------
  |  Branch (1687:7): [True: 0, False: 356k]
  ------------------
 1688|      0|			return ISC_R_NOSPACE;
 1689|      0|		}
 1690|   356k|		*tp++ = *sp++;
 1691|   356k|		tl--;
 1692|   356k|	}
 1693|  57.9k|	if (quote) {
  ------------------
  |  Branch (1693:6): [True: 56.1k, False: 1.74k]
  ------------------
 1694|  56.1k|		if (tl < 1) {
  ------------------
  |  Branch (1694:7): [True: 0, False: 56.1k]
  ------------------
 1695|      0|			return ISC_R_NOSPACE;
 1696|      0|		}
 1697|  56.1k|		*tp++ = '"';
 1698|  56.1k|		tl--;
 1699|  56.1k|		POST(tl);
  ------------------
  |  |   74|  56.1k|#define POST(x) (void)(x)
  ------------------
 1700|  56.1k|	}
 1701|  57.9k|	isc_buffer_add(target, (unsigned int)(tp - (char *)region.base));
 1702|  57.9k|	isc_region_consume(source, *source->base + 1);
  ------------------
  |  |   50|  57.9k|	do {                              \
  |  |   51|  57.9k|		isc_region_t *_r = (r);   \
  |  |   52|  57.9k|		unsigned int  _l = (l);   \
  |  |   53|  57.9k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  57.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  57.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 57.9k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  57.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  57.9k|		_r->base += _l;           \
  |  |   55|  57.9k|		_r->length -= _l;         \
  |  |   56|  57.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 57.9k]
  |  |  ------------------
  ------------------
 1703|  57.9k|	return ISC_R_SUCCESS;
 1704|  57.9k|}
rdata.c:typemap_totext:
  487|  7.73k|	       isc_buffer_t *target) {
  488|  7.73k|	unsigned int i, j, k;
  489|  7.73k|	unsigned int window, len;
  490|  7.73k|	bool first = true;
  491|       |
  492|  13.0k|	for (i = 0; i < sr->length; i += len) {
  ------------------
  |  Branch (492:14): [True: 5.32k, False: 7.73k]
  ------------------
  493|  5.32k|		if (tctx != NULL &&
  ------------------
  |  Branch (493:7): [True: 1.76k, False: 3.55k]
  ------------------
  494|  1.76k|		    (tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0)
  ------------------
  |  |  191|  1.76k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (494:7): [True: 0, False: 1.76k]
  ------------------
  495|      0|		{
  496|      0|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  497|      0|			first = true;
  498|      0|		}
  499|  5.32k|		INSIST(i + 2 <= sr->length);
  ------------------
  |  |  202|  5.32k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  5.32k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 5.32k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  5.32k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  500|  5.32k|		window = sr->base[i];
  501|  5.32k|		len = sr->base[i + 1];
  502|  5.32k|		INSIST(len > 0 && len <= 32);
  ------------------
  |  |  202|  5.32k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  10.6k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 5.32k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 5.32k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  5.32k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  503|  5.32k|		i += 2;
  504|  5.32k|		INSIST(i + len <= sr->length);
  ------------------
  |  |  202|  5.32k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  5.32k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 5.32k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  5.32k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  505|  39.8k|		for (j = 0; j < len; j++) {
  ------------------
  |  Branch (505:15): [True: 34.5k, False: 5.32k]
  ------------------
  506|  34.5k|			dns_rdatatype_t t;
  507|  34.5k|			if (sr->base[i + j] == 0) {
  ------------------
  |  Branch (507:8): [True: 9.20k, False: 25.3k]
  ------------------
  508|  9.20k|				continue;
  509|  9.20k|			}
  510|   228k|			for (k = 0; k < 8; k++) {
  ------------------
  |  Branch (510:16): [True: 202k, False: 25.3k]
  ------------------
  511|   202k|				if ((sr->base[i + j] & (0x80 >> k)) == 0) {
  ------------------
  |  Branch (511:9): [True: 113k, False: 89.6k]
  ------------------
  512|   113k|					continue;
  513|   113k|				}
  514|  89.6k|				t = window * 256 + j * 8 + k;
  515|  89.6k|				if (!first) {
  ------------------
  |  Branch (515:9): [True: 85.4k, False: 4.14k]
  ------------------
  516|  85.4k|					RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  85.4k|	{                                  \
  |  |  277|  85.4k|		isc_result_t _r = (x);     \
  |  |  278|  85.4k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 85.4k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  85.4k|	}
  ------------------
  517|  85.4k|				}
  518|  89.6k|				first = false;
  519|  89.6k|				if (dns_rdatatype_isknown(t)) {
  ------------------
  |  Branch (519:9): [True: 41.3k, False: 48.2k]
  ------------------
  520|  41.3k|					RETERR(dns_rdatatype_totext(t, target));
  ------------------
  |  |  276|  41.3k|	{                                  \
  |  |  277|  41.3k|		isc_result_t _r = (x);     \
  |  |  278|  41.3k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 41.3k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  41.3k|	}
  ------------------
  521|  48.2k|				} else {
  522|  48.2k|					char buf[sizeof("TYPE65535")];
  523|  48.2k|					snprintf(buf, sizeof(buf), "TYPE%u", t);
  524|  48.2k|					RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  48.2k|	{                                  \
  |  |  277|  48.2k|		isc_result_t _r = (x);     \
  |  |  278|  48.2k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 48.2k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  48.2k|	}
  ------------------
  525|  48.2k|				}
  526|  89.6k|			}
  527|  25.3k|		}
  528|  5.32k|	}
  529|  7.73k|	return ISC_R_SUCCESS;
  530|  7.73k|}
rdata.c:multitxt_totext:
 1868|  4.90k|multitxt_totext(isc_region_t *source, isc_buffer_t *target) {
 1869|  4.90k|	unsigned int tl;
 1870|  4.90k|	unsigned int n0, n;
 1871|  4.90k|	unsigned char *sp;
 1872|  4.90k|	char *tp;
 1873|  4.90k|	isc_region_t region;
 1874|       |
 1875|  4.90k|	isc_buffer_availableregion(target, &region);
 1876|  4.90k|	sp = source->base;
 1877|  4.90k|	tp = (char *)region.base;
 1878|  4.90k|	tl = region.length;
 1879|       |
 1880|  4.90k|	if (tl < 1) {
  ------------------
  |  Branch (1880:6): [True: 0, False: 4.90k]
  ------------------
 1881|      0|		return ISC_R_NOSPACE;
 1882|      0|	}
 1883|  4.90k|	*tp++ = '"';
 1884|  4.90k|	tl--;
 1885|  4.90k|	do {
 1886|  4.90k|		n = source->length;
 1887|  4.90k|		n0 = source->length - 1;
 1888|       |
 1889|   942k|		while (n--) {
  ------------------
  |  Branch (1889:10): [True: 937k, False: 4.90k]
  ------------------
 1890|   937k|			if (*sp < ' ' || *sp >= 0x7f) {
  ------------------
  |  Branch (1890:8): [True: 648k, False: 289k]
  |  Branch (1890:21): [True: 125k, False: 164k]
  ------------------
 1891|   773k|				if (tl < 4) {
  ------------------
  |  Branch (1891:9): [True: 0, False: 773k]
  ------------------
 1892|      0|					return ISC_R_NOSPACE;
 1893|      0|				}
 1894|   773k|				*tp++ = '\\';
 1895|   773k|				*tp++ = '0' + ((*sp / 100) % 10);
 1896|   773k|				*tp++ = '0' + ((*sp / 10) % 10);
 1897|   773k|				*tp++ = '0' + (*sp % 10);
 1898|   773k|				sp++;
 1899|   773k|				tl -= 4;
 1900|   773k|				continue;
 1901|   773k|			}
 1902|       |			/* double quote, backslash */
 1903|   164k|			if (*sp == '"' || *sp == '\\') {
  ------------------
  |  Branch (1903:8): [True: 2.62k, False: 161k]
  |  Branch (1903:22): [True: 2.51k, False: 159k]
  ------------------
 1904|  5.13k|				if (tl < 2) {
  ------------------
  |  Branch (1904:9): [True: 0, False: 5.13k]
  ------------------
 1905|      0|					return ISC_R_NOSPACE;
 1906|      0|				}
 1907|  5.13k|				*tp++ = '\\';
 1908|  5.13k|				tl--;
 1909|  5.13k|			}
 1910|   164k|			if (tl < 1) {
  ------------------
  |  Branch (1910:8): [True: 0, False: 164k]
  ------------------
 1911|      0|				return ISC_R_NOSPACE;
 1912|      0|			}
 1913|   164k|			*tp++ = *sp++;
 1914|   164k|			tl--;
 1915|   164k|		}
 1916|  4.90k|		isc_region_consume(source, n0 + 1);
  ------------------
  |  |   50|  4.90k|	do {                              \
  |  |   51|  4.90k|		isc_region_t *_r = (r);   \
  |  |   52|  4.90k|		unsigned int  _l = (l);   \
  |  |   53|  4.90k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.90k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.90k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.90k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.90k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.90k|		_r->base += _l;           \
  |  |   55|  4.90k|		_r->length -= _l;         \
  |  |   56|  4.90k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.90k]
  |  |  ------------------
  ------------------
 1917|  4.90k|	} while (source->length != 0);
  ------------------
  |  Branch (1917:11): [True: 0, False: 4.90k]
  ------------------
 1918|  4.90k|	if (tl < 1) {
  ------------------
  |  Branch (1918:6): [True: 0, False: 4.90k]
  ------------------
 1919|      0|		return ISC_R_NOSPACE;
 1920|      0|	}
 1921|  4.90k|	*tp++ = '"';
 1922|  4.90k|	tl--;
 1923|  4.90k|	POST(tl);
  ------------------
  |  |   74|  4.90k|#define POST(x) (void)(x)
  ------------------
 1924|  4.90k|	isc_buffer_add(target, (unsigned int)(tp - (char *)region.base));
 1925|  4.90k|	return ISC_R_SUCCESS;
 1926|  4.90k|}
rdata.c:uint8_consume_fromregion:
 2178|    589|uint8_consume_fromregion(isc_region_t *region) {
 2179|    589|	uint8_t r = uint8_fromregion(region);
 2180|       |
 2181|    589|	isc_region_consume(region, 1);
  ------------------
  |  |   50|    589|	do {                              \
  |  |   51|    589|		isc_region_t *_r = (r);   \
  |  |   52|    589|		unsigned int  _l = (l);   \
  |  |   53|    589|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    589|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    589|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 589, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    589|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    589|		_r->base += _l;           \
  |  |   55|    589|		_r->length -= _l;         \
  |  |   56|    589|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 589]
  |  |  ------------------
  ------------------
 2182|    589|	return r;
 2183|    589|}
rdata.c:str_totext:
 2034|  2.16M|str_totext(const char *source, isc_buffer_t *target) {
 2035|  2.16M|	unsigned int l;
 2036|  2.16M|	isc_region_t region;
 2037|       |
 2038|  2.16M|	isc_buffer_availableregion(target, &region);
 2039|  2.16M|	l = strlen(source);
 2040|       |
 2041|  2.16M|	if (l > region.length) {
  ------------------
  |  Branch (2041:6): [True: 1, False: 2.16M]
  ------------------
 2042|      1|		return ISC_R_NOSPACE;
 2043|      1|	}
 2044|       |
 2045|  2.16M|	memmove(region.base, source, l);
 2046|  2.16M|	isc_buffer_add(target, l);
 2047|  2.16M|	return ISC_R_SUCCESS;
 2048|  2.16M|}
rdata.c:buffer_empty:
 2083|   348k|buffer_empty(isc_buffer_t *source) {
 2084|   348k|	return (source->current == source->active) ? true : false;
  ------------------
  |  Branch (2084:9): [True: 307k, False: 41.1k]
  ------------------
 2085|   348k|}
rdata.c:uint16_fromregion:
 2164|  1.85M|uint16_fromregion(isc_region_t *region) {
 2165|  1.85M|	REQUIRE(region->length >= 2);
  ------------------
  |  |  198|  1.85M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.85M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.85M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.85M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 2166|       |
 2167|  1.85M|	return (region->base[0] << 8) | region->base[1];
 2168|  1.85M|}

rdata.c:fromwire_any_tsig:
  255|  3.05k|fromwire_any_tsig(ARGS_FROMWIRE) {
  256|  3.05k|	isc_region_t sr;
  257|  3.05k|	dns_name_t name;
  258|  3.05k|	unsigned long n;
  259|       |
  260|  3.05k|	REQUIRE(type == dns_rdatatype_tsig);
  ------------------
  |  |  198|  3.05k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.05k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.05k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.05k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  261|  3.05k|	REQUIRE(rdclass == dns_rdataclass_any);
  ------------------
  |  |  198|  3.05k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.05k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.05k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.05k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  262|       |
  263|  3.05k|	UNUSED(type);
  ------------------
  |  |   69|  3.05k|#define UNUSED(x) (void)(x)
  ------------------
  264|  3.05k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.05k|#define UNUSED(x) (void)(x)
  ------------------
  265|       |
  266|  3.05k|	dctx = dns_decompress_setpermitted(dctx, false);
  267|       |
  268|       |	/*
  269|       |	 * Algorithm Name.
  270|       |	 */
  271|  3.05k|	dns_name_init(&name);
  272|  3.05k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  3.05k|	{                                  \
  |  |  277|  3.05k|		isc_result_t _r = (x);     \
  |  |  278|  3.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 207, False: 2.84k]
  |  |  ------------------
  |  |  279|    207|			return ((_r));     \
  |  |  280|    207|		}                          \
  |  |  281|  3.05k|	}
  ------------------
  273|       |
  274|  2.84k|	isc_buffer_activeregion(source, &sr);
  275|       |	/*
  276|       |	 * Time Signed + Fudge.
  277|       |	 */
  278|  2.84k|	if (sr.length < 8) {
  ------------------
  |  Branch (278:6): [True: 10, False: 2.83k]
  ------------------
  279|     10|		return ISC_R_UNEXPECTEDEND;
  280|     10|	}
  281|  2.83k|	RETERR(mem_tobuffer(target, sr.base, 8));
  ------------------
  |  |  276|  2.83k|	{                                  \
  |  |  277|  2.83k|		isc_result_t _r = (x);     \
  |  |  278|  2.83k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 201, False: 2.63k]
  |  |  ------------------
  |  |  279|    201|			return ((_r));     \
  |  |  280|    201|		}                          \
  |  |  281|  2.83k|	}
  ------------------
  282|  2.63k|	isc_region_consume(&sr, 8);
  ------------------
  |  |   50|  2.63k|	do {                              \
  |  |   51|  2.63k|		isc_region_t *_r = (r);   \
  |  |   52|  2.63k|		unsigned int  _l = (l);   \
  |  |   53|  2.63k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.63k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.63k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.63k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.63k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.63k|		_r->base += _l;           \
  |  |   55|  2.63k|		_r->length -= _l;         \
  |  |   56|  2.63k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.63k]
  |  |  ------------------
  ------------------
  283|  2.63k|	isc_buffer_forward(source, 8);
  284|       |
  285|       |	/*
  286|       |	 * Signature Length + Signature.
  287|       |	 */
  288|  2.63k|	if (sr.length < 2) {
  ------------------
  |  Branch (288:6): [True: 4, False: 2.63k]
  ------------------
  289|      4|		return ISC_R_UNEXPECTEDEND;
  290|      4|	}
  291|  2.63k|	n = uint16_fromregion(&sr);
  292|  2.63k|	if (sr.length < n + 2) {
  ------------------
  |  Branch (292:6): [True: 26, False: 2.60k]
  ------------------
  293|     26|		return ISC_R_UNEXPECTEDEND;
  294|     26|	}
  295|  2.60k|	RETERR(mem_tobuffer(target, sr.base, n + 2));
  ------------------
  |  |  276|  2.60k|	{                                  \
  |  |  277|  2.60k|		isc_result_t _r = (x);     \
  |  |  278|  2.60k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 200, False: 2.40k]
  |  |  ------------------
  |  |  279|    200|			return ((_r));     \
  |  |  280|    200|		}                          \
  |  |  281|  2.60k|	}
  ------------------
  296|  2.40k|	isc_region_consume(&sr, n + 2);
  ------------------
  |  |   50|  2.40k|	do {                              \
  |  |   51|  2.40k|		isc_region_t *_r = (r);   \
  |  |   52|  2.40k|		unsigned int  _l = (l);   \
  |  |   53|  2.40k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.40k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.40k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.40k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.40k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.40k|		_r->base += _l;           \
  |  |   55|  2.40k|		_r->length -= _l;         \
  |  |   56|  2.40k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.40k]
  |  |  ------------------
  ------------------
  297|  2.40k|	isc_buffer_forward(source, n + 2);
  298|       |
  299|       |	/*
  300|       |	 * Original ID + Error.
  301|       |	 */
  302|  2.40k|	if (sr.length < 4) {
  ------------------
  |  Branch (302:6): [True: 2, False: 2.40k]
  ------------------
  303|      2|		return ISC_R_UNEXPECTEDEND;
  304|      2|	}
  305|  2.40k|	RETERR(mem_tobuffer(target, sr.base, 4));
  ------------------
  |  |  276|  2.40k|	{                                  \
  |  |  277|  2.40k|		isc_result_t _r = (x);     \
  |  |  278|  2.40k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 198, False: 2.20k]
  |  |  ------------------
  |  |  279|    198|			return ((_r));     \
  |  |  280|    198|		}                          \
  |  |  281|  2.40k|	}
  ------------------
  306|  2.20k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  2.20k|	do {                              \
  |  |   51|  2.20k|		isc_region_t *_r = (r);   \
  |  |   52|  2.20k|		unsigned int  _l = (l);   \
  |  |   53|  2.20k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.20k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.20k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.20k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.20k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.20k|		_r->base += _l;           \
  |  |   55|  2.20k|		_r->length -= _l;         \
  |  |   56|  2.20k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.20k]
  |  |  ------------------
  ------------------
  307|  2.20k|	isc_buffer_forward(source, 4);
  308|       |
  309|       |	/*
  310|       |	 * Other Length + Other.
  311|       |	 */
  312|  2.20k|	if (sr.length < 2) {
  ------------------
  |  Branch (312:6): [True: 2, False: 2.20k]
  ------------------
  313|      2|		return ISC_R_UNEXPECTEDEND;
  314|      2|	}
  315|  2.20k|	n = uint16_fromregion(&sr);
  316|  2.20k|	if (sr.length < n + 2) {
  ------------------
  |  Branch (316:6): [True: 15, False: 2.19k]
  ------------------
  317|     15|		return ISC_R_UNEXPECTEDEND;
  318|     15|	}
  319|  2.19k|	isc_buffer_forward(source, n + 2);
  320|  2.19k|	return mem_tobuffer(target, sr.base, n + 2);
  321|  2.20k|}
rdata.c:towire_any_tsig:
  324|    573|towire_any_tsig(ARGS_TOWIRE) {
  325|    573|	isc_region_t sr;
  326|    573|	dns_name_t name;
  327|       |
  328|    573|	REQUIRE(rdata->type == dns_rdatatype_tsig);
  ------------------
  |  |  198|    573|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    573|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 573, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    573|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  329|    573|	REQUIRE(rdata->rdclass == dns_rdataclass_any);
  ------------------
  |  |  198|    573|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    573|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 573, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    573|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  330|    573|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    573|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    573|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 573, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    573|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  331|       |
  332|    573|	dns_compress_setpermitted(cctx, false);
  333|    573|	dns_rdata_toregion(rdata, &sr);
  334|    573|	dns_name_init(&name);
  335|    573|	dns_name_fromregion(&name, &sr);
  336|    573|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|    573|	{                                  \
  |  |  277|    573|		isc_result_t _r = (x);     \
  |  |  278|    573|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 572]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    573|	}
  ------------------
  337|    572|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|    572|	do {                              \
  |  |   51|    572|		isc_region_t *_r = (r);   \
  |  |   52|    572|		unsigned int  _l = (l);   \
  |  |   53|    572|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    572|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    572|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 572, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    572|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    572|		_r->base += _l;           \
  |  |   55|    572|		_r->length -= _l;         \
  |  |   56|    572|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 572]
  |  |  ------------------
  ------------------
  338|    572|	return mem_tobuffer(target, sr.base, sr.length);
  339|    573|}
rdata.c:totext_any_tsig:
  133|  1.17k|totext_any_tsig(ARGS_TOTEXT) {
  134|  1.17k|	isc_region_t sr;
  135|  1.17k|	isc_region_t sigr;
  136|  1.17k|	char buf[sizeof(" 281474976710655 ")];
  137|  1.17k|	char *bufp;
  138|  1.17k|	dns_name_t name;
  139|  1.17k|	dns_name_t prefix;
  140|  1.17k|	uint64_t sigtime;
  141|  1.17k|	unsigned short n;
  142|  1.17k|	unsigned int opts;
  143|       |
  144|  1.17k|	REQUIRE(rdata->type == dns_rdatatype_tsig);
  ------------------
  |  |  198|  1.17k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.17k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.17k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  145|  1.17k|	REQUIRE(rdata->rdclass == dns_rdataclass_any);
  ------------------
  |  |  198|  1.17k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.17k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.17k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  146|  1.17k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.17k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.17k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.17k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  147|       |
  148|  1.17k|	dns_rdata_toregion(rdata, &sr);
  149|       |	/*
  150|       |	 * Algorithm Name.
  151|       |	 */
  152|  1.17k|	dns_name_init(&name);
  153|  1.17k|	dns_name_init(&prefix);
  154|  1.17k|	dns_name_fromregion(&name, &sr);
  155|  1.17k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (155:9): [True: 0, False: 1.17k]
  ------------------
  156|  1.17k|							 : 0;
  157|  1.17k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  1.17k|	{                                  \
  |  |  277|  1.17k|		isc_result_t _r = (x);     \
  |  |  278|  1.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.17k|	}
  ------------------
  158|  1.17k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.17k|	{                                  \
  |  |  277|  1.17k|		isc_result_t _r = (x);     \
  |  |  278|  1.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.17k|	}
  ------------------
  159|  1.17k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  1.17k|	do {                              \
  |  |   51|  1.17k|		isc_region_t *_r = (r);   \
  |  |   52|  1.17k|		unsigned int  _l = (l);   \
  |  |   53|  1.17k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.17k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.17k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.17k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.17k|		_r->base += _l;           \
  |  |   55|  1.17k|		_r->length -= _l;         \
  |  |   56|  1.17k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.17k]
  |  |  ------------------
  ------------------
  160|       |
  161|       |	/*
  162|       |	 * Time Signed.
  163|       |	 */
  164|  1.17k|	sigtime = ((uint64_t)sr.base[0] << 40) | ((uint64_t)sr.base[1] << 32) |
  165|  1.17k|		  ((uint64_t)sr.base[2] << 24) | ((uint64_t)sr.base[3] << 16) |
  166|  1.17k|		  ((uint64_t)sr.base[4] << 8) | (uint64_t)sr.base[5];
  167|  1.17k|	isc_region_consume(&sr, 6);
  ------------------
  |  |   50|  1.17k|	do {                              \
  |  |   51|  1.17k|		isc_region_t *_r = (r);   \
  |  |   52|  1.17k|		unsigned int  _l = (l);   \
  |  |   53|  1.17k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.17k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.17k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.17k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.17k|		_r->base += _l;           \
  |  |   55|  1.17k|		_r->length -= _l;         \
  |  |   56|  1.17k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.17k]
  |  |  ------------------
  ------------------
  168|  1.17k|	bufp = &buf[sizeof(buf) - 1];
  169|  1.17k|	*bufp-- = 0;
  170|  1.17k|	*bufp-- = ' ';
  171|  8.36k|	do {
  172|  8.36k|		*bufp-- = '0' + sigtime % 10;
  173|  8.36k|		sigtime /= 10;
  174|  8.36k|	} while (sigtime != 0);
  ------------------
  |  Branch (174:11): [True: 7.18k, False: 1.17k]
  ------------------
  175|  1.17k|	bufp++;
  176|  1.17k|	RETERR(str_totext(bufp, target));
  ------------------
  |  |  276|  1.17k|	{                                  \
  |  |  277|  1.17k|		isc_result_t _r = (x);     \
  |  |  278|  1.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.17k|	}
  ------------------
  177|       |
  178|       |	/*
  179|       |	 * Fudge.
  180|       |	 */
  181|  1.17k|	n = uint16_fromregion(&sr);
  182|  1.17k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.17k|	do {                              \
  |  |   51|  1.17k|		isc_region_t *_r = (r);   \
  |  |   52|  1.17k|		unsigned int  _l = (l);   \
  |  |   53|  1.17k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.17k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.17k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.17k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.17k|		_r->base += _l;           \
  |  |   55|  1.17k|		_r->length -= _l;         \
  |  |   56|  1.17k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.17k]
  |  |  ------------------
  ------------------
  183|  1.17k|	snprintf(buf, sizeof(buf), "%u ", n);
  184|  1.17k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.17k|	{                                  \
  |  |  277|  1.17k|		isc_result_t _r = (x);     \
  |  |  278|  1.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.17k|	}
  ------------------
  185|       |
  186|       |	/*
  187|       |	 * Signature Size.
  188|       |	 */
  189|  1.17k|	n = uint16_fromregion(&sr);
  190|  1.17k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.17k|	do {                              \
  |  |   51|  1.17k|		isc_region_t *_r = (r);   \
  |  |   52|  1.17k|		unsigned int  _l = (l);   \
  |  |   53|  1.17k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.17k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.17k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.17k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.17k|		_r->base += _l;           \
  |  |   55|  1.17k|		_r->length -= _l;         \
  |  |   56|  1.17k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.17k]
  |  |  ------------------
  ------------------
  191|  1.17k|	snprintf(buf, sizeof(buf), "%u", n);
  192|  1.17k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.17k|	{                                  \
  |  |  277|  1.17k|		isc_result_t _r = (x);     \
  |  |  278|  1.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.17k|	}
  ------------------
  193|       |
  194|       |	/*
  195|       |	 * Signature.
  196|       |	 */
  197|  1.17k|	if (n != 0U) {
  ------------------
  |  Branch (197:6): [True: 237, False: 939]
  ------------------
  198|    237|		REQUIRE(n <= sr.length);
  ------------------
  |  |  198|    237|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    237|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 237, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    237|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  199|    237|		sigr = sr;
  200|    237|		sigr.length = n;
  201|    237|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    237|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (201:7): [True: 0, False: 237]
  ------------------
  202|      0|			RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  203|      0|		}
  204|    237|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|    237|	{                                  \
  |  |  277|    237|		isc_result_t _r = (x);     \
  |  |  278|    237|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 237]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    237|	}
  ------------------
  205|    237|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (205:7): [True: 0, False: 237]
  ------------------
  206|      0|			RETERR(isc_base64_totext(&sigr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  207|    237|		} else {
  208|    237|			RETERR(isc_base64_totext(&sigr, tctx->width - 2,
  ------------------
  |  |  276|    237|	{                                  \
  |  |  277|    237|		isc_result_t _r = (x);     \
  |  |  278|    237|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 237]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    237|	}
  ------------------
  209|    237|						 tctx->linebreak, target));
  210|    237|		}
  211|    237|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    237|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (211:7): [True: 0, False: 237]
  ------------------
  212|      0|			RETERR(str_totext(" ) ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  213|    237|		} else {
  214|    237|			RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    237|	{                                  \
  |  |  277|    237|		isc_result_t _r = (x);     \
  |  |  278|    237|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 237]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    237|	}
  ------------------
  215|    237|		}
  216|    237|		isc_region_consume(&sr, n);
  ------------------
  |  |   50|    237|	do {                              \
  |  |   51|    237|		isc_region_t *_r = (r);   \
  |  |   52|    237|		unsigned int  _l = (l);   \
  |  |   53|    237|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    237|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    237|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 237, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    237|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    237|		_r->base += _l;           \
  |  |   55|    237|		_r->length -= _l;         \
  |  |   56|    237|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 237]
  |  |  ------------------
  ------------------
  217|    939|	} else {
  218|    939|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    939|	{                                  \
  |  |  277|    939|		isc_result_t _r = (x);     \
  |  |  278|    939|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 939]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    939|	}
  ------------------
  219|    939|	}
  220|       |
  221|       |	/*
  222|       |	 * Original ID.
  223|       |	 */
  224|  1.17k|	n = uint16_fromregion(&sr);
  225|  1.17k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.17k|	do {                              \
  |  |   51|  1.17k|		isc_region_t *_r = (r);   \
  |  |   52|  1.17k|		unsigned int  _l = (l);   \
  |  |   53|  1.17k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.17k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.17k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.17k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.17k|		_r->base += _l;           \
  |  |   55|  1.17k|		_r->length -= _l;         \
  |  |   56|  1.17k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.17k]
  |  |  ------------------
  ------------------
  226|  1.17k|	snprintf(buf, sizeof(buf), "%u ", n);
  227|  1.17k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.17k|	{                                  \
  |  |  277|  1.17k|		isc_result_t _r = (x);     \
  |  |  278|  1.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.17k|	}
  ------------------
  228|       |
  229|       |	/*
  230|       |	 * Error.
  231|       |	 */
  232|  1.17k|	n = uint16_fromregion(&sr);
  233|  1.17k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.17k|	do {                              \
  |  |   51|  1.17k|		isc_region_t *_r = (r);   \
  |  |   52|  1.17k|		unsigned int  _l = (l);   \
  |  |   53|  1.17k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.17k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.17k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.17k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.17k|		_r->base += _l;           \
  |  |   55|  1.17k|		_r->length -= _l;         \
  |  |   56|  1.17k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.17k]
  |  |  ------------------
  ------------------
  234|  1.17k|	RETERR(dns_tsigrcode_totext((dns_rcode_t)n, target));
  ------------------
  |  |  276|  1.17k|	{                                  \
  |  |  277|  1.17k|		isc_result_t _r = (x);     \
  |  |  278|  1.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.17k|	}
  ------------------
  235|       |
  236|       |	/*
  237|       |	 * Other Size.
  238|       |	 */
  239|  1.17k|	n = uint16_fromregion(&sr);
  240|  1.17k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.17k|	do {                              \
  |  |   51|  1.17k|		isc_region_t *_r = (r);   \
  |  |   52|  1.17k|		unsigned int  _l = (l);   \
  |  |   53|  1.17k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.17k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.17k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.17k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.17k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.17k|		_r->base += _l;           \
  |  |   55|  1.17k|		_r->length -= _l;         \
  |  |   56|  1.17k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.17k]
  |  |  ------------------
  ------------------
  241|  1.17k|	snprintf(buf, sizeof(buf), " %u ", n);
  242|  1.17k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.17k|	{                                  \
  |  |  277|  1.17k|		isc_result_t _r = (x);     \
  |  |  278|  1.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.17k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.17k|	}
  ------------------
  243|       |
  244|       |	/*
  245|       |	 * Other.
  246|       |	 */
  247|  1.17k|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (247:6): [True: 0, False: 1.17k]
  ------------------
  248|      0|		return isc_base64_totext(&sr, 60, "", target);
  249|  1.17k|	} else {
  250|  1.17k|		return isc_base64_totext(&sr, 60, " ", target);
  251|  1.17k|	}
  252|  1.17k|}

rdata.c:fromwire_ch_a:
   99|  1.64k|fromwire_ch_a(ARGS_FROMWIRE) {
  100|  1.64k|	isc_region_t sregion;
  101|  1.64k|	isc_region_t tregion;
  102|  1.64k|	dns_name_t name;
  103|       |
  104|  1.64k|	REQUIRE(type == dns_rdatatype_a);
  ------------------
  |  |  198|  1.64k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.64k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.64k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.64k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  105|  1.64k|	REQUIRE(rdclass == dns_rdataclass_ch);
  ------------------
  |  |  198|  1.64k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.64k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.64k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.64k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  106|       |
  107|  1.64k|	UNUSED(type);
  ------------------
  |  |   69|  1.64k|#define UNUSED(x) (void)(x)
  ------------------
  108|  1.64k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.64k|#define UNUSED(x) (void)(x)
  ------------------
  109|       |
  110|  1.64k|	dctx = dns_decompress_setpermitted(dctx, true);
  111|       |
  112|  1.64k|	dns_name_init(&name);
  113|       |
  114|  1.64k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  1.64k|	{                                  \
  |  |  277|  1.64k|		isc_result_t _r = (x);     \
  |  |  278|  1.64k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 204, False: 1.44k]
  |  |  ------------------
  |  |  279|    204|			return ((_r));     \
  |  |  280|    204|		}                          \
  |  |  281|  1.64k|	}
  ------------------
  115|       |
  116|  1.44k|	isc_buffer_activeregion(source, &sregion);
  117|  1.44k|	isc_buffer_availableregion(target, &tregion);
  118|  1.44k|	if (sregion.length < 2) {
  ------------------
  |  Branch (118:6): [True: 7, False: 1.43k]
  ------------------
  119|      7|		return ISC_R_UNEXPECTEDEND;
  120|      7|	}
  121|  1.43k|	if (tregion.length < 2) {
  ------------------
  |  Branch (121:6): [True: 195, False: 1.24k]
  ------------------
  122|    195|		return ISC_R_NOSPACE;
  123|    195|	}
  124|       |
  125|  1.24k|	memmove(tregion.base, sregion.base, 2);
  126|  1.24k|	isc_buffer_forward(source, 2);
  127|  1.24k|	isc_buffer_add(target, 2);
  128|       |
  129|  1.24k|	return ISC_R_SUCCESS;
  130|  1.43k|}
rdata.c:towire_ch_a:
  133|    420|towire_ch_a(ARGS_TOWIRE) {
  134|    420|	dns_name_t name;
  135|    420|	isc_region_t sregion;
  136|    420|	isc_region_t tregion;
  137|       |
  138|    420|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|    420|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    420|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 420, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    420|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  139|    420|	REQUIRE(rdata->rdclass == dns_rdataclass_ch);
  ------------------
  |  |  198|    420|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    420|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 420, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    420|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  140|    420|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    420|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    420|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 420, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    420|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  141|       |
  142|    420|	dns_compress_setpermitted(cctx, true);
  143|       |
  144|    420|	dns_name_init(&name);
  145|       |
  146|    420|	dns_rdata_toregion(rdata, &sregion);
  147|       |
  148|    420|	dns_name_fromregion(&name, &sregion);
  149|    420|	isc_region_consume(&sregion, name_length(&name));
  ------------------
  |  |   50|    420|	do {                              \
  |  |   51|    420|		isc_region_t *_r = (r);   \
  |  |   52|    420|		unsigned int  _l = (l);   \
  |  |   53|    420|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    420|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    420|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 420, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    420|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    420|		_r->base += _l;           \
  |  |   55|    420|		_r->length -= _l;         \
  |  |   56|    420|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 420]
  |  |  ------------------
  ------------------
  150|    420|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|    420|	{                                  \
  |  |  277|    420|		isc_result_t _r = (x);     \
  |  |  278|    420|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 419]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    420|	}
  ------------------
  151|       |
  152|    419|	isc_buffer_availableregion(target, &tregion);
  153|    419|	if (tregion.length < 2) {
  ------------------
  |  Branch (153:6): [True: 1, False: 418]
  ------------------
  154|      1|		return ISC_R_NOSPACE;
  155|      1|	}
  156|       |
  157|    418|	memmove(tregion.base, sregion.base, 2);
  158|    418|	isc_buffer_add(target, 2);
  159|    418|	return ISC_R_SUCCESS;
  160|    419|}
rdata.c:totext_ch_a:
   69|    833|totext_ch_a(ARGS_TOTEXT) {
   70|    833|	isc_region_t region;
   71|    833|	dns_name_t name;
   72|    833|	dns_name_t prefix;
   73|    833|	unsigned int opts;
   74|    833|	char buf[sizeof("0177777")];
   75|    833|	uint16_t addr;
   76|       |
   77|    833|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|    833|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    833|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 833, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    833|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   78|    833|	REQUIRE(rdata->rdclass == dns_rdataclass_ch); /* 3 */
  ------------------
  |  |  198|    833|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    833|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 833, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    833|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   79|    833|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    833|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    833|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 833, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    833|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   80|       |
   81|    833|	dns_name_init(&name);
   82|    833|	dns_name_init(&prefix);
   83|       |
   84|    833|	dns_rdata_toregion(rdata, &region);
   85|    833|	dns_name_fromregion(&name, &region);
   86|    833|	isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|    833|	do {                              \
  |  |   51|    833|		isc_region_t *_r = (r);   \
  |  |   52|    833|		unsigned int  _l = (l);   \
  |  |   53|    833|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    833|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    833|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 833, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    833|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    833|		_r->base += _l;           \
  |  |   55|    833|		_r->length -= _l;         \
  |  |   56|    833|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 833]
  |  |  ------------------
  ------------------
   87|    833|	addr = uint16_fromregion(&region);
   88|       |
   89|    833|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (89:9): [True: 0, False: 833]
  ------------------
   90|    833|							 : 0;
   91|    833|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|    833|	{                                  \
  |  |  277|    833|		isc_result_t _r = (x);     \
  |  |  278|    833|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 833]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    833|	}
  ------------------
   92|       |
   93|    833|	snprintf(buf, sizeof(buf), "%o", addr); /* note octal */
   94|    833|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    833|	{                                  \
  |  |  277|    833|		isc_result_t _r = (x);     \
  |  |  278|    833|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 833]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    833|	}
  ------------------
   95|    833|	return str_totext(buf, target);
   96|    833|}

rdata.c:fromwire_afsdb:
   95|  1.08k|fromwire_afsdb(ARGS_FROMWIRE) {
   96|  1.08k|	dns_name_t name;
   97|  1.08k|	isc_region_t sr;
   98|  1.08k|	isc_region_t tr;
   99|       |
  100|  1.08k|	REQUIRE(type == dns_rdatatype_afsdb);
  ------------------
  |  |  198|  1.08k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.08k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.08k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.08k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|       |
  102|  1.08k|	UNUSED(type);
  ------------------
  |  |   69|  1.08k|#define UNUSED(x) (void)(x)
  ------------------
  103|  1.08k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.08k|#define UNUSED(x) (void)(x)
  ------------------
  104|       |
  105|  1.08k|	dctx = dns_decompress_setpermitted(dctx, false);
  106|       |
  107|  1.08k|	dns_name_init(&name);
  108|       |
  109|  1.08k|	isc_buffer_activeregion(source, &sr);
  110|  1.08k|	isc_buffer_availableregion(target, &tr);
  111|  1.08k|	if (tr.length < 2) {
  ------------------
  |  Branch (111:6): [True: 66, False: 1.02k]
  ------------------
  112|     66|		return ISC_R_NOSPACE;
  113|     66|	}
  114|  1.02k|	if (sr.length < 2) {
  ------------------
  |  Branch (114:6): [True: 7, False: 1.01k]
  ------------------
  115|      7|		return ISC_R_UNEXPECTEDEND;
  116|      7|	}
  117|  1.01k|	memmove(tr.base, sr.base, 2);
  118|  1.01k|	isc_buffer_forward(source, 2);
  119|  1.01k|	isc_buffer_add(target, 2);
  120|  1.01k|	return dns_name_fromwire(&name, source, dctx, target);
  121|  1.02k|}
rdata.c:towire_afsdb:
  124|    450|towire_afsdb(ARGS_TOWIRE) {
  125|    450|	isc_region_t tr;
  126|    450|	isc_region_t sr;
  127|    450|	dns_name_t name;
  128|       |
  129|    450|	REQUIRE(rdata->type == dns_rdatatype_afsdb);
  ------------------
  |  |  198|    450|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    450|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 450, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    450|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|    450|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    450|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    450|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 450, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    450|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  131|       |
  132|    450|	dns_compress_setpermitted(cctx, false);
  133|    450|	isc_buffer_availableregion(target, &tr);
  134|    450|	dns_rdata_toregion(rdata, &sr);
  135|    450|	if (tr.length < 2) {
  ------------------
  |  Branch (135:6): [True: 1, False: 449]
  ------------------
  136|      1|		return ISC_R_NOSPACE;
  137|      1|	}
  138|    449|	memmove(tr.base, sr.base, 2);
  139|    449|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|    449|	do {                              \
  |  |   51|    449|		isc_region_t *_r = (r);   \
  |  |   52|    449|		unsigned int  _l = (l);   \
  |  |   53|    449|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    449|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    449|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 449, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    449|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    449|		_r->base += _l;           \
  |  |   55|    449|		_r->length -= _l;         \
  |  |   56|    449|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 449]
  |  |  ------------------
  ------------------
  140|    449|	isc_buffer_add(target, 2);
  141|       |
  142|    449|	dns_name_init(&name);
  143|    449|	dns_name_fromregion(&name, &sr);
  144|       |
  145|    449|	return dns_name_towire(&name, cctx, target);
  146|    450|}
rdata.c:totext_afsdb:
   70|    914|totext_afsdb(ARGS_TOTEXT) {
   71|    914|	dns_name_t name;
   72|    914|	dns_name_t prefix;
   73|    914|	isc_region_t region;
   74|    914|	char buf[sizeof("64000 ")];
   75|    914|	unsigned int num, opts;
   76|       |
   77|    914|	REQUIRE(rdata->type == dns_rdatatype_afsdb);
  ------------------
  |  |  198|    914|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    914|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 914, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    914|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   78|    914|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    914|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    914|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 914, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    914|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   79|       |
   80|    914|	dns_name_init(&name);
   81|    914|	dns_name_init(&prefix);
   82|       |
   83|    914|	dns_rdata_toregion(rdata, &region);
   84|    914|	num = uint16_fromregion(&region);
   85|    914|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    914|	do {                              \
  |  |   51|    914|		isc_region_t *_r = (r);   \
  |  |   52|    914|		unsigned int  _l = (l);   \
  |  |   53|    914|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    914|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    914|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 914, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    914|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    914|		_r->base += _l;           \
  |  |   55|    914|		_r->length -= _l;         \
  |  |   56|    914|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 914]
  |  |  ------------------
  ------------------
   86|    914|	snprintf(buf, sizeof(buf), "%u ", num);
   87|    914|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    914|	{                                  \
  |  |  277|    914|		isc_result_t _r = (x);     \
  |  |  278|    914|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 914]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    914|	}
  ------------------
   88|    914|	dns_name_fromregion(&name, &region);
   89|    914|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (89:9): [True: 0, False: 914]
  ------------------
   90|    914|							 : 0;
   91|    914|	return dns_name_totext(&prefix, opts, target);
   92|    914|}

rdata.c:fromwire_amtrelay:
  183|  5.34k|fromwire_amtrelay(ARGS_FROMWIRE) {
  184|  5.34k|	dns_name_t name;
  185|  5.34k|	isc_region_t region;
  186|       |
  187|  5.34k|	REQUIRE(type == dns_rdatatype_amtrelay);
  ------------------
  |  |  198|  5.34k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.34k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.34k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.34k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  188|       |
  189|  5.34k|	UNUSED(type);
  ------------------
  |  |   69|  5.34k|#define UNUSED(x) (void)(x)
  ------------------
  190|  5.34k|	UNUSED(rdclass);
  ------------------
  |  |   69|  5.34k|#define UNUSED(x) (void)(x)
  ------------------
  191|       |
  192|  5.34k|	dctx = dns_decompress_setpermitted(dctx, false);
  193|       |
  194|  5.34k|	isc_buffer_activeregion(source, &region);
  195|  5.34k|	if (region.length < 2) {
  ------------------
  |  Branch (195:6): [True: 4, False: 5.33k]
  ------------------
  196|      4|		return ISC_R_UNEXPECTEDEND;
  197|      4|	}
  198|       |
  199|  5.33k|	switch (region.base[1] & 0x7f) {
  200|  1.20k|	case 0:
  ------------------
  |  Branch (200:2): [True: 1.20k, False: 4.13k]
  ------------------
  201|  1.20k|		if (region.length != 2) {
  ------------------
  |  Branch (201:7): [True: 2, False: 1.20k]
  ------------------
  202|      2|			return DNS_R_FORMERR;
  203|      2|		}
  204|  1.20k|		isc_buffer_forward(source, region.length);
  205|  1.20k|		return mem_tobuffer(target, region.base, region.length);
  206|       |
  207|    755|	case 1:
  ------------------
  |  Branch (207:2): [True: 755, False: 4.58k]
  ------------------
  208|    755|		if (region.length != 6) {
  ------------------
  |  Branch (208:7): [True: 1, False: 754]
  ------------------
  209|      1|			return DNS_R_FORMERR;
  210|      1|		}
  211|    754|		isc_buffer_forward(source, region.length);
  212|    754|		return mem_tobuffer(target, region.base, region.length);
  213|       |
  214|    829|	case 2:
  ------------------
  |  Branch (214:2): [True: 829, False: 4.50k]
  ------------------
  215|    829|		if (region.length != 18) {
  ------------------
  |  Branch (215:7): [True: 13, False: 816]
  ------------------
  216|     13|			return DNS_R_FORMERR;
  217|     13|		}
  218|    816|		isc_buffer_forward(source, region.length);
  219|    816|		return mem_tobuffer(target, region.base, region.length);
  220|       |
  221|    654|	case 3:
  ------------------
  |  Branch (221:2): [True: 654, False: 4.68k]
  ------------------
  222|    654|		RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|    654|	{                                  \
  |  |  277|    654|		isc_result_t _r = (x);     \
  |  |  278|    654|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 194, False: 460]
  |  |  ------------------
  |  |  279|    194|			return ((_r));     \
  |  |  280|    194|		}                          \
  |  |  281|    654|	}
  ------------------
  223|    460|		isc_buffer_forward(source, 2);
  224|    460|		dns_name_init(&name);
  225|    460|		return dns_name_fromwire(&name, source, dctx, target);
  226|       |
  227|  1.89k|	default:
  ------------------
  |  Branch (227:2): [True: 1.89k, False: 3.44k]
  ------------------
  228|  1.89k|		isc_buffer_forward(source, region.length);
  229|  1.89k|		return mem_tobuffer(target, region.base, region.length);
  230|  5.33k|	}
  231|  5.33k|}
rdata.c:towire_amtrelay:
  234|  1.79k|towire_amtrelay(ARGS_TOWIRE) {
  235|  1.79k|	isc_region_t region;
  236|       |
  237|  1.79k|	REQUIRE(rdata->type == dns_rdatatype_amtrelay);
  ------------------
  |  |  198|  1.79k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.79k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.79k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.79k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  238|  1.79k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.79k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.79k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.79k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.79k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  239|       |
  240|  1.79k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.79k|#define UNUSED(x) (void)(x)
  ------------------
  241|       |
  242|  1.79k|	dns_rdata_toregion(rdata, &region);
  243|  1.79k|	return mem_tobuffer(target, region.base, region.length);
  244|  1.79k|}
rdata.c:totext_amtrelay:
  122|  3.49k|totext_amtrelay(ARGS_TOTEXT) {
  123|  3.49k|	isc_region_t region;
  124|  3.49k|	dns_name_t name;
  125|  3.49k|	char buf[sizeof("0 255 ")];
  126|  3.49k|	unsigned char precedence;
  127|  3.49k|	unsigned char discovery;
  128|  3.49k|	unsigned char gateway;
  129|       |
  130|  3.49k|	UNUSED(tctx);
  ------------------
  |  |   69|  3.49k|#define UNUSED(x) (void)(x)
  ------------------
  131|       |
  132|  3.49k|	REQUIRE(rdata->type == dns_rdatatype_amtrelay);
  ------------------
  |  |  198|  3.49k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.49k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.49k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.49k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  133|  3.49k|	REQUIRE(rdata->length >= 2);
  ------------------
  |  |  198|  3.49k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.49k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.49k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.49k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  134|       |
  135|  3.49k|	if ((rdata->data[1] & 0x7f) > 3U) {
  ------------------
  |  Branch (135:6): [True: 1.45k, False: 2.03k]
  ------------------
  136|  1.45k|		return ISC_R_NOTIMPLEMENTED;
  137|  1.45k|	}
  138|       |
  139|       |	/*
  140|       |	 * Precedence.
  141|       |	 */
  142|  2.03k|	dns_rdata_toregion(rdata, &region);
  143|  2.03k|	precedence = uint8_fromregion(&region);
  144|  2.03k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  2.03k|	do {                              \
  |  |   51|  2.03k|		isc_region_t *_r = (r);   \
  |  |   52|  2.03k|		unsigned int  _l = (l);   \
  |  |   53|  2.03k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.03k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.03k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.03k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.03k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.03k|		_r->base += _l;           \
  |  |   55|  2.03k|		_r->length -= _l;         \
  |  |   56|  2.03k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.03k]
  |  |  ------------------
  ------------------
  145|  2.03k|	snprintf(buf, sizeof(buf), "%u ", precedence);
  146|  2.03k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.03k|	{                                  \
  |  |  277|  2.03k|		isc_result_t _r = (x);     \
  |  |  278|  2.03k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.03k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.03k|	}
  ------------------
  147|       |
  148|       |	/*
  149|       |	 * Discovery and Gateway type.
  150|       |	 */
  151|  2.03k|	gateway = uint8_fromregion(&region);
  152|  2.03k|	discovery = gateway >> 7;
  153|  2.03k|	gateway &= 0x7f;
  154|  2.03k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  2.03k|	do {                              \
  |  |   51|  2.03k|		isc_region_t *_r = (r);   \
  |  |   52|  2.03k|		unsigned int  _l = (l);   \
  |  |   53|  2.03k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.03k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.03k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.03k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.03k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.03k|		_r->base += _l;           \
  |  |   55|  2.03k|		_r->length -= _l;         \
  |  |   56|  2.03k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.03k]
  |  |  ------------------
  ------------------
  155|  2.03k|	snprintf(buf, sizeof(buf), "%u %u ", discovery, gateway);
  156|  2.03k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.03k|	{                                  \
  |  |  277|  2.03k|		isc_result_t _r = (x);     \
  |  |  278|  2.03k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.03k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.03k|	}
  ------------------
  157|       |
  158|       |	/*
  159|       |	 * Gateway.
  160|       |	 */
  161|  2.03k|	switch (gateway) {
  162|    792|	case 0:
  ------------------
  |  Branch (162:2): [True: 792, False: 1.24k]
  ------------------
  163|    792|		return str_totext(".", target);
  164|       |
  165|    611|	case 1:
  ------------------
  |  Branch (165:2): [True: 611, False: 1.42k]
  ------------------
  166|    611|		return inet_totext(AF_INET, tctx->flags, &region, target);
  167|       |
  168|    383|	case 2:
  ------------------
  |  Branch (168:2): [True: 383, False: 1.65k]
  ------------------
  169|    383|		return inet_totext(AF_INET6, tctx->flags, &region, target);
  170|       |
  171|    252|	case 3:
  ------------------
  |  Branch (171:2): [True: 252, False: 1.78k]
  ------------------
  172|    252|		dns_name_init(&name);
  173|    252|		dns_name_fromregion(&name, &region);
  174|    252|		return dns_name_totext(&name, 0, target);
  175|       |
  176|      0|	default:
  ------------------
  |  Branch (176:2): [True: 0, False: 2.03k]
  ------------------
  177|      0|		UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  178|  2.03k|	}
  179|      0|	return ISC_R_SUCCESS;
  180|  2.03k|}

rdata.c:fromwire_avc:
   35|  1.53k|fromwire_avc(ARGS_FROMWIRE) {
   36|  1.53k|	REQUIRE(type == dns_rdatatype_avc);
  ------------------
  |  |  198|  1.53k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.53k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.53k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.53k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.53k|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.53k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.53k|}
rdata.c:towire_avc:
   42|    580|towire_avc(ARGS_TOWIRE) {
   43|    580|	REQUIRE(rdata->type == dns_rdatatype_avc);
  ------------------
  |  |  198|    580|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    580|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 580, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    580|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    580|	UNUSED(cctx);
  ------------------
  |  |   69|    580|#define UNUSED(x) (void)(x)
  ------------------
   46|       |
   47|    580|	return mem_tobuffer(target, rdata->data, rdata->length);
   48|    580|}
rdata.c:totext_avc:
   27|  1.07k|totext_avc(ARGS_TOTEXT) {
   28|  1.07k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|  1.07k|	REQUIRE(rdata->type == dns_rdatatype_avc);
  ------------------
  |  |  198|  1.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|  1.07k|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|  1.07k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|  1.07k|}

rdata.c:fromwire_brid:
   63|  1.59k|fromwire_brid(ARGS_FROMWIRE) {
   64|  1.59k|	isc_region_t sr;
   65|       |
   66|  1.59k|	REQUIRE(type == dns_rdatatype_brid);
  ------------------
  |  |  198|  1.59k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.59k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.59k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.59k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.59k|	UNUSED(type);
  ------------------
  |  |   69|  1.59k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.59k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.59k|#define UNUSED(x) (void)(x)
  ------------------
   70|  1.59k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.59k|#define UNUSED(x) (void)(x)
  ------------------
   71|       |
   72|  1.59k|	isc_buffer_activeregion(source, &sr);
   73|  1.59k|	if (sr.length == 0) {
  ------------------
  |  Branch (73:6): [True: 2, False: 1.59k]
  ------------------
   74|      2|		return ISC_R_UNEXPECTEDEND;
   75|      2|	}
   76|       |
   77|  1.59k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  1.59k|	{                                  \
  |  |  277|  1.59k|		isc_result_t _r = (x);     \
  |  |  278|  1.59k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 372, False: 1.21k]
  |  |  ------------------
  |  |  279|    372|			return ((_r));     \
  |  |  280|    372|		}                          \
  |  |  281|  1.59k|	}
  ------------------
   78|  1.21k|	isc_buffer_forward(source, sr.length);
   79|  1.21k|	return ISC_R_SUCCESS;
   80|  1.59k|}
rdata.c:towire_brid:
   83|    448|towire_brid(ARGS_TOWIRE) {
   84|    448|	REQUIRE(rdata->type == dns_rdatatype_brid);
  ------------------
  |  |  198|    448|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    448|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 448, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    448|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|    448|	REQUIRE(rdata->length > 0);
  ------------------
  |  |  198|    448|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    448|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 448, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    448|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|    448|	UNUSED(cctx);
  ------------------
  |  |   69|    448|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|    448|	return mem_tobuffer(target, rdata->data, rdata->length);
   90|    448|}
rdata.c:totext_brid:
   35|    885|totext_brid(ARGS_TOTEXT) {
   36|    885|	isc_region_t sr;
   37|       |
   38|    885|	REQUIRE(rdata->type == dns_rdatatype_brid);
  ------------------
  |  |  198|    885|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    885|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 885, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    885|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   39|    885|	REQUIRE(rdata->length > 0);
  ------------------
  |  |  198|    885|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    885|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 885, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    885|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|       |
   41|    885|	dns_rdata_toregion(rdata, &sr);
   42|       |
   43|       |	/* data */
   44|    885|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    885|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (44:6): [True: 0, False: 885]
  ------------------
   45|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   46|      0|	}
   47|       |
   48|    885|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (48:6): [True: 0, False: 885]
  ------------------
   49|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   50|    885|	} else {
   51|    885|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    885|	{                                  \
  |  |  277|    885|		isc_result_t _r = (x);     \
  |  |  278|    885|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 885]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    885|	}
  ------------------
   52|    885|					 target));
   53|    885|	}
   54|       |
   55|    885|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    885|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (55:6): [True: 0, False: 885]
  ------------------
   56|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   57|      0|	}
   58|       |
   59|    885|	return ISC_R_SUCCESS;
   60|    885|}

rdata.c:fromwire_caa:
  365|  1.57k|fromwire_caa(ARGS_FROMWIRE) {
  366|  1.57k|	isc_region_t sr;
  367|  1.57k|	unsigned int len, i;
  368|       |
  369|  1.57k|	REQUIRE(type == dns_rdatatype_caa);
  ------------------
  |  |  198|  1.57k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.57k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.57k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  370|       |
  371|  1.57k|	UNUSED(type);
  ------------------
  |  |   69|  1.57k|#define UNUSED(x) (void)(x)
  ------------------
  372|  1.57k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.57k|#define UNUSED(x) (void)(x)
  ------------------
  373|  1.57k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.57k|#define UNUSED(x) (void)(x)
  ------------------
  374|       |
  375|       |	/*
  376|       |	 * Flags
  377|       |	 */
  378|  1.57k|	isc_buffer_activeregion(source, &sr);
  379|  1.57k|	if (sr.length < 2) {
  ------------------
  |  Branch (379:6): [True: 3, False: 1.57k]
  ------------------
  380|      3|		return ISC_R_UNEXPECTEDEND;
  381|      3|	}
  382|       |
  383|       |	/*
  384|       |	 * Flags, tag length
  385|       |	 */
  386|  1.57k|	RETERR(mem_tobuffer(target, sr.base, 2));
  ------------------
  |  |  276|  1.57k|	{                                  \
  |  |  277|  1.57k|		isc_result_t _r = (x);     \
  |  |  278|  1.57k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 198, False: 1.37k]
  |  |  ------------------
  |  |  279|    198|			return ((_r));     \
  |  |  280|    198|		}                          \
  |  |  281|  1.57k|	}
  ------------------
  387|  1.37k|	len = sr.base[1];
  388|  1.37k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.37k|	do {                              \
  |  |   51|  1.37k|		isc_region_t *_r = (r);   \
  |  |   52|  1.37k|		unsigned int  _l = (l);   \
  |  |   53|  1.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.37k|		_r->base += _l;           \
  |  |   55|  1.37k|		_r->length -= _l;         \
  |  |   56|  1.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.37k]
  |  |  ------------------
  ------------------
  389|  1.37k|	isc_buffer_forward(source, 2);
  390|       |
  391|       |	/*
  392|       |	 * Zero length tag fields are illegal.
  393|       |	 */
  394|  1.37k|	if (sr.length < len || len == 0) {
  ------------------
  |  Branch (394:6): [True: 7, False: 1.36k]
  |  Branch (394:25): [True: 4, False: 1.36k]
  ------------------
  395|     11|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     11|	{                                  \
  |  |  277|     11|		isc_result_t _r = (x);     \
  |  |  278|     11|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 11, False: 0]
  |  |  ------------------
  |  |  279|     11|			return ((_r));     \
  |  |  280|     11|		}                          \
  |  |  281|     11|	}
  ------------------
  396|      0|	}
  397|       |
  398|       |	/* Check the Tag's value */
  399|  4.00k|	for (i = 0; i < len; i++) {
  ------------------
  |  Branch (399:14): [True: 2.64k, False: 1.36k]
  ------------------
  400|  2.64k|		if (!alphanumeric[sr.base[i]]) {
  ------------------
  |  Branch (400:7): [True: 2, False: 2.64k]
  ------------------
  401|      2|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      2|	{                                  \
  |  |  277|      2|		isc_result_t _r = (x);     \
  |  |  278|      2|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 2, False: 0]
  |  |  ------------------
  |  |  279|      2|			return ((_r));     \
  |  |  280|      2|		}                          \
  |  |  281|      2|	}
  ------------------
  402|       |			/*
  403|       |			 * Tag + Value
  404|       |			 */
  405|      0|		}
  406|  2.64k|	}
  407|       |	/*
  408|       |	 * Tag + Value
  409|       |	 */
  410|  1.36k|	isc_buffer_forward(source, sr.length);
  411|  1.36k|	return mem_tobuffer(target, sr.base, sr.length);
  412|  1.36k|}
rdata.c:towire_caa:
  415|    375|towire_caa(ARGS_TOWIRE) {
  416|    375|	isc_region_t region;
  417|       |
  418|    375|	REQUIRE(rdata->type == dns_rdatatype_caa);
  ------------------
  |  |  198|    375|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    375|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 375, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    375|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  419|    375|	REQUIRE(rdata->length >= 3U);
  ------------------
  |  |  198|    375|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    375|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 375, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    375|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  420|    375|	REQUIRE(rdata->data != NULL);
  ------------------
  |  |  198|    375|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    375|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 375, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    375|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  421|       |
  422|    375|	UNUSED(cctx);
  ------------------
  |  |   69|    375|#define UNUSED(x) (void)(x)
  ------------------
  423|       |
  424|    375|	dns_rdata_toregion(rdata, &region);
  425|    375|	return mem_tobuffer(target, region.base, region.length);
  426|    375|}
rdata.c:totext_caa:
  331|    589|totext_caa(ARGS_TOTEXT) {
  332|    589|	isc_region_t region;
  333|    589|	uint8_t flags;
  334|    589|	char buf[256];
  335|       |
  336|    589|	UNUSED(tctx);
  ------------------
  |  |   69|    589|#define UNUSED(x) (void)(x)
  ------------------
  337|       |
  338|    589|	REQUIRE(rdata->type == dns_rdatatype_caa);
  ------------------
  |  |  198|    589|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    589|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 589, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    589|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  339|    589|	REQUIRE(rdata->length >= 3U);
  ------------------
  |  |  198|    589|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    589|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 589, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    589|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  340|    589|	REQUIRE(rdata->data != NULL);
  ------------------
  |  |  198|    589|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    589|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 589, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    589|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  341|       |
  342|    589|	dns_rdata_toregion(rdata, &region);
  343|       |
  344|       |	/*
  345|       |	 * Flags
  346|       |	 */
  347|    589|	flags = uint8_consume_fromregion(&region);
  348|    589|	snprintf(buf, sizeof(buf), "%u ", flags);
  349|    589|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    589|	{                                  \
  |  |  277|    589|		isc_result_t _r = (x);     \
  |  |  278|    589|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 589]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    589|	}
  ------------------
  350|       |
  351|       |	/*
  352|       |	 * Tag
  353|       |	 */
  354|    589|	RETERR(txt_totext(&region, false, target));
  ------------------
  |  |  276|    589|	{                                  \
  |  |  277|    589|		isc_result_t _r = (x);     \
  |  |  278|    589|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 589]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    589|	}
  ------------------
  355|    589|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    589|	{                                  \
  |  |  277|    589|		isc_result_t _r = (x);     \
  |  |  278|    589|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 589]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    589|	}
  ------------------
  356|       |
  357|       |	/*
  358|       |	 * Value
  359|       |	 */
  360|    589|	RETERR(multitxt_totext(&region, target));
  ------------------
  |  |  276|    589|	{                                  \
  |  |  277|    589|		isc_result_t _r = (x);     \
  |  |  278|    589|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 589]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    589|	}
  ------------------
  361|    589|	return ISC_R_SUCCESS;
  362|    589|}

rdata.c:fromwire_cdnskey:
   39|  1.21k|fromwire_cdnskey(ARGS_FROMWIRE) {
   40|  1.21k|	REQUIRE(type == dns_rdatatype_cdnskey);
  ------------------
  |  |  198|  1.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|       |
   42|  1.21k|	return generic_fromwire_key(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.21k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   43|  1.21k|}
rdata.c:towire_cdnskey:
   46|    585|towire_cdnskey(ARGS_TOWIRE) {
   47|    585|	isc_region_t sr;
   48|       |
   49|    585|	REQUIRE(rdata->type == dns_rdatatype_cdnskey);
  ------------------
  |  |  198|    585|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    585|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 585, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    585|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|    585|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    585|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    585|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 585, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    585|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|       |
   52|    585|	UNUSED(cctx);
  ------------------
  |  |   69|    585|#define UNUSED(x) (void)(x)
  ------------------
   53|       |
   54|    585|	dns_rdata_toregion(rdata, &sr);
   55|    585|	return mem_tobuffer(target, sr.base, sr.length);
   56|    585|}
rdata.c:totext_cdnskey:
   31|  1.13k|totext_cdnskey(ARGS_TOTEXT) {
   32|  1.13k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   33|  1.13k|	REQUIRE(rdata->type == dns_rdatatype_cdnskey);
  ------------------
  |  |  198|  1.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   34|       |
   35|  1.13k|	return generic_totext_key(CALL_TOTEXT);
  ------------------
  |  |   85|  1.13k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   36|  1.13k|}

rdata.c:fromwire_cds:
   39|  1.22k|fromwire_cds(ARGS_FROMWIRE) {
   40|  1.22k|	REQUIRE(type == dns_rdatatype_cds);
  ------------------
  |  |  198|  1.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|       |
   42|  1.22k|	return generic_fromwire_ds(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.22k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   43|  1.22k|}
rdata.c:towire_cds:
   46|    585|towire_cds(ARGS_TOWIRE) {
   47|    585|	isc_region_t sr;
   48|       |
   49|    585|	REQUIRE(rdata->type == dns_rdatatype_cds);
  ------------------
  |  |  198|    585|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    585|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 585, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    585|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|    585|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    585|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    585|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 585, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    585|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|       |
   52|    585|	UNUSED(cctx);
  ------------------
  |  |   69|    585|#define UNUSED(x) (void)(x)
  ------------------
   53|       |
   54|    585|	dns_rdata_toregion(rdata, &sr);
   55|    585|	return mem_tobuffer(target, sr.base, sr.length);
   56|    585|}
rdata.c:totext_cds:
   31|  1.15k|totext_cds(ARGS_TOTEXT) {
   32|  1.15k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.15k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.15k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.15k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.15k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   33|  1.15k|	REQUIRE(rdata->type == dns_rdatatype_cds);
  ------------------
  |  |  198|  1.15k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.15k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.15k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.15k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   34|       |
   35|  1.15k|	return generic_totext_ds(CALL_TOTEXT);
  ------------------
  |  |   85|  1.15k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   36|  1.15k|}

rdata.c:fromwire_cert:
  119|  3.11k|fromwire_cert(ARGS_FROMWIRE) {
  120|  3.11k|	isc_region_t sr;
  121|       |
  122|  3.11k|	REQUIRE(type == dns_rdatatype_cert);
  ------------------
  |  |  198|  3.11k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.11k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.11k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.11k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  123|       |
  124|  3.11k|	UNUSED(type);
  ------------------
  |  |   69|  3.11k|#define UNUSED(x) (void)(x)
  ------------------
  125|  3.11k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.11k|#define UNUSED(x) (void)(x)
  ------------------
  126|  3.11k|	UNUSED(dctx);
  ------------------
  |  |   69|  3.11k|#define UNUSED(x) (void)(x)
  ------------------
  127|       |
  128|  3.11k|	isc_buffer_activeregion(source, &sr);
  129|  3.11k|	if (sr.length < 6) {
  ------------------
  |  Branch (129:6): [True: 5, False: 3.10k]
  ------------------
  130|      5|		return ISC_R_UNEXPECTEDEND;
  131|      5|	}
  132|       |
  133|  3.10k|	isc_buffer_forward(source, sr.length);
  134|  3.10k|	return mem_tobuffer(target, sr.base, sr.length);
  135|  3.11k|}
rdata.c:towire_cert:
  138|  1.41k|towire_cert(ARGS_TOWIRE) {
  139|  1.41k|	isc_region_t sr;
  140|       |
  141|  1.41k|	REQUIRE(rdata->type == dns_rdatatype_cert);
  ------------------
  |  |  198|  1.41k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.41k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.41k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  142|  1.41k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.41k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.41k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.41k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  143|       |
  144|  1.41k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.41k|#define UNUSED(x) (void)(x)
  ------------------
  145|       |
  146|  1.41k|	dns_rdata_toregion(rdata, &sr);
  147|  1.41k|	return mem_tobuffer(target, sr.base, sr.length);
  148|  1.41k|}
rdata.c:totext_cert:
   65|  2.77k|totext_cert(ARGS_TOTEXT) {
   66|  2.77k|	isc_region_t sr;
   67|  2.77k|	char buf[sizeof("64000 ")];
   68|  2.77k|	unsigned int n;
   69|       |
   70|  2.77k|	REQUIRE(rdata->type == dns_rdatatype_cert);
  ------------------
  |  |  198|  2.77k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.77k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.77k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.77k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   71|  2.77k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.77k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.77k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.77k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.77k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|       |
   73|  2.77k|	UNUSED(tctx);
  ------------------
  |  |   69|  2.77k|#define UNUSED(x) (void)(x)
  ------------------
   74|       |
   75|  2.77k|	dns_rdata_toregion(rdata, &sr);
   76|       |
   77|       |	/*
   78|       |	 * Type.
   79|       |	 */
   80|  2.77k|	n = uint16_fromregion(&sr);
   81|  2.77k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  2.77k|	do {                              \
  |  |   51|  2.77k|		isc_region_t *_r = (r);   \
  |  |   52|  2.77k|		unsigned int  _l = (l);   \
  |  |   53|  2.77k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.77k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.77k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.77k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.77k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.77k|		_r->base += _l;           \
  |  |   55|  2.77k|		_r->length -= _l;         \
  |  |   56|  2.77k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.77k]
  |  |  ------------------
  ------------------
   82|  2.77k|	RETERR(dns_cert_totext((dns_cert_t)n, target));
  ------------------
  |  |  276|  2.77k|	{                                  \
  |  |  277|  2.77k|		isc_result_t _r = (x);     \
  |  |  278|  2.77k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.77k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.77k|	}
  ------------------
   83|  2.77k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  2.77k|	{                                  \
  |  |  277|  2.77k|		isc_result_t _r = (x);     \
  |  |  278|  2.77k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.77k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.77k|	}
  ------------------
   84|       |
   85|       |	/*
   86|       |	 * Key tag.
   87|       |	 */
   88|  2.77k|	n = uint16_fromregion(&sr);
   89|  2.77k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  2.77k|	do {                              \
  |  |   51|  2.77k|		isc_region_t *_r = (r);   \
  |  |   52|  2.77k|		unsigned int  _l = (l);   \
  |  |   53|  2.77k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.77k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.77k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.77k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.77k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.77k|		_r->base += _l;           \
  |  |   55|  2.77k|		_r->length -= _l;         \
  |  |   56|  2.77k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.77k]
  |  |  ------------------
  ------------------
   90|  2.77k|	snprintf(buf, sizeof(buf), "%u ", n);
   91|  2.77k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.77k|	{                                  \
  |  |  277|  2.77k|		isc_result_t _r = (x);     \
  |  |  278|  2.77k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.77k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.77k|	}
  ------------------
   92|       |
   93|       |	/*
   94|       |	 * Algorithm.
   95|       |	 */
   96|  2.77k|	RETERR(dns_secalg_totext(sr.base[0], target));
  ------------------
  |  |  276|  2.77k|	{                                  \
  |  |  277|  2.77k|		isc_result_t _r = (x);     \
  |  |  278|  2.77k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.77k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.77k|	}
  ------------------
   97|  2.77k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.77k|	do {                              \
  |  |   51|  2.77k|		isc_region_t *_r = (r);   \
  |  |   52|  2.77k|		unsigned int  _l = (l);   \
  |  |   53|  2.77k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.77k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.77k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.77k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.77k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.77k|		_r->base += _l;           \
  |  |   55|  2.77k|		_r->length -= _l;         \
  |  |   56|  2.77k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.77k]
  |  |  ------------------
  ------------------
   98|       |
   99|       |	/*
  100|       |	 * Cert.
  101|       |	 */
  102|  2.77k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.77k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (102:6): [True: 0, False: 2.77k]
  ------------------
  103|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  104|      0|	}
  105|  2.77k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  2.77k|	{                                  \
  |  |  277|  2.77k|		isc_result_t _r = (x);     \
  |  |  278|  2.77k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.77k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.77k|	}
  ------------------
  106|  2.77k|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (106:6): [True: 0, False: 2.77k]
  ------------------
  107|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  108|  2.77k|	} else {
  109|  2.77k|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|  2.77k|	{                                  \
  |  |  277|  2.77k|		isc_result_t _r = (x);     \
  |  |  278|  2.77k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.77k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.77k|	}
  ------------------
  110|  2.77k|					 target));
  111|  2.77k|	}
  112|  2.77k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.77k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (112:6): [True: 0, False: 2.77k]
  ------------------
  113|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  114|      0|	}
  115|  2.77k|	return ISC_R_SUCCESS;
  116|  2.77k|}

rdata.c:compare_cname:
   96|  1.93k|compare_cname(ARGS_COMPARE) {
   97|  1.93k|	dns_name_t name1;
   98|  1.93k|	dns_name_t name2;
   99|  1.93k|	isc_region_t region1;
  100|  1.93k|	isc_region_t region2;
  101|       |
  102|  1.93k|	REQUIRE(rdata1->type == rdata2->type);
  ------------------
  |  |  198|  1.93k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.93k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.93k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.93k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  103|  1.93k|	REQUIRE(rdata1->rdclass == rdata2->rdclass);
  ------------------
  |  |  198|  1.93k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.93k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.93k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.93k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|  1.93k|	REQUIRE(rdata1->type == dns_rdatatype_cname);
  ------------------
  |  |  198|  1.93k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.93k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.93k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.93k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  105|  1.93k|	REQUIRE(rdata1->length != 0);
  ------------------
  |  |  198|  1.93k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.93k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.93k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.93k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  106|  1.93k|	REQUIRE(rdata2->length != 0);
  ------------------
  |  |  198|  1.93k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.93k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.93k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.93k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  107|       |
  108|  1.93k|	dns_name_init(&name1);
  109|  1.93k|	dns_name_init(&name2);
  110|       |
  111|  1.93k|	dns_rdata_toregion(rdata1, &region1);
  112|  1.93k|	dns_rdata_toregion(rdata2, &region2);
  113|       |
  114|  1.93k|	dns_name_fromregion(&name1, &region1);
  115|  1.93k|	dns_name_fromregion(&name2, &region2);
  116|       |
  117|  1.93k|	return dns_name_rdatacompare(&name1, &name2);
  118|  1.93k|}
rdata.c:fromwire_cname:
   64|  2.47k|fromwire_cname(ARGS_FROMWIRE) {
   65|  2.47k|	dns_name_t name;
   66|       |
   67|  2.47k|	REQUIRE(type == dns_rdatatype_cname);
  ------------------
  |  |  198|  2.47k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.47k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.47k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.47k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|       |
   69|  2.47k|	UNUSED(type);
  ------------------
  |  |   69|  2.47k|#define UNUSED(x) (void)(x)
  ------------------
   70|  2.47k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.47k|#define UNUSED(x) (void)(x)
  ------------------
   71|       |
   72|  2.47k|	dctx = dns_decompress_setpermitted(dctx, true);
   73|       |
   74|  2.47k|	dns_name_init(&name);
   75|  2.47k|	return dns_name_fromwire(&name, source, dctx, target);
   76|  2.47k|}
rdata.c:towire_cname:
   79|  1.21k|towire_cname(ARGS_TOWIRE) {
   80|  1.21k|	dns_name_t name;
   81|  1.21k|	isc_region_t region;
   82|       |
   83|  1.21k|	REQUIRE(rdata->type == dns_rdatatype_cname);
  ------------------
  |  |  198|  1.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|  1.21k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|       |
   86|  1.21k|	dns_compress_setpermitted(cctx, true);
   87|       |
   88|  1.21k|	dns_name_init(&name);
   89|  1.21k|	dns_rdata_toregion(rdata, &region);
   90|  1.21k|	dns_name_fromregion(&name, &region);
   91|       |
   92|  1.21k|	return dns_name_towire(&name, cctx, target);
   93|  1.21k|}
rdata.c:totext_cname:
   43|  2.41k|totext_cname(ARGS_TOTEXT) {
   44|  2.41k|	isc_region_t region;
   45|  2.41k|	dns_name_t name;
   46|  2.41k|	dns_name_t prefix;
   47|  2.41k|	unsigned int opts;
   48|       |
   49|  2.41k|	REQUIRE(rdata->type == dns_rdatatype_cname);
  ------------------
  |  |  198|  2.41k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.41k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.41k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.41k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|  2.41k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.41k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.41k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.41k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.41k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|       |
   52|  2.41k|	dns_name_init(&name);
   53|  2.41k|	dns_name_init(&prefix);
   54|       |
   55|  2.41k|	dns_rdata_toregion(rdata, &region);
   56|  2.41k|	dns_name_fromregion(&name, &region);
   57|       |
   58|  2.41k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (58:9): [True: 0, False: 2.41k]
  ------------------
   59|  2.41k|							 : 0;
   60|  2.41k|	return dns_name_totext(&prefix, opts, target);
   61|  2.41k|}

rdata.c:fromwire_csync:
   85|  2.25k|fromwire_csync(ARGS_FROMWIRE) {
   86|  2.25k|	isc_region_t sr;
   87|       |
   88|  2.25k|	REQUIRE(type == dns_rdatatype_csync);
  ------------------
  |  |  198|  2.25k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.25k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.25k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   89|       |
   90|  2.25k|	UNUSED(type);
  ------------------
  |  |   69|  2.25k|#define UNUSED(x) (void)(x)
  ------------------
   91|  2.25k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.25k|#define UNUSED(x) (void)(x)
  ------------------
   92|  2.25k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.25k|#define UNUSED(x) (void)(x)
  ------------------
   93|       |
   94|       |	/*
   95|       |	 * Serial + Flags
   96|       |	 */
   97|  2.25k|	isc_buffer_activeregion(source, &sr);
   98|  2.25k|	if (sr.length < 6) {
  ------------------
  |  Branch (98:6): [True: 6, False: 2.25k]
  ------------------
   99|      6|		return ISC_R_UNEXPECTEDEND;
  100|      6|	}
  101|       |
  102|  2.25k|	RETERR(mem_tobuffer(target, sr.base, 6));
  ------------------
  |  |  276|  2.25k|	{                                  \
  |  |  277|  2.25k|		isc_result_t _r = (x);     \
  |  |  278|  2.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 195, False: 2.05k]
  |  |  ------------------
  |  |  279|    195|			return ((_r));     \
  |  |  280|    195|		}                          \
  |  |  281|  2.25k|	}
  ------------------
  103|  2.05k|	isc_buffer_forward(source, 6);
  104|  2.05k|	isc_region_consume(&sr, 6);
  ------------------
  |  |   50|  2.05k|	do {                              \
  |  |   51|  2.05k|		isc_region_t *_r = (r);   \
  |  |   52|  2.05k|		unsigned int  _l = (l);   \
  |  |   53|  2.05k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.05k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.05k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.05k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.05k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.05k|		_r->base += _l;           \
  |  |   55|  2.05k|		_r->length -= _l;         \
  |  |   56|  2.05k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.05k]
  |  |  ------------------
  ------------------
  105|       |
  106|  2.05k|	RETERR(typemap_test(&sr, true));
  ------------------
  |  |  276|  2.05k|	{                                  \
  |  |  277|  2.05k|		isc_result_t _r = (x);     \
  |  |  278|  2.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 32, False: 2.02k]
  |  |  ------------------
  |  |  279|     32|			return ((_r));     \
  |  |  280|     32|		}                          \
  |  |  281|  2.05k|	}
  ------------------
  107|       |
  108|  2.02k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  2.02k|	{                                  \
  |  |  277|  2.02k|		isc_result_t _r = (x);     \
  |  |  278|  2.02k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 198, False: 1.82k]
  |  |  ------------------
  |  |  279|    198|			return ((_r));     \
  |  |  280|    198|		}                          \
  |  |  281|  2.02k|	}
  ------------------
  109|  1.82k|	isc_buffer_forward(source, sr.length);
  110|  1.82k|	return ISC_R_SUCCESS;
  111|  2.02k|}
rdata.c:towire_csync:
  114|    664|towire_csync(ARGS_TOWIRE) {
  115|    664|	REQUIRE(rdata->type == dns_rdatatype_csync);
  ------------------
  |  |  198|    664|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    664|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 664, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    664|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  116|    664|	REQUIRE(rdata->length >= 6);
  ------------------
  |  |  198|    664|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    664|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 664, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    664|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|       |
  118|    664|	UNUSED(cctx);
  ------------------
  |  |   69|    664|#define UNUSED(x) (void)(x)
  ------------------
  119|       |
  120|    664|	return mem_tobuffer(target, rdata->data, rdata->length);
  121|    664|}
rdata.c:totext_csync:
   51|  1.31k|totext_csync(ARGS_TOTEXT) {
   52|  1.31k|	unsigned long num;
   53|  1.31k|	char buf[sizeof("0123456789")]; /* Also TYPE65535 */
   54|  1.31k|	isc_region_t sr;
   55|       |
   56|  1.31k|	REQUIRE(rdata->type == dns_rdatatype_csync);
  ------------------
  |  |  198|  1.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|  1.31k|	REQUIRE(rdata->length >= 6);
  ------------------
  |  |  198|  1.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   58|       |
   59|  1.31k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.31k|#define UNUSED(x) (void)(x)
  ------------------
   60|       |
   61|  1.31k|	dns_rdata_toregion(rdata, &sr);
   62|       |
   63|  1.31k|	num = uint32_fromregion(&sr);
   64|  1.31k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  1.31k|	do {                              \
  |  |   51|  1.31k|		isc_region_t *_r = (r);   \
  |  |   52|  1.31k|		unsigned int  _l = (l);   \
  |  |   53|  1.31k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.31k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.31k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.31k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.31k|		_r->base += _l;           \
  |  |   55|  1.31k|		_r->length -= _l;         \
  |  |   56|  1.31k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.31k]
  |  |  ------------------
  ------------------
   65|  1.31k|	snprintf(buf, sizeof(buf), "%lu", num);
   66|  1.31k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.31k|	{                                  \
  |  |  277|  1.31k|		isc_result_t _r = (x);     \
  |  |  278|  1.31k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.31k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.31k|	}
  ------------------
   67|       |
   68|  1.31k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.31k|	{                                  \
  |  |  277|  1.31k|		isc_result_t _r = (x);     \
  |  |  278|  1.31k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.31k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.31k|	}
  ------------------
   69|       |
   70|  1.31k|	num = uint16_fromregion(&sr);
   71|  1.31k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.31k|	do {                              \
  |  |   51|  1.31k|		isc_region_t *_r = (r);   \
  |  |   52|  1.31k|		unsigned int  _l = (l);   \
  |  |   53|  1.31k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.31k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.31k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.31k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.31k|		_r->base += _l;           \
  |  |   55|  1.31k|		_r->length -= _l;         \
  |  |   56|  1.31k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.31k]
  |  |  ------------------
  ------------------
   72|  1.31k|	snprintf(buf, sizeof(buf), "%lu", num);
   73|  1.31k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.31k|	{                                  \
  |  |  277|  1.31k|		isc_result_t _r = (x);     \
  |  |  278|  1.31k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.31k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.31k|	}
  ------------------
   74|       |
   75|       |	/*
   76|       |	 * Don't leave a trailing space when there's no typemap present.
   77|       |	 */
   78|  1.31k|	if (sr.length > 0) {
  ------------------
  |  Branch (78:6): [True: 460, False: 855]
  ------------------
   79|    460|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    460|	{                                  \
  |  |  277|    460|		isc_result_t _r = (x);     \
  |  |  278|    460|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 460]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    460|	}
  ------------------
   80|    460|	}
   81|  1.31k|	return typemap_totext(&sr, NULL, target);
   82|  1.31k|}

rdata.c:fromwire_dlv:
   39|    798|fromwire_dlv(ARGS_FROMWIRE) {
   40|    798|	REQUIRE(type == dns_rdatatype_dlv);
  ------------------
  |  |  198|    798|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    798|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 798, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    798|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|       |
   42|    798|	return generic_fromwire_ds(CALL_FROMWIRE);
  ------------------
  |  |   91|    798|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   43|    798|}
rdata.c:towire_dlv:
   46|    388|towire_dlv(ARGS_TOWIRE) {
   47|    388|	isc_region_t sr;
   48|       |
   49|    388|	REQUIRE(rdata->type == dns_rdatatype_dlv);
  ------------------
  |  |  198|    388|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    388|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 388, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    388|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|    388|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    388|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    388|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 388, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    388|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|       |
   52|    388|	UNUSED(cctx);
  ------------------
  |  |   69|    388|#define UNUSED(x) (void)(x)
  ------------------
   53|       |
   54|    388|	dns_rdata_toregion(rdata, &sr);
   55|    388|	return mem_tobuffer(target, sr.base, sr.length);
   56|    388|}
rdata.c:totext_dlv:
   31|    769|totext_dlv(ARGS_TOTEXT) {
   32|    769|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    769|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    769|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 769, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    769|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   33|    769|	REQUIRE(rdata->type == dns_rdatatype_dlv);
  ------------------
  |  |  198|    769|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    769|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 769, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    769|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   34|       |
   35|    769|	return generic_totext_ds(CALL_TOTEXT);
  ------------------
  |  |   85|    769|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   36|    769|}

rdata.c:compare_dname:
   96|  2.55k|compare_dname(ARGS_COMPARE) {
   97|  2.55k|	dns_name_t name1;
   98|  2.55k|	dns_name_t name2;
   99|  2.55k|	isc_region_t region1;
  100|  2.55k|	isc_region_t region2;
  101|       |
  102|  2.55k|	REQUIRE(rdata1->type == rdata2->type);
  ------------------
  |  |  198|  2.55k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.55k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.55k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.55k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  103|  2.55k|	REQUIRE(rdata1->rdclass == rdata2->rdclass);
  ------------------
  |  |  198|  2.55k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.55k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.55k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.55k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|  2.55k|	REQUIRE(rdata1->type == dns_rdatatype_dname);
  ------------------
  |  |  198|  2.55k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.55k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.55k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.55k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  105|  2.55k|	REQUIRE(rdata1->length != 0);
  ------------------
  |  |  198|  2.55k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.55k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.55k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.55k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  106|  2.55k|	REQUIRE(rdata2->length != 0);
  ------------------
  |  |  198|  2.55k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.55k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.55k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.55k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  107|       |
  108|  2.55k|	dns_name_init(&name1);
  109|  2.55k|	dns_name_init(&name2);
  110|       |
  111|  2.55k|	dns_rdata_toregion(rdata1, &region1);
  112|  2.55k|	dns_rdata_toregion(rdata2, &region2);
  113|       |
  114|  2.55k|	dns_name_fromregion(&name1, &region1);
  115|  2.55k|	dns_name_fromregion(&name2, &region2);
  116|       |
  117|  2.55k|	return dns_name_rdatacompare(&name1, &name2);
  118|  2.55k|}
rdata.c:fromwire_dname:
   65|  3.54k|fromwire_dname(ARGS_FROMWIRE) {
   66|  3.54k|	dns_name_t name;
   67|       |
   68|  3.54k|	REQUIRE(type == dns_rdatatype_dname);
  ------------------
  |  |  198|  3.54k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.54k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.54k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.54k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   69|       |
   70|  3.54k|	UNUSED(type);
  ------------------
  |  |   69|  3.54k|#define UNUSED(x) (void)(x)
  ------------------
   71|  3.54k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.54k|#define UNUSED(x) (void)(x)
  ------------------
   72|       |
   73|  3.54k|	dctx = dns_decompress_setpermitted(dctx, false);
   74|       |
   75|  3.54k|	dns_name_init(&name);
   76|  3.54k|	return dns_name_fromwire(&name, source, dctx, target);
   77|  3.54k|}
rdata.c:towire_dname:
   80|  1.61k|towire_dname(ARGS_TOWIRE) {
   81|  1.61k|	dns_name_t name;
   82|  1.61k|	isc_region_t region;
   83|       |
   84|  1.61k|	REQUIRE(rdata->type == dns_rdatatype_dname);
  ------------------
  |  |  198|  1.61k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.61k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.61k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.61k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|  1.61k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.61k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.61k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.61k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.61k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|  1.61k|	dns_compress_setpermitted(cctx, false);
   88|  1.61k|	dns_name_init(&name);
   89|  1.61k|	dns_rdata_toregion(rdata, &region);
   90|  1.61k|	dns_name_fromregion(&name, &region);
   91|       |
   92|  1.61k|	return dns_name_towire(&name, cctx, target);
   93|  1.61k|}
rdata.c:totext_dname:
   44|  3.19k|totext_dname(ARGS_TOTEXT) {
   45|  3.19k|	isc_region_t region;
   46|  3.19k|	dns_name_t name;
   47|  3.19k|	dns_name_t prefix;
   48|  3.19k|	unsigned int opts;
   49|       |
   50|  3.19k|	REQUIRE(rdata->type == dns_rdatatype_dname);
  ------------------
  |  |  198|  3.19k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.19k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.19k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|  3.19k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.19k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.19k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.19k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   52|       |
   53|  3.19k|	dns_name_init(&name);
   54|  3.19k|	dns_name_init(&prefix);
   55|       |
   56|  3.19k|	dns_rdata_toregion(rdata, &region);
   57|  3.19k|	dns_name_fromregion(&name, &region);
   58|       |
   59|  3.19k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (59:9): [True: 0, False: 3.19k]
  ------------------
   60|  3.19k|							 : 0;
   61|  3.19k|	return dns_name_totext(&prefix, opts, target);
   62|  3.19k|}

rdata.c:fromwire_dnskey:
   39|  2.65k|fromwire_dnskey(ARGS_FROMWIRE) {
   40|  2.65k|	REQUIRE(type == dns_rdatatype_dnskey);
  ------------------
  |  |  198|  2.65k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.65k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.65k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.65k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|       |
   42|  2.65k|	return generic_fromwire_key(CALL_FROMWIRE);
  ------------------
  |  |   91|  2.65k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   43|  2.65k|}
rdata.c:towire_dnskey:
   46|  1.12k|towire_dnskey(ARGS_TOWIRE) {
   47|  1.12k|	isc_region_t sr;
   48|       |
   49|  1.12k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.12k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.12k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.12k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.12k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|  1.12k|	REQUIRE(rdata->type == dns_rdatatype_dnskey);
  ------------------
  |  |  198|  1.12k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.12k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.12k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.12k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   51|  1.12k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.12k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.12k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.12k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.12k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   52|       |
   53|  1.12k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.12k|#define UNUSED(x) (void)(x)
  ------------------
   54|       |
   55|  1.12k|	dns_rdata_toregion(rdata, &sr);
   56|  1.12k|	return mem_tobuffer(target, sr.base, sr.length);
   57|  1.12k|}
rdata.c:totext_dnskey:
   31|  2.13k|totext_dnskey(ARGS_TOTEXT) {
   32|  2.13k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  2.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   33|  2.13k|	REQUIRE(rdata->type == dns_rdatatype_dnskey);
  ------------------
  |  |  198|  2.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   34|       |
   35|  2.13k|	return generic_totext_key(CALL_TOTEXT);
  ------------------
  |  |   85|  2.13k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   36|  2.13k|}

rdata.c:fromwire_doa:
  129|  1.58k|fromwire_doa(ARGS_FROMWIRE) {
  130|  1.58k|	isc_region_t region;
  131|       |
  132|  1.58k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.58k|#define UNUSED(x) (void)(x)
  ------------------
  133|  1.58k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.58k|#define UNUSED(x) (void)(x)
  ------------------
  134|       |
  135|  1.58k|	REQUIRE(type == dns_rdatatype_doa);
  ------------------
  |  |  198|  1.58k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.58k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.58k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.58k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  136|       |
  137|  1.58k|	isc_buffer_activeregion(source, &region);
  138|       |	/*
  139|       |	 * DOA-MEDIA-TYPE may be an empty <character-string> (i.e.,
  140|       |	 * comprising of just the length octet) and DOA-DATA can have
  141|       |	 * zero length.
  142|       |	 */
  143|  1.58k|	if (region.length < 4 + 4 + 1 + 1) {
  ------------------
  |  Branch (143:6): [True: 8, False: 1.57k]
  ------------------
  144|      8|		return ISC_R_UNEXPECTEDEND;
  145|      8|	}
  146|       |
  147|       |	/*
  148|       |	 * Check whether DOA-MEDIA-TYPE length is not malformed.
  149|       |	 */
  150|  1.57k|	if (region.base[9] > region.length - 10) {
  ------------------
  |  Branch (150:6): [True: 6, False: 1.57k]
  ------------------
  151|      6|		return ISC_R_UNEXPECTEDEND;
  152|      6|	}
  153|       |
  154|  1.57k|	isc_buffer_forward(source, region.length);
  155|  1.57k|	return mem_tobuffer(target, region.base, region.length);
  156|  1.57k|}
rdata.c:towire_doa:
  159|    588|towire_doa(ARGS_TOWIRE) {
  160|    588|	isc_region_t region;
  161|       |
  162|    588|	UNUSED(cctx);
  ------------------
  |  |   69|    588|#define UNUSED(x) (void)(x)
  ------------------
  163|       |
  164|    588|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    588|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    588|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 588, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    588|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  165|    588|	REQUIRE(rdata->type == dns_rdatatype_doa);
  ------------------
  |  |  198|    588|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    588|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 588, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    588|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  166|    588|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    588|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    588|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 588, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    588|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  167|       |
  168|    588|	dns_rdata_toregion(rdata, &region);
  169|    588|	return mem_tobuffer(target, region.base, region.length);
  170|    588|}
rdata.c:totext_doa:
   75|  1.14k|totext_doa(ARGS_TOTEXT) {
   76|  1.14k|	char buf[sizeof("4294967295 ")];
   77|  1.14k|	isc_region_t region;
   78|  1.14k|	uint32_t n;
   79|       |
   80|  1.14k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   81|  1.14k|	REQUIRE(rdata->type == dns_rdatatype_doa);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   82|  1.14k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|       |
   84|  1.14k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.14k|#define UNUSED(x) (void)(x)
  ------------------
   85|       |
   86|  1.14k|	dns_rdata_toregion(rdata, &region);
   87|       |
   88|       |	/*
   89|       |	 * DOA-ENTERPRISE
   90|       |	 */
   91|  1.14k|	n = uint32_fromregion(&region);
   92|  1.14k|	isc_region_consume(&region, 4);
  ------------------
  |  |   50|  1.14k|	do {                              \
  |  |   51|  1.14k|		isc_region_t *_r = (r);   \
  |  |   52|  1.14k|		unsigned int  _l = (l);   \
  |  |   53|  1.14k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.14k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.14k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.14k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.14k|		_r->base += _l;           \
  |  |   55|  1.14k|		_r->length -= _l;         \
  |  |   56|  1.14k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.14k]
  |  |  ------------------
  ------------------
   93|  1.14k|	snprintf(buf, sizeof(buf), "%u ", n);
   94|  1.14k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.14k|	{                                  \
  |  |  277|  1.14k|		isc_result_t _r = (x);     \
  |  |  278|  1.14k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.14k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.14k|	}
  ------------------
   95|       |
   96|       |	/*
   97|       |	 * DOA-TYPE
   98|       |	 */
   99|  1.14k|	n = uint32_fromregion(&region);
  100|  1.14k|	isc_region_consume(&region, 4);
  ------------------
  |  |   50|  1.14k|	do {                              \
  |  |   51|  1.14k|		isc_region_t *_r = (r);   \
  |  |   52|  1.14k|		unsigned int  _l = (l);   \
  |  |   53|  1.14k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.14k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.14k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.14k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.14k|		_r->base += _l;           \
  |  |   55|  1.14k|		_r->length -= _l;         \
  |  |   56|  1.14k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.14k]
  |  |  ------------------
  ------------------
  101|  1.14k|	snprintf(buf, sizeof(buf), "%u ", n);
  102|  1.14k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.14k|	{                                  \
  |  |  277|  1.14k|		isc_result_t _r = (x);     \
  |  |  278|  1.14k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.14k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.14k|	}
  ------------------
  103|       |
  104|       |	/*
  105|       |	 * DOA-LOCATION
  106|       |	 */
  107|  1.14k|	n = uint8_fromregion(&region);
  108|  1.14k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  1.14k|	do {                              \
  |  |   51|  1.14k|		isc_region_t *_r = (r);   \
  |  |   52|  1.14k|		unsigned int  _l = (l);   \
  |  |   53|  1.14k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.14k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.14k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.14k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.14k|		_r->base += _l;           \
  |  |   55|  1.14k|		_r->length -= _l;         \
  |  |   56|  1.14k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.14k]
  |  |  ------------------
  ------------------
  109|  1.14k|	snprintf(buf, sizeof(buf), "%u ", n);
  110|  1.14k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.14k|	{                                  \
  |  |  277|  1.14k|		isc_result_t _r = (x);     \
  |  |  278|  1.14k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.14k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.14k|	}
  ------------------
  111|       |
  112|       |	/*
  113|       |	 * DOA-MEDIA-TYPE
  114|       |	 */
  115|  1.14k|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  1.14k|	{                                  \
  |  |  277|  1.14k|		isc_result_t _r = (x);     \
  |  |  278|  1.14k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.14k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.14k|	}
  ------------------
  116|  1.14k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.14k|	{                                  \
  |  |  277|  1.14k|		isc_result_t _r = (x);     \
  |  |  278|  1.14k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.14k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.14k|	}
  ------------------
  117|       |
  118|       |	/*
  119|       |	 * DOA-DATA
  120|       |	 */
  121|  1.14k|	if (region.length == 0) {
  ------------------
  |  Branch (121:6): [True: 696, False: 445]
  ------------------
  122|    696|		return str_totext("-", target);
  123|    696|	} else {
  124|    445|		return isc_base64_totext(&region, 60, "", target);
  125|    445|	}
  126|  1.14k|}

rdata.c:fromwire_ds:
  201|  1.47k|fromwire_ds(ARGS_FROMWIRE) {
  202|  1.47k|	REQUIRE(type == dns_rdatatype_ds);
  ------------------
  |  |  198|  1.47k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.47k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.47k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.47k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  203|       |
  204|  1.47k|	return generic_fromwire_ds(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.47k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
  205|  1.47k|}
rdata.c:generic_fromwire_ds:
  160|  4.21k|generic_fromwire_ds(ARGS_FROMWIRE) {
  161|  4.21k|	isc_region_t sr;
  162|       |
  163|  4.21k|	UNUSED(type);
  ------------------
  |  |   69|  4.21k|#define UNUSED(x) (void)(x)
  ------------------
  164|  4.21k|	UNUSED(rdclass);
  ------------------
  |  |   69|  4.21k|#define UNUSED(x) (void)(x)
  ------------------
  165|  4.21k|	UNUSED(dctx);
  ------------------
  |  |   69|  4.21k|#define UNUSED(x) (void)(x)
  ------------------
  166|       |
  167|  4.21k|	isc_buffer_activeregion(source, &sr);
  168|       |
  169|       |	/*
  170|       |	 * Check digest lengths if we know them.
  171|       |	 */
  172|  4.21k|	if (sr.length < 5 ||
  ------------------
  |  Branch (172:6): [True: 11, False: 4.20k]
  ------------------
  173|  4.20k|	    (sr.base[3] == DNS_DSDIGEST_SHA1 &&
  ------------------
  |  |   19|  8.41k|#define DNS_DSDIGEST_SHA1     (1)
  ------------------
  |  Branch (173:7): [True: 68, False: 4.14k]
  ------------------
  174|     68|	     sr.length < 4 + ISC_SHA1_DIGESTLENGTH) ||
  ------------------
  |  |   50|     68|#define ISC_SHA1_DIGESTLENGTH	20
  ------------------
  |  Branch (174:7): [True: 2, False: 66]
  ------------------
  175|  4.20k|	    (sr.base[3] == DNS_DSDIGEST_SHA256 &&
  ------------------
  |  |   20|  8.41k|#define DNS_DSDIGEST_SHA256   (2)
  ------------------
  |  Branch (175:7): [True: 208, False: 3.99k]
  ------------------
  176|    208|	     sr.length < 4 + ISC_SHA256_DIGESTLENGTH) ||
  ------------------
  |  |   54|    208|#define ISC_SHA256_DIGESTLENGTH 32
  ------------------
  |  Branch (176:7): [True: 8, False: 200]
  ------------------
  177|  4.19k|	    (sr.base[3] == DNS_DSDIGEST_SHA384 &&
  ------------------
  |  |   22|  8.39k|#define DNS_DSDIGEST_SHA384   (4)
  ------------------
  |  Branch (177:7): [True: 201, False: 3.99k]
  ------------------
  178|    201|	     sr.length < 4 + ISC_SHA384_DIGESTLENGTH))
  ------------------
  |  |   56|    201|#define ISC_SHA384_DIGESTLENGTH 48
  ------------------
  |  Branch (178:7): [True: 2, False: 199]
  ------------------
  179|     23|	{
  180|     23|		return ISC_R_UNEXPECTEDEND;
  181|     23|	}
  182|       |
  183|       |	/*
  184|       |	 * Only copy digest lengths if we know them.
  185|       |	 * If there is extra data dns_rdata_fromwire() will
  186|       |	 * detect that.
  187|       |	 */
  188|  4.19k|	if (sr.base[3] == DNS_DSDIGEST_SHA1) {
  ------------------
  |  |   19|  4.19k|#define DNS_DSDIGEST_SHA1     (1)
  ------------------
  |  Branch (188:6): [True: 66, False: 4.13k]
  ------------------
  189|     66|		sr.length = 4 + ISC_SHA1_DIGESTLENGTH;
  ------------------
  |  |   50|     66|#define ISC_SHA1_DIGESTLENGTH	20
  ------------------
  190|  4.13k|	} else if (sr.base[3] == DNS_DSDIGEST_SHA256) {
  ------------------
  |  |   20|  4.13k|#define DNS_DSDIGEST_SHA256   (2)
  ------------------
  |  Branch (190:13): [True: 200, False: 3.93k]
  ------------------
  191|    200|		sr.length = 4 + ISC_SHA256_DIGESTLENGTH;
  ------------------
  |  |   54|    200|#define ISC_SHA256_DIGESTLENGTH 32
  ------------------
  192|  3.93k|	} else if (sr.base[3] == DNS_DSDIGEST_SHA384) {
  ------------------
  |  |   22|  3.93k|#define DNS_DSDIGEST_SHA384   (4)
  ------------------
  |  Branch (192:13): [True: 199, False: 3.73k]
  ------------------
  193|    199|		sr.length = 4 + ISC_SHA384_DIGESTLENGTH;
  ------------------
  |  |   56|    199|#define ISC_SHA384_DIGESTLENGTH 48
  ------------------
  194|    199|	}
  195|       |
  196|  4.19k|	isc_buffer_forward(source, sr.length);
  197|  4.19k|	return mem_tobuffer(target, sr.base, sr.length);
  198|  4.21k|}
rdata.c:towire_ds:
  208|    530|towire_ds(ARGS_TOWIRE) {
  209|    530|	isc_region_t sr;
  210|       |
  211|    530|	REQUIRE(rdata->type == dns_rdatatype_ds);
  ------------------
  |  |  198|    530|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    530|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 530, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    530|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  212|    530|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    530|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    530|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 530, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    530|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  213|       |
  214|    530|	UNUSED(cctx);
  ------------------
  |  |   69|    530|#define UNUSED(x) (void)(x)
  ------------------
  215|       |
  216|    530|	dns_rdata_toregion(rdata, &sr);
  217|    530|	return mem_tobuffer(target, sr.base, sr.length);
  218|    530|}
rdata.c:totext_ds:
  152|    972|totext_ds(ARGS_TOTEXT) {
  153|    972|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    972|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    972|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 972, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    972|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  154|    972|	REQUIRE(rdata->type == dns_rdatatype_ds);
  ------------------
  |  |  198|    972|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    972|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 972, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    972|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  155|       |
  156|    972|	return generic_totext_ds(CALL_TOTEXT);
  ------------------
  |  |   85|    972|#define CALL_TOTEXT rdata, tctx, target
  ------------------
  157|    972|}
rdata.c:generic_totext_ds:
   93|  3.58k|generic_totext_ds(ARGS_TOTEXT) {
   94|  3.58k|	isc_region_t sr;
   95|  3.58k|	char buf[sizeof("64000 ")];
   96|  3.58k|	unsigned int n;
   97|       |
   98|  3.58k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.58k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.58k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.58k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.58k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   99|       |
  100|  3.58k|	UNUSED(tctx);
  ------------------
  |  |   69|  3.58k|#define UNUSED(x) (void)(x)
  ------------------
  101|       |
  102|  3.58k|	dns_rdata_toregion(rdata, &sr);
  103|       |
  104|       |	/*
  105|       |	 * Key tag.
  106|       |	 */
  107|  3.58k|	n = uint16_fromregion(&sr);
  108|  3.58k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  3.58k|	do {                              \
  |  |   51|  3.58k|		isc_region_t *_r = (r);   \
  |  |   52|  3.58k|		unsigned int  _l = (l);   \
  |  |   53|  3.58k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.58k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.58k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.58k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.58k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.58k|		_r->base += _l;           \
  |  |   55|  3.58k|		_r->length -= _l;         \
  |  |   56|  3.58k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.58k]
  |  |  ------------------
  ------------------
  109|  3.58k|	snprintf(buf, sizeof(buf), "%u ", n);
  110|  3.58k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.58k|	{                                  \
  |  |  277|  3.58k|		isc_result_t _r = (x);     \
  |  |  278|  3.58k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.58k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.58k|	}
  ------------------
  111|       |
  112|       |	/*
  113|       |	 * Algorithm.
  114|       |	 */
  115|  3.58k|	n = uint8_fromregion(&sr);
  116|  3.58k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.58k|	do {                              \
  |  |   51|  3.58k|		isc_region_t *_r = (r);   \
  |  |   52|  3.58k|		unsigned int  _l = (l);   \
  |  |   53|  3.58k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.58k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.58k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.58k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.58k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.58k|		_r->base += _l;           \
  |  |   55|  3.58k|		_r->length -= _l;         \
  |  |   56|  3.58k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.58k]
  |  |  ------------------
  ------------------
  117|  3.58k|	snprintf(buf, sizeof(buf), "%u ", n);
  118|  3.58k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.58k|	{                                  \
  |  |  277|  3.58k|		isc_result_t _r = (x);     \
  |  |  278|  3.58k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.58k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.58k|	}
  ------------------
  119|       |
  120|       |	/*
  121|       |	 * Digest type.
  122|       |	 */
  123|  3.58k|	n = uint8_fromregion(&sr);
  124|  3.58k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.58k|	do {                              \
  |  |   51|  3.58k|		isc_region_t *_r = (r);   \
  |  |   52|  3.58k|		unsigned int  _l = (l);   \
  |  |   53|  3.58k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.58k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.58k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.58k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.58k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.58k|		_r->base += _l;           \
  |  |   55|  3.58k|		_r->length -= _l;         \
  |  |   56|  3.58k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.58k]
  |  |  ------------------
  ------------------
  125|  3.58k|	snprintf(buf, sizeof(buf), "%u", n);
  126|  3.58k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.58k|	{                                  \
  |  |  277|  3.58k|		isc_result_t _r = (x);     \
  |  |  278|  3.58k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.58k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.58k|	}
  ------------------
  127|       |
  128|       |	/*
  129|       |	 * Digest.
  130|       |	 */
  131|  3.58k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.58k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (131:6): [True: 0, False: 3.58k]
  ------------------
  132|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  133|      0|	}
  134|  3.58k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  3.58k|	{                                  \
  |  |  277|  3.58k|		isc_result_t _r = (x);     \
  |  |  278|  3.58k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.58k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.58k|	}
  ------------------
  135|  3.58k|	if ((tctx->flags & DNS_STYLEFLAG_NOCRYPTO) == 0) {
  ------------------
  |  |   95|  3.58k|#define DNS_STYLEFLAG_NOCRYPTO 0x008000000ULL
  ------------------
  |  Branch (135:6): [True: 3.58k, False: 0]
  ------------------
  136|  3.58k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (136:7): [True: 0, False: 3.58k]
  ------------------
  137|      0|			RETERR(isc_hex_totext(&sr, 0, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  138|  3.58k|		} else {
  139|  3.58k|			RETERR(isc_hex_totext(&sr, tctx->width - 2,
  ------------------
  |  |  276|  3.58k|	{                                  \
  |  |  277|  3.58k|		isc_result_t _r = (x);     \
  |  |  278|  3.58k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.58k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.58k|	}
  ------------------
  140|  3.58k|					      tctx->linebreak, target));
  141|  3.58k|		}
  142|  3.58k|	} else {
  143|      0|		RETERR(str_totext("[omitted]", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  144|      0|	}
  145|  3.58k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.58k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (145:6): [True: 0, False: 3.58k]
  ------------------
  146|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  147|      0|	}
  148|  3.58k|	return ISC_R_SUCCESS;
  149|  3.58k|}

rdata.c:fromwire_dsync:
  169|  1.48k|fromwire_dsync(ARGS_FROMWIRE) {
  170|  1.48k|	dns_name_t name;
  171|  1.48k|	isc_region_t sregion;
  172|       |
  173|  1.48k|	REQUIRE(type == dns_rdatatype_dsync);
  ------------------
  |  |  198|  1.48k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.48k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.48k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.48k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  174|       |
  175|  1.48k|	UNUSED(type);
  ------------------
  |  |   69|  1.48k|#define UNUSED(x) (void)(x)
  ------------------
  176|  1.48k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.48k|#define UNUSED(x) (void)(x)
  ------------------
  177|       |
  178|  1.48k|	dctx = dns_decompress_setpermitted(dctx, false);
  179|       |
  180|  1.48k|	dns_name_init(&name);
  181|       |
  182|  1.48k|	isc_buffer_activeregion(source, &sregion);
  183|  1.48k|	if (sregion.length < 5) {
  ------------------
  |  Branch (183:6): [True: 3, False: 1.48k]
  ------------------
  184|      3|		return ISC_R_UNEXPECTEDEND;
  185|      3|	}
  186|  1.48k|	RETERR(mem_tobuffer(target, sregion.base, 5));
  ------------------
  |  |  276|  1.48k|	{                                  \
  |  |  277|  1.48k|		isc_result_t _r = (x);     \
  |  |  278|  1.48k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 196, False: 1.28k]
  |  |  ------------------
  |  |  279|    196|			return ((_r));     \
  |  |  280|    196|		}                          \
  |  |  281|  1.48k|	}
  ------------------
  187|  1.28k|	isc_buffer_forward(source, 5);
  188|  1.28k|	return dns_name_fromwire(&name, source, dctx, target);
  189|  1.48k|}
rdata.c:towire_dsync:
  192|    537|towire_dsync(ARGS_TOWIRE) {
  193|    537|	dns_name_t name;
  194|    537|	isc_region_t region;
  195|       |
  196|    537|	REQUIRE(rdata->type == dns_rdatatype_dsync);
  ------------------
  |  |  198|    537|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    537|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 537, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    537|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  197|    537|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    537|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    537|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 537, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    537|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  198|       |
  199|    537|	dns_compress_setpermitted(cctx, false);
  200|       |
  201|    537|	dns_rdata_toregion(rdata, &region);
  202|    537|	RETERR(mem_tobuffer(target, region.base, 5));
  ------------------
  |  |  276|    537|	{                                  \
  |  |  277|    537|		isc_result_t _r = (x);     \
  |  |  278|    537|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 536]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    537|	}
  ------------------
  203|    536|	isc_region_consume(&region, 5);
  ------------------
  |  |   50|    536|	do {                              \
  |  |   51|    536|		isc_region_t *_r = (r);   \
  |  |   52|    536|		unsigned int  _l = (l);   \
  |  |   53|    536|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    536|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    536|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 536, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    536|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    536|		_r->base += _l;           \
  |  |   55|    536|		_r->length -= _l;         \
  |  |   56|    536|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 536]
  |  |  ------------------
  ------------------
  204|       |
  205|    536|	dns_name_init(&name);
  206|    536|	dns_name_fromregion(&name, &region);
  207|       |
  208|    536|	return dns_name_towire(&name, cctx, target);
  209|    537|}
rdata.c:totext_dsync:
  105|  1.05k|totext_dsync(ARGS_TOTEXT) {
  106|  1.05k|	isc_region_t region;
  107|  1.05k|	dns_name_t name;
  108|  1.05k|	dns_name_t prefix;
  109|  1.05k|	unsigned int opts;
  110|  1.05k|	char buf[sizeof("TYPE64000")];
  111|  1.05k|	unsigned short num;
  112|  1.05k|	dns_rdatatype_t type;
  113|  1.05k|	dns_dsyncscheme_t scheme;
  114|       |
  115|  1.05k|	REQUIRE(rdata->type == dns_rdatatype_dsync);
  ------------------
  |  |  198|  1.05k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.05k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.05k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.05k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  116|  1.05k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.05k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.05k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.05k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.05k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|       |
  118|  1.05k|	dns_name_init(&name);
  119|  1.05k|	dns_name_init(&prefix);
  120|       |
  121|  1.05k|	dns_rdata_toregion(rdata, &region);
  122|       |
  123|       |	/*
  124|       |	 * Type.
  125|       |	 */
  126|  1.05k|	type = uint16_fromregion(&region);
  127|  1.05k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.05k|	do {                              \
  |  |   51|  1.05k|		isc_region_t *_r = (r);   \
  |  |   52|  1.05k|		unsigned int  _l = (l);   \
  |  |   53|  1.05k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.05k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.05k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.05k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.05k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.05k|		_r->base += _l;           \
  |  |   55|  1.05k|		_r->length -= _l;         \
  |  |   56|  1.05k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.05k]
  |  |  ------------------
  ------------------
  128|       |	/*
  129|       |	 * XXXAG We should have something like dns_rdatatype_isknown()
  130|       |	 * that does the right thing with type 0.
  131|       |	 */
  132|  1.05k|	if (dns_rdatatype_isknown(type) && type != 0) {
  ------------------
  |  Branch (132:6): [True: 415, False: 642]
  |  Branch (132:37): [True: 415, False: 0]
  ------------------
  133|    415|		RETERR(dns_rdatatype_totext(type, target));
  ------------------
  |  |  276|    415|	{                                  \
  |  |  277|    415|		isc_result_t _r = (x);     \
  |  |  278|    415|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 415]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    415|	}
  ------------------
  134|    642|	} else {
  135|    642|		snprintf(buf, sizeof(buf), "TYPE%u", type);
  136|    642|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    642|	{                                  \
  |  |  277|    642|		isc_result_t _r = (x);     \
  |  |  278|    642|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 642]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    642|	}
  ------------------
  137|    642|	}
  138|  1.05k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.05k|	{                                  \
  |  |  277|  1.05k|		isc_result_t _r = (x);     \
  |  |  278|  1.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.05k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.05k|	}
  ------------------
  139|       |
  140|       |	/*
  141|       |	 * Scheme.
  142|       |	 */
  143|  1.05k|	scheme = uint8_fromregion(&region);
  144|  1.05k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  1.05k|	do {                              \
  |  |   51|  1.05k|		isc_region_t *_r = (r);   \
  |  |   52|  1.05k|		unsigned int  _l = (l);   \
  |  |   53|  1.05k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.05k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.05k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.05k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.05k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.05k|		_r->base += _l;           \
  |  |   55|  1.05k|		_r->length -= _l;         \
  |  |   56|  1.05k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.05k]
  |  |  ------------------
  ------------------
  145|  1.05k|	RETERR(dns_dsyncscheme_totext(scheme, target));
  ------------------
  |  |  276|  1.05k|	{                                  \
  |  |  277|  1.05k|		isc_result_t _r = (x);     \
  |  |  278|  1.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.05k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.05k|	}
  ------------------
  146|       |
  147|  1.05k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.05k|	{                                  \
  |  |  277|  1.05k|		isc_result_t _r = (x);     \
  |  |  278|  1.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.05k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.05k|	}
  ------------------
  148|       |
  149|       |	/*
  150|       |	 * Port
  151|       |	 */
  152|  1.05k|	num = uint16_fromregion(&region);
  153|  1.05k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.05k|	do {                              \
  |  |   51|  1.05k|		isc_region_t *_r = (r);   \
  |  |   52|  1.05k|		unsigned int  _l = (l);   \
  |  |   53|  1.05k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.05k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.05k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.05k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.05k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.05k|		_r->base += _l;           \
  |  |   55|  1.05k|		_r->length -= _l;         \
  |  |   56|  1.05k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.05k]
  |  |  ------------------
  ------------------
  154|  1.05k|	snprintf(buf, sizeof(buf), "%u", num);
  155|  1.05k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.05k|	{                                  \
  |  |  277|  1.05k|		isc_result_t _r = (x);     \
  |  |  278|  1.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.05k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.05k|	}
  ------------------
  156|       |
  157|  1.05k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.05k|	{                                  \
  |  |  277|  1.05k|		isc_result_t _r = (x);     \
  |  |  278|  1.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.05k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.05k|	}
  ------------------
  158|       |
  159|       |	/*
  160|       |	 * Target
  161|       |	 */
  162|  1.05k|	dns_name_fromregion(&name, &region);
  163|  1.05k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (163:9): [True: 0, False: 1.05k]
  ------------------
  164|  1.05k|							 : 0;
  165|  1.05k|	return dns_name_totext(&prefix, opts, target);
  166|  1.05k|}

rdata.c:fromwire_eui48:
   71|  1.13k|fromwire_eui48(ARGS_FROMWIRE) {
   72|  1.13k|	isc_region_t sregion;
   73|       |
   74|  1.13k|	REQUIRE(type == dns_rdatatype_eui48);
  ------------------
  |  |  198|  1.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   75|       |
   76|  1.13k|	UNUSED(type);
  ------------------
  |  |   69|  1.13k|#define UNUSED(x) (void)(x)
  ------------------
   77|  1.13k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.13k|#define UNUSED(x) (void)(x)
  ------------------
   78|  1.13k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.13k|#define UNUSED(x) (void)(x)
  ------------------
   79|       |
   80|  1.13k|	isc_buffer_activeregion(source, &sregion);
   81|  1.13k|	if (sregion.length != 6) {
  ------------------
  |  Branch (81:6): [True: 5, False: 1.13k]
  ------------------
   82|      5|		return DNS_R_FORMERR;
   83|      5|	}
   84|  1.13k|	isc_buffer_forward(source, sregion.length);
   85|  1.13k|	return mem_tobuffer(target, sregion.base, sregion.length);
   86|  1.13k|}
rdata.c:towire_eui48:
   89|    371|towire_eui48(ARGS_TOWIRE) {
   90|    371|	REQUIRE(rdata->type == dns_rdatatype_eui48);
  ------------------
  |  |  198|    371|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    371|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 371, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    371|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   91|    371|	REQUIRE(rdata->length == 6);
  ------------------
  |  |  198|    371|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    371|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 371, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    371|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   92|       |
   93|    371|	UNUSED(cctx);
  ------------------
  |  |   69|    371|#define UNUSED(x) (void)(x)
  ------------------
   94|       |
   95|    371|	return mem_tobuffer(target, rdata->data, rdata->length);
   96|    371|}
rdata.c:totext_eui48:
   56|    731|totext_eui48(ARGS_TOTEXT) {
   57|    731|	char buf[sizeof("xx-xx-xx-xx-xx-xx")];
   58|       |
   59|    731|	REQUIRE(rdata->type == dns_rdatatype_eui48);
  ------------------
  |  |  198|    731|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    731|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 731, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    731|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|    731|	REQUIRE(rdata->length == 6);
  ------------------
  |  |  198|    731|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    731|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 731, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    731|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   61|       |
   62|    731|	UNUSED(tctx);
  ------------------
  |  |   69|    731|#define UNUSED(x) (void)(x)
  ------------------
   63|       |
   64|    731|	(void)snprintf(buf, sizeof(buf), "%02x-%02x-%02x-%02x-%02x-%02x",
   65|    731|		       rdata->data[0], rdata->data[1], rdata->data[2],
   66|    731|		       rdata->data[3], rdata->data[4], rdata->data[5]);
   67|    731|	return str_totext(buf, target);
   68|    731|}

rdata.c:fromwire_eui64:
   74|  1.07k|fromwire_eui64(ARGS_FROMWIRE) {
   75|  1.07k|	isc_region_t sregion;
   76|       |
   77|  1.07k|	REQUIRE(type == dns_rdatatype_eui64);
  ------------------
  |  |  198|  1.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   78|       |
   79|  1.07k|	UNUSED(type);
  ------------------
  |  |   69|  1.07k|#define UNUSED(x) (void)(x)
  ------------------
   80|  1.07k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.07k|#define UNUSED(x) (void)(x)
  ------------------
   81|  1.07k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.07k|#define UNUSED(x) (void)(x)
  ------------------
   82|       |
   83|  1.07k|	isc_buffer_activeregion(source, &sregion);
   84|  1.07k|	if (sregion.length != 8) {
  ------------------
  |  Branch (84:6): [True: 3, False: 1.06k]
  ------------------
   85|      3|		return DNS_R_FORMERR;
   86|      3|	}
   87|  1.06k|	isc_buffer_forward(source, sregion.length);
   88|  1.06k|	return mem_tobuffer(target, sregion.base, sregion.length);
   89|  1.07k|}
rdata.c:towire_eui64:
   92|    337|towire_eui64(ARGS_TOWIRE) {
   93|    337|	REQUIRE(rdata->type == dns_rdatatype_eui64);
  ------------------
  |  |  198|    337|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    337|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 337, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    337|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   94|    337|	REQUIRE(rdata->length == 8);
  ------------------
  |  |  198|    337|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    337|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 337, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    337|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   95|       |
   96|    337|	UNUSED(cctx);
  ------------------
  |  |   69|    337|#define UNUSED(x) (void)(x)
  ------------------
   97|       |
   98|    337|	return mem_tobuffer(target, rdata->data, rdata->length);
   99|    337|}
rdata.c:totext_eui64:
   58|    665|totext_eui64(ARGS_TOTEXT) {
   59|    665|	char buf[sizeof("xx-xx-xx-xx-xx-xx-xx-xx")];
   60|       |
   61|    665|	REQUIRE(rdata->type == dns_rdatatype_eui64);
  ------------------
  |  |  198|    665|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    665|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 665, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    665|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   62|    665|	REQUIRE(rdata->length == 8);
  ------------------
  |  |  198|    665|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    665|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 665, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    665|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   63|       |
   64|    665|	UNUSED(tctx);
  ------------------
  |  |   69|    665|#define UNUSED(x) (void)(x)
  ------------------
   65|       |
   66|    665|	(void)snprintf(
   67|    665|		buf, sizeof(buf), "%02x-%02x-%02x-%02x-%02x-%02x-%02x-%02x",
   68|    665|		rdata->data[0], rdata->data[1], rdata->data[2], rdata->data[3],
   69|    665|		rdata->data[4], rdata->data[5], rdata->data[6], rdata->data[7]);
   70|    665|	return str_totext(buf, target);
   71|    665|}

rdata.c:fromwire_gpos:
   65|  1.25k|fromwire_gpos(ARGS_FROMWIRE) {
   66|  1.25k|	int i;
   67|       |
   68|  1.25k|	REQUIRE(type == dns_rdatatype_gpos);
  ------------------
  |  |  198|  1.25k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.25k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.25k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.25k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   69|       |
   70|  1.25k|	UNUSED(type);
  ------------------
  |  |   69|  1.25k|#define UNUSED(x) (void)(x)
  ------------------
   71|  1.25k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.25k|#define UNUSED(x) (void)(x)
  ------------------
   72|  1.25k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.25k|#define UNUSED(x) (void)(x)
  ------------------
   73|       |
   74|  4.47k|	for (i = 0; i < 3; i++) {
  ------------------
  |  Branch (74:14): [True: 3.42k, False: 1.05k]
  ------------------
   75|  3.42k|		RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  3.42k|	{                                  \
  |  |  277|  3.42k|		isc_result_t _r = (x);     \
  |  |  278|  3.42k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 202, False: 3.21k]
  |  |  ------------------
  |  |  279|    202|			return ((_r));     \
  |  |  280|    202|		}                          \
  |  |  281|  3.42k|	}
  ------------------
   76|  3.21k|	}
   77|  1.05k|	return ISC_R_SUCCESS;
   78|  1.25k|}
rdata.c:towire_gpos:
   81|    563|towire_gpos(ARGS_TOWIRE) {
   82|    563|	REQUIRE(rdata->type == dns_rdatatype_gpos);
  ------------------
  |  |  198|    563|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    563|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 563, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    563|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    563|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    563|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    563|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 563, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    563|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    563|	UNUSED(cctx);
  ------------------
  |  |   69|    563|#define UNUSED(x) (void)(x)
  ------------------
   86|       |
   87|    563|	return mem_tobuffer(target, rdata->data, rdata->length);
   88|    563|}
rdata.c:totext_gpos:
   43|    858|totext_gpos(ARGS_TOTEXT) {
   44|    858|	isc_region_t region;
   45|    858|	int i;
   46|       |
   47|    858|	REQUIRE(rdata->type == dns_rdatatype_gpos);
  ------------------
  |  |  198|    858|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    858|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 858, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    858|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   48|    858|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    858|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    858|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 858, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    858|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|       |
   50|    858|	UNUSED(tctx);
  ------------------
  |  |   69|    858|#define UNUSED(x) (void)(x)
  ------------------
   51|       |
   52|    858|	dns_rdata_toregion(rdata, &region);
   53|       |
   54|  3.43k|	for (i = 0; i < 3; i++) {
  ------------------
  |  Branch (54:14): [True: 2.57k, False: 858]
  ------------------
   55|  2.57k|		RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  2.57k|	{                                  \
  |  |  277|  2.57k|		isc_result_t _r = (x);     \
  |  |  278|  2.57k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.57k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.57k|	}
  ------------------
   56|  2.57k|		if (i != 2) {
  ------------------
  |  Branch (56:7): [True: 1.71k, False: 858]
  ------------------
   57|  1.71k|			RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.71k|	{                                  \
  |  |  277|  1.71k|		isc_result_t _r = (x);     \
  |  |  278|  1.71k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.71k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.71k|	}
  ------------------
   58|  1.71k|		}
   59|  2.57k|	}
   60|       |
   61|    858|	return ISC_R_SUCCESS;
   62|    858|}

rdata.c:fromwire_hhit:
   63|  1.21k|fromwire_hhit(ARGS_FROMWIRE) {
   64|  1.21k|	isc_region_t sr;
   65|       |
   66|  1.21k|	REQUIRE(type == dns_rdatatype_hhit);
  ------------------
  |  |  198|  1.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.21k|	UNUSED(type);
  ------------------
  |  |   69|  1.21k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.21k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.21k|#define UNUSED(x) (void)(x)
  ------------------
   70|  1.21k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.21k|#define UNUSED(x) (void)(x)
  ------------------
   71|       |
   72|  1.21k|	isc_buffer_activeregion(source, &sr);
   73|  1.21k|	if (sr.length == 0) {
  ------------------
  |  Branch (73:6): [True: 1, False: 1.21k]
  ------------------
   74|      1|		return ISC_R_UNEXPECTEDEND;
   75|      1|	}
   76|       |
   77|  1.21k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  1.21k|	{                                  \
  |  |  277|  1.21k|		isc_result_t _r = (x);     \
  |  |  278|  1.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 302, False: 914]
  |  |  ------------------
  |  |  279|    302|			return ((_r));     \
  |  |  280|    302|		}                          \
  |  |  281|  1.21k|	}
  ------------------
   78|    914|	isc_buffer_forward(source, sr.length);
   79|    914|	return ISC_R_SUCCESS;
   80|  1.21k|}
rdata.c:towire_hhit:
   83|    484|towire_hhit(ARGS_TOWIRE) {
   84|    484|	REQUIRE(rdata->type == dns_rdatatype_hhit);
  ------------------
  |  |  198|    484|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    484|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 484, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    484|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|    484|	REQUIRE(rdata->length > 0);
  ------------------
  |  |  198|    484|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    484|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 484, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    484|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|    484|	UNUSED(cctx);
  ------------------
  |  |   69|    484|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|    484|	return mem_tobuffer(target, rdata->data, rdata->length);
   90|    484|}
rdata.c:totext_hhit:
   35|    795|totext_hhit(ARGS_TOTEXT) {
   36|    795|	isc_region_t sr;
   37|       |
   38|    795|	REQUIRE(rdata->type == dns_rdatatype_hhit);
  ------------------
  |  |  198|    795|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    795|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 795, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    795|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   39|    795|	REQUIRE(rdata->length > 0);
  ------------------
  |  |  198|    795|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    795|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 795, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    795|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|       |
   41|    795|	dns_rdata_toregion(rdata, &sr);
   42|       |
   43|       |	/* data */
   44|    795|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    795|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (44:6): [True: 0, False: 795]
  ------------------
   45|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   46|      0|	}
   47|       |
   48|    795|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (48:6): [True: 0, False: 795]
  ------------------
   49|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   50|    795|	} else {
   51|    795|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    795|	{                                  \
  |  |  277|    795|		isc_result_t _r = (x);     \
  |  |  278|    795|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 795]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    795|	}
  ------------------
   52|    795|					 target));
   53|    795|	}
   54|       |
   55|    795|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    795|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (55:6): [True: 0, False: 795]
  ------------------
   56|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   57|      0|	}
   58|       |
   59|    795|	return ISC_R_SUCCESS;
   60|    795|}

rdata.c:fromwire_hinfo:
   55|  1.08k|fromwire_hinfo(ARGS_FROMWIRE) {
   56|  1.08k|	REQUIRE(type == dns_rdatatype_hinfo);
  ------------------
  |  |  198|  1.08k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.08k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.08k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.08k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|       |
   58|  1.08k|	UNUSED(type);
  ------------------
  |  |   69|  1.08k|#define UNUSED(x) (void)(x)
  ------------------
   59|  1.08k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.08k|#define UNUSED(x) (void)(x)
  ------------------
   60|  1.08k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.08k|#define UNUSED(x) (void)(x)
  ------------------
   61|       |
   62|  1.08k|	RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  1.08k|	{                                  \
  |  |  277|  1.08k|		isc_result_t _r = (x);     \
  |  |  278|  1.08k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 229, False: 860]
  |  |  ------------------
  |  |  279|    229|			return ((_r));     \
  |  |  280|    229|		}                          \
  |  |  281|  1.08k|	}
  ------------------
   63|    860|	return txt_fromwire(source, target);
   64|  1.08k|}
rdata.c:towire_hinfo:
   67|    316|towire_hinfo(ARGS_TOWIRE) {
   68|    316|	UNUSED(cctx);
  ------------------
  |  |   69|    316|#define UNUSED(x) (void)(x)
  ------------------
   69|       |
   70|    316|	REQUIRE(rdata->type == dns_rdatatype_hinfo);
  ------------------
  |  |  198|    316|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    316|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 316, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    316|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   71|    316|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    316|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    316|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 316, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    316|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|       |
   73|    316|	return mem_tobuffer(target, rdata->data, rdata->length);
   74|    316|}
rdata.c:totext_hinfo:
   40|    628|totext_hinfo(ARGS_TOTEXT) {
   41|    628|	isc_region_t region;
   42|       |
   43|    628|	UNUSED(tctx);
  ------------------
  |  |   69|    628|#define UNUSED(x) (void)(x)
  ------------------
   44|       |
   45|    628|	REQUIRE(rdata->type == dns_rdatatype_hinfo);
  ------------------
  |  |  198|    628|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    628|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 628, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    628|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   46|    628|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    628|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    628|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 628, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    628|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   47|       |
   48|    628|	dns_rdata_toregion(rdata, &region);
   49|    628|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|    628|	{                                  \
  |  |  277|    628|		isc_result_t _r = (x);     \
  |  |  278|    628|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 628]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    628|	}
  ------------------
   50|    628|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    628|	{                                  \
  |  |  277|    628|		isc_result_t _r = (x);     \
  |  |  278|    628|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 628]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    628|	}
  ------------------
   51|       |	return txt_totext(&region, true, target);
   52|    628|}

rdata.c:fromwire_hip:
  190|  49.8k|fromwire_hip(ARGS_FROMWIRE) {
  191|  49.8k|	isc_region_t region, rr;
  192|  49.8k|	dns_name_t name;
  193|  49.8k|	uint8_t hit_len;
  194|  49.8k|	uint16_t key_len;
  195|  49.8k|	size_t len;
  196|       |
  197|  49.8k|	REQUIRE(type == dns_rdatatype_hip);
  ------------------
  |  |  198|  49.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  49.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 49.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  49.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  198|       |
  199|  49.8k|	UNUSED(type);
  ------------------
  |  |   69|  49.8k|#define UNUSED(x) (void)(x)
  ------------------
  200|  49.8k|	UNUSED(rdclass);
  ------------------
  |  |   69|  49.8k|#define UNUSED(x) (void)(x)
  ------------------
  201|       |
  202|  49.8k|	isc_buffer_activeregion(source, &region);
  203|  49.8k|	if (region.length < 4U) {
  ------------------
  |  Branch (203:6): [True: 6, False: 49.8k]
  ------------------
  204|      6|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      6|	{                                  \
  |  |  277|      6|		isc_result_t _r = (x);     \
  |  |  278|      6|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 6, False: 0]
  |  |  ------------------
  |  |  279|      6|			return ((_r));     \
  |  |  280|      6|		}                          \
  |  |  281|      6|	}
  ------------------
  205|      0|	}
  206|       |
  207|  49.8k|	rr = region;
  208|  49.8k|	hit_len = uint8_fromregion(&region);
  209|  49.8k|	if (hit_len == 0) {
  ------------------
  |  Branch (209:6): [True: 3, False: 49.8k]
  ------------------
  210|      3|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      3|	{                                  \
  |  |  277|      3|		isc_result_t _r = (x);     \
  |  |  278|      3|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 3, False: 0]
  |  |  ------------------
  |  |  279|      3|			return ((_r));     \
  |  |  280|      3|		}                          \
  |  |  281|      3|	}
  ------------------
  211|      0|	}
  212|  49.8k|	isc_region_consume(&region, 2); /* hit length + algorithm */
  ------------------
  |  |   50|  49.8k|	do {                              \
  |  |   51|  49.8k|		isc_region_t *_r = (r);   \
  |  |   52|  49.8k|		unsigned int  _l = (l);   \
  |  |   53|  49.8k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  49.8k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  49.8k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 49.8k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  49.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  49.8k|		_r->base += _l;           \
  |  |   55|  49.8k|		_r->length -= _l;         \
  |  |   56|  49.8k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 49.8k]
  |  |  ------------------
  ------------------
  213|  49.8k|	key_len = uint16_fromregion(&region);
  214|  49.8k|	if (key_len == 0) {
  ------------------
  |  Branch (214:6): [True: 1, False: 49.8k]
  ------------------
  215|      1|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      1|	{                                  \
  |  |  277|      1|		isc_result_t _r = (x);     \
  |  |  278|      1|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 0]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|      1|	}
  ------------------
  216|      0|	}
  217|  49.8k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  49.8k|	do {                              \
  |  |   51|  49.8k|		isc_region_t *_r = (r);   \
  |  |   52|  49.8k|		unsigned int  _l = (l);   \
  |  |   53|  49.8k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  49.8k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  49.8k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 49.8k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  49.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  49.8k|		_r->base += _l;           \
  |  |   55|  49.8k|		_r->length -= _l;         \
  |  |   56|  49.8k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 49.8k]
  |  |  ------------------
  ------------------
  218|  49.8k|	len = hit_len + key_len;
  219|  49.8k|	if (len > region.length) {
  ------------------
  |  Branch (219:6): [True: 14, False: 49.8k]
  ------------------
  220|     14|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     14|	{                                  \
  |  |  277|     14|		isc_result_t _r = (x);     \
  |  |  278|     14|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 14, False: 0]
  |  |  ------------------
  |  |  279|     14|			return ((_r));     \
  |  |  280|     14|		}                          \
  |  |  281|     14|	}
  ------------------
  221|      0|	}
  222|       |
  223|  49.8k|	RETERR(mem_tobuffer(target, rr.base, 4 + len));
  ------------------
  |  |  276|  49.8k|	{                                  \
  |  |  277|  49.8k|		isc_result_t _r = (x);     \
  |  |  278|  49.8k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 249, False: 49.5k]
  |  |  ------------------
  |  |  279|    249|			return ((_r));     \
  |  |  280|    249|		}                          \
  |  |  281|  49.8k|	}
  ------------------
  224|  49.5k|	isc_buffer_forward(source, 4 + len);
  225|       |
  226|  49.5k|	dctx = dns_decompress_setpermitted(dctx, false);
  227|  1.32M|	while (isc_buffer_activelength(source) > 0) {
  ------------------
  |  |  160|  1.32M|#define isc_buffer_activelength(b)    ((b)->active - (b)->current) /* c-b */
  ------------------
  |  Branch (227:9): [True: 1.30M, False: 21.6k]
  ------------------
  228|  1.30M|		dns_name_init(&name);
  229|  1.30M|		RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  1.30M|	{                                  \
  |  |  277|  1.30M|		isc_result_t _r = (x);     \
  |  |  278|  1.30M|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 27.8k, False: 1.27M]
  |  |  ------------------
  |  |  279|  27.8k|			return ((_r));     \
  |  |  280|  27.8k|		}                          \
  |  |  281|  1.30M|	}
  ------------------
  230|  1.27M|	}
  231|  21.6k|	return ISC_R_SUCCESS;
  232|  49.5k|}
rdata.c:towire_hip:
  235|  3.22k|towire_hip(ARGS_TOWIRE) {
  236|  3.22k|	isc_region_t region;
  237|       |
  238|  3.22k|	REQUIRE(rdata->type == dns_rdatatype_hip);
  ------------------
  |  |  198|  3.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  239|  3.22k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  240|       |
  241|  3.22k|	UNUSED(cctx);
  ------------------
  |  |   69|  3.22k|#define UNUSED(x) (void)(x)
  ------------------
  242|       |
  243|  3.22k|	dns_rdata_toregion(rdata, &region);
  244|  3.22k|	return mem_tobuffer(target, region.base, region.length);
  245|  3.22k|}
rdata.c:totext_hip:
  117|  7.21k|totext_hip(ARGS_TOTEXT) {
  118|  7.21k|	isc_region_t region;
  119|  7.21k|	dns_name_t name;
  120|  7.21k|	unsigned int length, key_len, hit_len;
  121|  7.21k|	unsigned char algorithm;
  122|  7.21k|	char buf[sizeof("225 ")];
  123|       |
  124|  7.21k|	REQUIRE(rdata->type == dns_rdatatype_hip);
  ------------------
  |  |  198|  7.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  7.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 7.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  7.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  125|  7.21k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  7.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  7.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 7.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  7.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  126|       |
  127|  7.21k|	dns_rdata_toregion(rdata, &region);
  128|       |
  129|  7.21k|	hit_len = uint8_fromregion(&region);
  130|  7.21k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  7.21k|	do {                              \
  |  |   51|  7.21k|		isc_region_t *_r = (r);   \
  |  |   52|  7.21k|		unsigned int  _l = (l);   \
  |  |   53|  7.21k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  7.21k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  7.21k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 7.21k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  7.21k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  7.21k|		_r->base += _l;           \
  |  |   55|  7.21k|		_r->length -= _l;         \
  |  |   56|  7.21k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 7.21k]
  |  |  ------------------
  ------------------
  131|       |
  132|  7.21k|	algorithm = uint8_fromregion(&region);
  133|  7.21k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  7.21k|	do {                              \
  |  |   51|  7.21k|		isc_region_t *_r = (r);   \
  |  |   52|  7.21k|		unsigned int  _l = (l);   \
  |  |   53|  7.21k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  7.21k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  7.21k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 7.21k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  7.21k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  7.21k|		_r->base += _l;           \
  |  |   55|  7.21k|		_r->length -= _l;         \
  |  |   56|  7.21k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 7.21k]
  |  |  ------------------
  ------------------
  134|       |
  135|  7.21k|	key_len = uint16_fromregion(&region);
  136|  7.21k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  7.21k|	do {                              \
  |  |   51|  7.21k|		isc_region_t *_r = (r);   \
  |  |   52|  7.21k|		unsigned int  _l = (l);   \
  |  |   53|  7.21k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  7.21k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  7.21k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 7.21k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  7.21k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  7.21k|		_r->base += _l;           \
  |  |   55|  7.21k|		_r->length -= _l;         \
  |  |   56|  7.21k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 7.21k]
  |  |  ------------------
  ------------------
  137|       |
  138|  7.21k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  7.21k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (138:6): [True: 0, False: 7.21k]
  ------------------
  139|      0|		RETERR(str_totext("( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  140|      0|	}
  141|       |
  142|       |	/*
  143|       |	 * Algorithm
  144|       |	 */
  145|  7.21k|	snprintf(buf, sizeof(buf), "%u ", algorithm);
  146|  7.21k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  7.21k|	{                                  \
  |  |  277|  7.21k|		isc_result_t _r = (x);     \
  |  |  278|  7.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 7.21k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  7.21k|	}
  ------------------
  147|       |
  148|       |	/*
  149|       |	 * HIT.
  150|       |	 */
  151|  7.21k|	INSIST(hit_len < region.length);
  ------------------
  |  |  202|  7.21k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  7.21k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 7.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  7.21k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  152|  7.21k|	length = region.length;
  153|  7.21k|	region.length = hit_len;
  154|  7.21k|	RETERR(isc_hex_totext(&region, 1, "", target));
  ------------------
  |  |  276|  7.21k|	{                                  \
  |  |  277|  7.21k|		isc_result_t _r = (x);     \
  |  |  278|  7.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 7.21k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  7.21k|	}
  ------------------
  155|  7.21k|	region.length = length - hit_len;
  156|  7.21k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  7.21k|	{                                  \
  |  |  277|  7.21k|		isc_result_t _r = (x);     \
  |  |  278|  7.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 7.21k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  7.21k|	}
  ------------------
  157|       |
  158|       |	/*
  159|       |	 * Public KEY.
  160|       |	 */
  161|  7.21k|	INSIST(key_len <= region.length);
  ------------------
  |  |  202|  7.21k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  7.21k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 7.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  7.21k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  162|  7.21k|	length = region.length;
  163|  7.21k|	region.length = key_len;
  164|  7.21k|	RETERR(isc_base64_totext(&region, 1, "", target));
  ------------------
  |  |  276|  7.21k|	{                                  \
  |  |  277|  7.21k|		isc_result_t _r = (x);     \
  |  |  278|  7.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 7.21k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  7.21k|	}
  ------------------
  165|  7.21k|	region.length = length - key_len;
  166|  7.21k|	if (region.length > 0) {
  ------------------
  |  Branch (166:6): [True: 6.91k, False: 297]
  ------------------
  167|  6.91k|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  6.91k|	{                                  \
  |  |  277|  6.91k|		isc_result_t _r = (x);     \
  |  |  278|  6.91k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.91k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.91k|	}
  ------------------
  168|  6.91k|	}
  169|       |
  170|       |	/*
  171|       |	 * Rendezvous Servers.
  172|       |	 */
  173|  7.21k|	dns_name_init(&name);
  174|   425k|	while (region.length > 0) {
  ------------------
  |  Branch (174:9): [True: 417k, False: 7.20k]
  ------------------
  175|   417k|		dns_name_fromregion(&name, &region);
  176|       |
  177|   417k|		RETERR(dns_name_totext(&name, 0, target));
  ------------------
  |  |  276|   417k|	{                                  \
  |  |  277|   417k|		isc_result_t _r = (x);     \
  |  |  278|   417k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 6, False: 417k]
  |  |  ------------------
  |  |  279|      6|			return ((_r));     \
  |  |  280|      6|		}                          \
  |  |  281|   417k|	}
  ------------------
  178|   417k|		isc_region_consume(&region, name.length);
  ------------------
  |  |   50|   417k|	do {                              \
  |  |   51|   417k|		isc_region_t *_r = (r);   \
  |  |   52|   417k|		unsigned int  _l = (l);   \
  |  |   53|   417k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|   417k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|   417k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 417k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|   417k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|   417k|		_r->base += _l;           \
  |  |   55|   417k|		_r->length -= _l;         \
  |  |   56|   417k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 417k]
  |  |  ------------------
  ------------------
  179|   417k|		if (region.length > 0) {
  ------------------
  |  Branch (179:7): [True: 410k, False: 6.90k]
  ------------------
  180|   410k|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|   410k|	{                                  \
  |  |  277|   410k|		isc_result_t _r = (x);     \
  |  |  278|   410k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 410k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   410k|	}
  ------------------
  181|   410k|		}
  182|   417k|	}
  183|  7.20k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  7.20k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (183:6): [True: 0, False: 7.20k]
  ------------------
  184|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  185|      0|	}
  186|  7.20k|	return ISC_R_SUCCESS;
  187|  7.20k|}

rdata.c:fromwire_ipseckey:
  212|  3.62k|fromwire_ipseckey(ARGS_FROMWIRE) {
  213|  3.62k|	dns_name_t name;
  214|  3.62k|	isc_region_t region;
  215|       |
  216|  3.62k|	REQUIRE(type == dns_rdatatype_ipseckey);
  ------------------
  |  |  198|  3.62k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.62k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.62k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.62k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  217|       |
  218|  3.62k|	UNUSED(type);
  ------------------
  |  |   69|  3.62k|#define UNUSED(x) (void)(x)
  ------------------
  219|  3.62k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.62k|#define UNUSED(x) (void)(x)
  ------------------
  220|       |
  221|  3.62k|	dctx = dns_decompress_setpermitted(dctx, false);
  222|       |
  223|  3.62k|	dns_name_init(&name);
  224|       |
  225|  3.62k|	isc_buffer_activeregion(source, &region);
  226|  3.62k|	if (region.length < 3) {
  ------------------
  |  Branch (226:6): [True: 6, False: 3.61k]
  ------------------
  227|      6|		return ISC_R_UNEXPECTEDEND;
  228|      6|	}
  229|       |
  230|  3.61k|	switch (region.base[1]) {
  231|  1.84k|	case 0:
  ------------------
  |  Branch (231:2): [True: 1.84k, False: 1.76k]
  ------------------
  232|  1.84k|		if (region.length < 4) {
  ------------------
  |  Branch (232:7): [True: 1, False: 1.84k]
  ------------------
  233|      1|			return ISC_R_UNEXPECTEDEND;
  234|      1|		}
  235|  1.84k|		isc_buffer_forward(source, region.length);
  236|  1.84k|		return mem_tobuffer(target, region.base, region.length);
  237|       |
  238|    645|	case 1:
  ------------------
  |  Branch (238:2): [True: 645, False: 2.97k]
  ------------------
  239|    645|		if (region.length < 8) {
  ------------------
  |  Branch (239:7): [True: 1, False: 644]
  ------------------
  240|      1|			return ISC_R_UNEXPECTEDEND;
  241|      1|		}
  242|    644|		isc_buffer_forward(source, region.length);
  243|    644|		return mem_tobuffer(target, region.base, region.length);
  244|       |
  245|    526|	case 2:
  ------------------
  |  Branch (245:2): [True: 526, False: 3.08k]
  ------------------
  246|    526|		if (region.length < 20) {
  ------------------
  |  Branch (246:7): [True: 4, False: 522]
  ------------------
  247|      4|			return ISC_R_UNEXPECTEDEND;
  248|      4|		}
  249|    522|		isc_buffer_forward(source, region.length);
  250|    522|		return mem_tobuffer(target, region.base, region.length);
  251|       |
  252|    593|	case 3:
  ------------------
  |  Branch (252:2): [True: 593, False: 3.02k]
  ------------------
  253|    593|		RETERR(mem_tobuffer(target, region.base, 3));
  ------------------
  |  |  276|    593|	{                                  \
  |  |  277|    593|		isc_result_t _r = (x);     \
  |  |  278|    593|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 67, False: 526]
  |  |  ------------------
  |  |  279|     67|			return ((_r));     \
  |  |  280|     67|		}                          \
  |  |  281|    593|	}
  ------------------
  254|    526|		isc_buffer_forward(source, 3);
  255|    526|		RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|    526|	{                                  \
  |  |  277|    526|		isc_result_t _r = (x);     \
  |  |  278|    526|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 34, False: 492]
  |  |  ------------------
  |  |  279|     34|			return ((_r));     \
  |  |  280|     34|		}                          \
  |  |  281|    526|	}
  ------------------
  256|    492|		isc_buffer_activeregion(source, &region);
  257|    492|		isc_buffer_forward(source, region.length);
  258|    492|		if (region.length < 1) {
  ------------------
  |  Branch (258:7): [True: 2, False: 490]
  ------------------
  259|      2|			return ISC_R_UNEXPECTEDEND;
  260|      2|		}
  261|    490|		return mem_tobuffer(target, region.base, region.length);
  262|       |
  263|      3|	default:
  ------------------
  |  Branch (263:2): [True: 3, False: 3.61k]
  ------------------
  264|      3|		return ISC_R_NOTIMPLEMENTED;
  265|  3.61k|	}
  266|  3.61k|}
rdata.c:towire_ipseckey:
  269|  1.08k|towire_ipseckey(ARGS_TOWIRE) {
  270|  1.08k|	isc_region_t region;
  271|       |
  272|  1.08k|	REQUIRE(rdata->type == dns_rdatatype_ipseckey);
  ------------------
  |  |  198|  1.08k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.08k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.08k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.08k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  273|  1.08k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.08k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.08k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.08k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.08k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  274|       |
  275|  1.08k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.08k|#define UNUSED(x) (void)(x)
  ------------------
  276|       |
  277|  1.08k|	dns_rdata_toregion(rdata, &region);
  278|  1.08k|	return mem_tobuffer(target, region.base, region.length);
  279|  1.08k|}
rdata.c:totext_ipseckey:
  122|  2.09k|totext_ipseckey(ARGS_TOTEXT) {
  123|  2.09k|	isc_region_t region;
  124|  2.09k|	dns_name_t name;
  125|  2.09k|	char buf[sizeof("255 ")];
  126|  2.09k|	unsigned short num;
  127|  2.09k|	unsigned short gateway;
  128|       |
  129|  2.09k|	REQUIRE(rdata->type == dns_rdatatype_ipseckey);
  ------------------
  |  |  198|  2.09k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.09k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.09k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.09k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|  2.09k|	REQUIRE(rdata->length >= 3);
  ------------------
  |  |  198|  2.09k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.09k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.09k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.09k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  131|       |
  132|  2.09k|	dns_name_init(&name);
  133|       |
  134|  2.09k|	if (rdata->data[1] > 3U) {
  ------------------
  |  Branch (134:6): [True: 0, False: 2.09k]
  ------------------
  135|      0|		return ISC_R_NOTIMPLEMENTED;
  136|      0|	}
  137|       |
  138|  2.09k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.09k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (138:6): [True: 0, False: 2.09k]
  ------------------
  139|      0|		RETERR(str_totext("( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  140|      0|	}
  141|       |
  142|       |	/*
  143|       |	 * Precedence.
  144|       |	 */
  145|  2.09k|	dns_rdata_toregion(rdata, &region);
  146|  2.09k|	num = uint8_fromregion(&region);
  147|  2.09k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  2.09k|	do {                              \
  |  |   51|  2.09k|		isc_region_t *_r = (r);   \
  |  |   52|  2.09k|		unsigned int  _l = (l);   \
  |  |   53|  2.09k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.09k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.09k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.09k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.09k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.09k|		_r->base += _l;           \
  |  |   55|  2.09k|		_r->length -= _l;         \
  |  |   56|  2.09k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.09k]
  |  |  ------------------
  ------------------
  148|  2.09k|	snprintf(buf, sizeof(buf), "%u ", num);
  149|  2.09k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.09k|	{                                  \
  |  |  277|  2.09k|		isc_result_t _r = (x);     \
  |  |  278|  2.09k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.09k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.09k|	}
  ------------------
  150|       |
  151|       |	/*
  152|       |	 * Gateway type.
  153|       |	 */
  154|  2.09k|	gateway = uint8_fromregion(&region);
  155|  2.09k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  2.09k|	do {                              \
  |  |   51|  2.09k|		isc_region_t *_r = (r);   \
  |  |   52|  2.09k|		unsigned int  _l = (l);   \
  |  |   53|  2.09k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.09k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.09k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.09k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.09k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.09k|		_r->base += _l;           \
  |  |   55|  2.09k|		_r->length -= _l;         \
  |  |   56|  2.09k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.09k]
  |  |  ------------------
  ------------------
  156|  2.09k|	snprintf(buf, sizeof(buf), "%u ", gateway);
  157|  2.09k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.09k|	{                                  \
  |  |  277|  2.09k|		isc_result_t _r = (x);     \
  |  |  278|  2.09k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.09k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.09k|	}
  ------------------
  158|       |
  159|       |	/*
  160|       |	 * Algorithm.
  161|       |	 */
  162|  2.09k|	num = uint8_fromregion(&region);
  163|  2.09k|	isc_region_consume(&region, 1);
  ------------------
  |  |   50|  2.09k|	do {                              \
  |  |   51|  2.09k|		isc_region_t *_r = (r);   \
  |  |   52|  2.09k|		unsigned int  _l = (l);   \
  |  |   53|  2.09k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.09k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.09k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.09k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.09k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.09k|		_r->base += _l;           \
  |  |   55|  2.09k|		_r->length -= _l;         \
  |  |   56|  2.09k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.09k]
  |  |  ------------------
  ------------------
  164|  2.09k|	snprintf(buf, sizeof(buf), "%u ", num);
  165|  2.09k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.09k|	{                                  \
  |  |  277|  2.09k|		isc_result_t _r = (x);     \
  |  |  278|  2.09k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.09k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.09k|	}
  ------------------
  166|       |
  167|       |	/*
  168|       |	 * Gateway.
  169|       |	 */
  170|  2.09k|	switch (gateway) {
  ------------------
  |  Branch (170:10): [True: 2.09k, False: 0]
  ------------------
  171|  1.14k|	case 0:
  ------------------
  |  Branch (171:2): [True: 1.14k, False: 952]
  ------------------
  172|  1.14k|		RETERR(str_totext(".", target));
  ------------------
  |  |  276|  1.14k|	{                                  \
  |  |  277|  1.14k|		isc_result_t _r = (x);     \
  |  |  278|  1.14k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.14k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.14k|	}
  ------------------
  173|  1.14k|		break;
  174|       |
  175|    254|	case 1:
  ------------------
  |  Branch (175:2): [True: 254, False: 1.84k]
  ------------------
  176|    254|		RETERR(inet_totext(AF_INET, tctx->flags, &region, target));
  ------------------
  |  |  276|    254|	{                                  \
  |  |  277|    254|		isc_result_t _r = (x);     \
  |  |  278|    254|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 254]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    254|	}
  ------------------
  177|    254|		isc_region_consume(&region, 4);
  ------------------
  |  |   50|    254|	do {                              \
  |  |   51|    254|		isc_region_t *_r = (r);   \
  |  |   52|    254|		unsigned int  _l = (l);   \
  |  |   53|    254|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    254|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    254|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 254, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    254|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    254|		_r->base += _l;           \
  |  |   55|    254|		_r->length -= _l;         \
  |  |   56|    254|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 254]
  |  |  ------------------
  ------------------
  178|    254|		break;
  179|       |
  180|    326|	case 2:
  ------------------
  |  Branch (180:2): [True: 326, False: 1.77k]
  ------------------
  181|    326|		RETERR(inet_totext(AF_INET6, tctx->flags, &region, target));
  ------------------
  |  |  276|    326|	{                                  \
  |  |  277|    326|		isc_result_t _r = (x);     \
  |  |  278|    326|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 326]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    326|	}
  ------------------
  182|    326|		isc_region_consume(&region, 16);
  ------------------
  |  |   50|    326|	do {                              \
  |  |   51|    326|		isc_region_t *_r = (r);   \
  |  |   52|    326|		unsigned int  _l = (l);   \
  |  |   53|    326|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    326|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    326|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 326, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    326|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    326|		_r->base += _l;           \
  |  |   55|    326|		_r->length -= _l;         \
  |  |   56|    326|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 326]
  |  |  ------------------
  ------------------
  183|    326|		break;
  184|       |
  185|    372|	case 3:
  ------------------
  |  Branch (185:2): [True: 372, False: 1.72k]
  ------------------
  186|    372|		dns_name_fromregion(&name, &region);
  187|    372|		RETERR(dns_name_totext(&name, 0, target));
  ------------------
  |  |  276|    372|	{                                  \
  |  |  277|    372|		isc_result_t _r = (x);     \
  |  |  278|    372|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 372]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    372|	}
  ------------------
  188|    372|		isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|    372|	do {                              \
  |  |   51|    372|		isc_region_t *_r = (r);   \
  |  |   52|    372|		unsigned int  _l = (l);   \
  |  |   53|    372|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    372|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    372|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 372, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    372|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    372|		_r->base += _l;           \
  |  |   55|    372|		_r->length -= _l;         \
  |  |   56|    372|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 372]
  |  |  ------------------
  ------------------
  189|    372|		break;
  190|  2.09k|	}
  191|       |
  192|       |	/*
  193|       |	 * Key.
  194|       |	 */
  195|  2.09k|	if (region.length > 0U) {
  ------------------
  |  Branch (195:6): [True: 2.09k, False: 0]
  ------------------
  196|  2.09k|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  2.09k|	{                                  \
  |  |  277|  2.09k|		isc_result_t _r = (x);     \
  |  |  278|  2.09k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.09k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.09k|	}
  ------------------
  197|  2.09k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (197:7): [True: 0, False: 2.09k]
  ------------------
  198|      0|			RETERR(isc_base64_totext(&region, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  199|  2.09k|		} else {
  200|  2.09k|			RETERR(isc_base64_totext(&region, tctx->width - 2,
  ------------------
  |  |  276|  2.09k|	{                                  \
  |  |  277|  2.09k|		isc_result_t _r = (x);     \
  |  |  278|  2.09k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.09k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.09k|	}
  ------------------
  201|  2.09k|						 tctx->linebreak, target));
  202|  2.09k|		}
  203|  2.09k|	}
  204|       |
  205|  2.09k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.09k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (205:6): [True: 0, False: 2.09k]
  ------------------
  206|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  207|      0|	}
  208|  2.09k|	return ISC_R_SUCCESS;
  209|  2.09k|}

rdata.c:fromwire_isdn:
   70|  1.07k|fromwire_isdn(ARGS_FROMWIRE) {
   71|  1.07k|	REQUIRE(type == dns_rdatatype_isdn);
  ------------------
  |  |  198|  1.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|       |
   73|  1.07k|	UNUSED(type);
  ------------------
  |  |   69|  1.07k|#define UNUSED(x) (void)(x)
  ------------------
   74|  1.07k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.07k|#define UNUSED(x) (void)(x)
  ------------------
   75|  1.07k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.07k|#define UNUSED(x) (void)(x)
  ------------------
   76|       |
   77|  1.07k|	RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  1.07k|	{                                  \
  |  |  277|  1.07k|		isc_result_t _r = (x);     \
  |  |  278|  1.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 35, False: 1.04k]
  |  |  ------------------
  |  |  279|     35|			return ((_r));     \
  |  |  280|     35|		}                          \
  |  |  281|  1.07k|	}
  ------------------
   78|  1.04k|	if (buffer_empty(source)) {
  ------------------
  |  Branch (78:6): [True: 559, False: 482]
  ------------------
   79|    559|		return ISC_R_SUCCESS;
   80|    559|	}
   81|    482|	return txt_fromwire(source, target);
   82|  1.04k|}
rdata.c:towire_isdn:
   85|    516|towire_isdn(ARGS_TOWIRE) {
   86|    516|	UNUSED(cctx);
  ------------------
  |  |   69|    516|#define UNUSED(x) (void)(x)
  ------------------
   87|       |
   88|    516|	REQUIRE(rdata->type == dns_rdatatype_isdn);
  ------------------
  |  |  198|    516|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    516|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 516, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    516|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   89|    516|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    516|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    516|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 516, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    516|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   90|       |
   91|    516|	return mem_tobuffer(target, rdata->data, rdata->length);
   92|    516|}
rdata.c:totext_isdn:
   52|    997|totext_isdn(ARGS_TOTEXT) {
   53|    997|	isc_region_t region;
   54|       |
   55|    997|	REQUIRE(rdata->type == dns_rdatatype_isdn);
  ------------------
  |  |  198|    997|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    997|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 997, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    997|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   56|    997|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    997|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    997|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 997, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    997|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|       |
   58|    997|	UNUSED(tctx);
  ------------------
  |  |   69|    997|#define UNUSED(x) (void)(x)
  ------------------
   59|       |
   60|    997|	dns_rdata_toregion(rdata, &region);
   61|    997|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|    997|	{                                  \
  |  |  277|    997|		isc_result_t _r = (x);     \
  |  |  278|    997|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 997]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    997|	}
  ------------------
   62|    997|	if (region.length == 0) {
  ------------------
  |  Branch (62:6): [True: 538, False: 459]
  ------------------
   63|    538|		return ISC_R_SUCCESS;
   64|    538|	}
   65|    459|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    459|	{                                  \
  |  |  277|    459|		isc_result_t _r = (x);     \
  |  |  278|    459|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 459]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    459|	}
  ------------------
   66|       |	return txt_totext(&region, true, target);
   67|    459|}

rdata.c:fromwire_key:
  250|  1.45k|fromwire_key(ARGS_FROMWIRE) {
  251|  1.45k|	REQUIRE(type == dns_rdatatype_key);
  ------------------
  |  |  198|  1.45k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.45k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.45k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.45k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  252|       |
  253|  1.45k|	return generic_fromwire_key(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.45k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
  254|  1.45k|}
rdata.c:generic_fromwire_key:
  195|  6.69k|generic_fromwire_key(ARGS_FROMWIRE) {
  196|  6.69k|	unsigned char algorithm;
  197|  6.69k|	uint16_t flags;
  198|  6.69k|	isc_region_t sr;
  199|       |
  200|  6.69k|	UNUSED(rdclass);
  ------------------
  |  |   69|  6.69k|#define UNUSED(x) (void)(x)
  ------------------
  201|  6.69k|	UNUSED(dctx);
  ------------------
  |  |   69|  6.69k|#define UNUSED(x) (void)(x)
  ------------------
  202|       |
  203|  6.69k|	isc_buffer_activeregion(source, &sr);
  204|  6.69k|	if (sr.length < 4) {
  ------------------
  |  Branch (204:6): [True: 13, False: 6.68k]
  ------------------
  205|     13|		return ISC_R_UNEXPECTEDEND;
  206|     13|	}
  207|  6.68k|	flags = (sr.base[0] << 8) | sr.base[1];
  208|       |
  209|  6.68k|	if (type == dns_rdatatype_rkey && flags != 0U) {
  ------------------
  |  |  170|  13.3k|#define dns_rdatatype_rkey	((dns_rdatatype_t)dns_rdatatype_rkey)
  ------------------
  |  Branch (209:6): [True: 1.37k, False: 5.30k]
  |  Branch (209:36): [True: 7, False: 1.36k]
  ------------------
  210|      7|		return DNS_R_FORMERR;
  211|      7|	}
  212|       |
  213|  6.67k|	algorithm = sr.base[3];
  214|  6.67k|	RETERR(mem_tobuffer(target, sr.base, 4));
  ------------------
  |  |  276|  6.67k|	{                                  \
  |  |  277|  6.67k|		isc_result_t _r = (x);     \
  |  |  278|  6.67k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 74, False: 6.60k]
  |  |  ------------------
  |  |  279|     74|			return ((_r));     \
  |  |  280|     74|		}                          \
  |  |  281|  6.67k|	}
  ------------------
  215|  6.60k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  6.60k|	do {                              \
  |  |   51|  6.60k|		isc_region_t *_r = (r);   \
  |  |   52|  6.60k|		unsigned int  _l = (l);   \
  |  |   53|  6.60k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.60k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.60k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.60k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.60k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.60k|		_r->base += _l;           \
  |  |   55|  6.60k|		_r->length -= _l;         \
  |  |   56|  6.60k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.60k]
  |  |  ------------------
  ------------------
  216|  6.60k|	isc_buffer_forward(source, 4);
  217|       |
  218|  6.60k|	if (sr.length == 0) {
  ------------------
  |  Branch (218:6): [True: 7, False: 6.59k]
  ------------------
  219|      7|		return ISC_R_UNEXPECTEDEND;
  220|      7|	}
  221|       |
  222|  6.59k|	if (algorithm == DNS_KEYALG_PRIVATEDNS ||
  ------------------
  |  Branch (222:6): [True: 574, False: 6.01k]
  ------------------
  223|  6.01k|	    algorithm == DNS_KEYALG_PRIVATEOID)
  ------------------
  |  Branch (223:6): [True: 92, False: 5.92k]
  ------------------
  224|    666|	{
  225|    666|		isc_buffer_t b = *source;
  226|    666|		RETERR(check_private(&b, algorithm));
  ------------------
  |  |  276|    666|	{                                  \
  |  |  277|    666|		isc_result_t _r = (x);     \
  |  |  278|    666|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 80, False: 586]
  |  |  ------------------
  |  |  279|     80|			return ((_r));     \
  |  |  280|     80|		}                          \
  |  |  281|    666|	}
  ------------------
  227|    586|	}
  228|       |
  229|  6.51k|	isc_buffer_activeregion(source, &sr);
  230|  6.51k|	isc_buffer_forward(source, sr.length);
  231|  6.51k|	return mem_tobuffer(target, sr.base, sr.length);
  232|  6.59k|}
rdata.c:towire_key:
  257|    700|towire_key(ARGS_TOWIRE) {
  258|    700|	isc_region_t sr;
  259|       |
  260|    700|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    700|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    700|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 700, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    700|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  261|    700|	REQUIRE(rdata->type == dns_rdatatype_key);
  ------------------
  |  |  198|    700|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    700|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 700, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    700|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  262|    700|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    700|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    700|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 700, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    700|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  263|       |
  264|    700|	UNUSED(cctx);
  ------------------
  |  |   69|    700|#define UNUSED(x) (void)(x)
  ------------------
  265|       |
  266|    700|	dns_rdata_toregion(rdata, &sr);
  267|    700|	return mem_tobuffer(target, sr.base, sr.length);
  268|    700|}
rdata.c:totext_key:
  242|  1.37k|totext_key(ARGS_TOTEXT) {
  243|  1.37k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  244|  1.37k|	REQUIRE(rdata->type == dns_rdatatype_key);
  ------------------
  |  |  198|  1.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  245|       |
  246|  1.37k|	return generic_totext_key(CALL_TOTEXT);
  ------------------
  |  |   85|  1.37k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
  247|  1.37k|}
rdata.c:generic_totext_key:
   82|  5.98k|generic_totext_key(ARGS_TOTEXT) {
   83|  5.98k|	isc_region_t sr;
   84|  5.98k|	char buf[sizeof("[key id = 64000]")];
   85|  5.98k|	unsigned int flags;
   86|  5.98k|	unsigned char algorithm;
   87|  5.98k|	char algbuf[DNS_NAME_FORMATSIZE];
   88|  5.98k|	const char *keyinfo;
   89|  5.98k|	isc_region_t tmpr;
   90|       |
   91|  5.98k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  5.98k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.98k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.98k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.98k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   92|       |
   93|  5.98k|	dns_rdata_toregion(rdata, &sr);
   94|       |
   95|       |	/* flags */
   96|  5.98k|	flags = uint16_fromregion(&sr);
   97|  5.98k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  5.98k|	do {                              \
  |  |   51|  5.98k|		isc_region_t *_r = (r);   \
  |  |   52|  5.98k|		unsigned int  _l = (l);   \
  |  |   53|  5.98k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  5.98k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  5.98k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 5.98k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  5.98k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  5.98k|		_r->base += _l;           \
  |  |   55|  5.98k|		_r->length -= _l;         \
  |  |   56|  5.98k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 5.98k]
  |  |  ------------------
  ------------------
   98|  5.98k|	snprintf(buf, sizeof(buf), "%u", flags);
   99|  5.98k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  5.98k|	{                                  \
  |  |  277|  5.98k|		isc_result_t _r = (x);     \
  |  |  278|  5.98k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.98k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.98k|	}
  ------------------
  100|  5.98k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  5.98k|	{                                  \
  |  |  277|  5.98k|		isc_result_t _r = (x);     \
  |  |  278|  5.98k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.98k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.98k|	}
  ------------------
  101|  5.98k|	if ((flags & DNS_KEYFLAG_KSK) != 0) {
  ------------------
  |  Branch (101:6): [True: 2.46k, False: 3.52k]
  ------------------
  102|  2.46k|		if (flags & DNS_KEYFLAG_REVOKE) {
  ------------------
  |  Branch (102:7): [True: 971, False: 1.48k]
  ------------------
  103|    971|			keyinfo = "revoked KSK";
  104|  1.48k|		} else {
  105|  1.48k|			keyinfo = "KSK";
  106|  1.48k|		}
  107|  3.52k|	} else {
  108|  3.52k|		keyinfo = "ZSK";
  109|  3.52k|	}
  110|       |
  111|       |	/* protocol */
  112|  5.98k|	snprintf(buf, sizeof(buf), "%u", sr.base[0]);
  113|  5.98k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  5.98k|	do {                              \
  |  |   51|  5.98k|		isc_region_t *_r = (r);   \
  |  |   52|  5.98k|		unsigned int  _l = (l);   \
  |  |   53|  5.98k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  5.98k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  5.98k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 5.98k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  5.98k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  5.98k|		_r->base += _l;           \
  |  |   55|  5.98k|		_r->length -= _l;         \
  |  |   56|  5.98k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 5.98k]
  |  |  ------------------
  ------------------
  114|  5.98k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  5.98k|	{                                  \
  |  |  277|  5.98k|		isc_result_t _r = (x);     \
  |  |  278|  5.98k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.98k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.98k|	}
  ------------------
  115|  5.98k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  5.98k|	{                                  \
  |  |  277|  5.98k|		isc_result_t _r = (x);     \
  |  |  278|  5.98k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.98k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.98k|	}
  ------------------
  116|       |
  117|       |	/* algorithm */
  118|  5.98k|	algorithm = sr.base[0];
  119|  5.98k|	snprintf(buf, sizeof(buf), "%u", algorithm);
  120|  5.98k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  5.98k|	do {                              \
  |  |   51|  5.98k|		isc_region_t *_r = (r);   \
  |  |   52|  5.98k|		unsigned int  _l = (l);   \
  |  |   53|  5.98k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  5.98k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  5.98k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 5.98k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  5.98k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  5.98k|		_r->base += _l;           \
  |  |   55|  5.98k|		_r->length -= _l;         \
  |  |   56|  5.98k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 5.98k]
  |  |  ------------------
  ------------------
  121|  5.98k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  5.98k|	{                                  \
  |  |  277|  5.98k|		isc_result_t _r = (x);     \
  |  |  278|  5.98k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.98k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.98k|	}
  ------------------
  122|       |
  123|  5.98k|	if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0 &&
  ------------------
  |  |  195|  5.98k|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (123:6): [True: 0, False: 5.98k]
  ------------------
  124|      0|	    algorithm == DNS_KEYALG_PRIVATEDNS)
  ------------------
  |  Branch (124:6): [True: 0, False: 0]
  ------------------
  125|      0|	{
  126|      0|		dns_name_t name;
  127|      0|		dns_name_init(&name);
  128|      0|		dns_name_fromregion(&name, &sr);
  129|      0|		dns_name_format(&name, algbuf, sizeof(algbuf));
  130|  5.98k|	} else if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0 &&
  ------------------
  |  |  195|  5.98k|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (130:13): [True: 0, False: 5.98k]
  ------------------
  131|      0|		   algorithm == DNS_KEYALG_PRIVATEOID)
  ------------------
  |  Branch (131:6): [True: 0, False: 0]
  ------------------
  132|      0|	{
  133|      0|		const unsigned char *in = sr.base + 1;
  134|      0|		ASN1_OBJECT *obj = d2i_ASN1_OBJECT(NULL, &in, *sr.base);
  135|      0|		INSIST(obj != NULL);
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  136|      0|		int n = i2t_ASN1_OBJECT(algbuf, sizeof(algbuf), obj);
  137|      0|		ASN1_OBJECT_free(obj);
  138|      0|		if (n == -1 || (size_t)n >= sizeof(algbuf)) {
  ------------------
  |  Branch (138:7): [True: 0, False: 0]
  |  Branch (138:18): [True: 0, False: 0]
  ------------------
  139|      0|			dns_secalg_format((dns_secalg_t)algorithm, algbuf,
  140|      0|					  sizeof(algbuf));
  141|      0|		}
  142|  5.98k|	} else {
  143|  5.98k|		dns_secalg_format((dns_secalg_t)algorithm, algbuf,
  144|  5.98k|				  sizeof(algbuf));
  145|  5.98k|	}
  146|       |
  147|       |	/* key */
  148|  5.98k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  5.98k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (148:6): [True: 0, False: 5.98k]
  ------------------
  149|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  150|      0|	}
  151|  5.98k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  5.98k|	{                                  \
  |  |  277|  5.98k|		isc_result_t _r = (x);     \
  |  |  278|  5.98k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.98k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.98k|	}
  ------------------
  152|       |
  153|  5.98k|	if ((tctx->flags & DNS_STYLEFLAG_NOCRYPTO) == 0) {
  ------------------
  |  |   95|  5.98k|#define DNS_STYLEFLAG_NOCRYPTO 0x008000000ULL
  ------------------
  |  Branch (153:6): [True: 5.98k, False: 0]
  ------------------
  154|  5.98k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (154:7): [True: 0, False: 5.98k]
  ------------------
  155|      0|			RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  156|  5.98k|		} else {
  157|  5.98k|			RETERR(isc_base64_totext(&sr, tctx->width - 2,
  ------------------
  |  |  276|  5.98k|	{                                  \
  |  |  277|  5.98k|		isc_result_t _r = (x);     \
  |  |  278|  5.98k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.98k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.98k|	}
  ------------------
  158|  5.98k|						 tctx->linebreak, target));
  159|  5.98k|		}
  160|  5.98k|	} else {
  161|      0|		dns_rdata_toregion(rdata, &tmpr);
  162|      0|		snprintf(buf, sizeof(buf), "[key id = %u]",
  163|      0|			 dst_region_computeid(&tmpr));
  164|      0|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  165|      0|	}
  166|       |
  167|  5.98k|	if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0) {
  ------------------
  |  |  195|  5.98k|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (167:6): [True: 0, False: 5.98k]
  ------------------
  168|      0|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  169|  5.98k|	} else if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  5.98k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (169:13): [True: 0, False: 5.98k]
  ------------------
  170|      0|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  171|      0|	}
  172|       |
  173|  5.98k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  5.98k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (173:6): [True: 0, False: 5.98k]
  ------------------
  174|      0|		RETERR(str_totext(")", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  175|      0|	}
  176|       |
  177|  5.98k|	if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0) {
  ------------------
  |  |  195|  5.98k|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (177:6): [True: 0, False: 5.98k]
  ------------------
  178|      0|		if (rdata->type == dns_rdatatype_dnskey ||
  ------------------
  |  |  162|      0|#define dns_rdatatype_dnskey	((dns_rdatatype_t)dns_rdatatype_dnskey)
  ------------------
  |  Branch (178:7): [True: 0, False: 0]
  ------------------
  179|      0|		    rdata->type == dns_rdatatype_cdnskey)
  ------------------
  |  |  173|      0|#define dns_rdatatype_cdnskey	((dns_rdatatype_t)dns_rdatatype_cdnskey)
  ------------------
  |  Branch (179:7): [True: 0, False: 0]
  ------------------
  180|      0|		{
  181|      0|			RETERR(str_totext(" ; ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  182|      0|			RETERR(str_totext(keyinfo, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  183|      0|		}
  184|      0|		RETERR(str_totext("; alg = ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  185|      0|		RETERR(str_totext(algbuf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  186|      0|		RETERR(str_totext(" ; key id = ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  187|      0|		dns_rdata_toregion(rdata, &tmpr);
  188|      0|		snprintf(buf, sizeof(buf), "%u", dst_region_computeid(&tmpr));
  189|      0|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  190|      0|	}
  191|  5.98k|	return ISC_R_SUCCESS;
  192|  5.98k|}

rdata.c:fromwire_keydata:
  251|  1.79k|fromwire_keydata(ARGS_FROMWIRE) {
  252|  1.79k|	isc_region_t sr;
  253|       |
  254|  1.79k|	REQUIRE(type == dns_rdatatype_keydata);
  ------------------
  |  |  198|  1.79k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.79k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.79k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.79k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  255|       |
  256|  1.79k|	UNUSED(type);
  ------------------
  |  |   69|  1.79k|#define UNUSED(x) (void)(x)
  ------------------
  257|  1.79k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.79k|#define UNUSED(x) (void)(x)
  ------------------
  258|  1.79k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.79k|#define UNUSED(x) (void)(x)
  ------------------
  259|       |
  260|  1.79k|	isc_buffer_activeregion(source, &sr);
  261|  1.79k|	isc_buffer_forward(source, sr.length);
  262|  1.79k|	return mem_tobuffer(target, sr.base, sr.length);
  263|  1.79k|}
rdata.c:towire_keydata:
  266|    807|towire_keydata(ARGS_TOWIRE) {
  267|    807|	isc_region_t sr;
  268|       |
  269|    807|	REQUIRE(rdata->type == dns_rdatatype_keydata);
  ------------------
  |  |  198|    807|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    807|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 807, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    807|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  270|       |
  271|    807|	UNUSED(cctx);
  ------------------
  |  |   69|    807|#define UNUSED(x) (void)(x)
  ------------------
  272|       |
  273|    807|	dns_rdata_toregion(rdata, &sr);
  274|    807|	return mem_tobuffer(target, sr.base, sr.length);
  275|    807|}
rdata.c:totext_keydata:
   90|  1.59k|totext_keydata(ARGS_TOTEXT) {
   91|  1.59k|	isc_region_t sr;
   92|  1.59k|	char buf[sizeof("64000")];
   93|  1.59k|	unsigned int flags;
   94|  1.59k|	unsigned char proto, algorithm;
   95|  1.59k|	unsigned long refresh, add, deltime;
   96|  1.59k|	char algbuf[DNS_NAME_FORMATSIZE];
   97|  1.59k|	const char *keyinfo;
   98|       |
   99|  1.59k|	REQUIRE(rdata->type == dns_rdatatype_keydata);
  ------------------
  |  |  198|  1.59k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.59k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.59k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.59k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|       |
  101|  1.59k|	if ((tctx->flags & DNS_STYLEFLAG_KEYDATA) == 0 || rdata->length < 16) {
  ------------------
  |  |  198|  1.59k|#define DNS_STYLEFLAG_KEYDATA 0x00000008ULL
  ------------------
  |  Branch (101:6): [True: 1.59k, False: 0]
  |  Branch (101:52): [True: 0, False: 0]
  ------------------
  102|  1.59k|		return unknown_totext(rdata, tctx, target);
  103|  1.59k|	}
  104|       |
  105|      0|	dns_rdata_toregion(rdata, &sr);
  106|       |
  107|       |	/* refresh timer */
  108|      0|	refresh = uint32_fromregion(&sr);
  109|      0|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  110|      0|	RETERR(dns_time32_totext(refresh, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  111|      0|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  112|       |
  113|       |	/* add hold-down */
  114|      0|	add = uint32_fromregion(&sr);
  115|      0|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  116|      0|	RETERR(dns_time32_totext(add, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  117|      0|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  118|       |
  119|       |	/* remove hold-down */
  120|      0|	deltime = uint32_fromregion(&sr);
  121|      0|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  122|      0|	RETERR(dns_time32_totext(deltime, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  123|      0|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  124|       |
  125|       |	/* flags */
  126|      0|	flags = uint16_fromregion(&sr);
  127|      0|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  128|      0|	snprintf(buf, sizeof(buf), "%u", flags);
  129|      0|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  130|      0|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  131|      0|	if ((flags & DNS_KEYFLAG_KSK) != 0) {
  ------------------
  |  Branch (131:6): [True: 0, False: 0]
  ------------------
  132|      0|		if ((flags & DNS_KEYFLAG_REVOKE) != 0) {
  ------------------
  |  Branch (132:7): [True: 0, False: 0]
  ------------------
  133|      0|			keyinfo = "revoked KSK";
  134|      0|		} else {
  135|      0|			keyinfo = "KSK";
  136|      0|		}
  137|      0|	} else {
  138|      0|		keyinfo = "ZSK";
  139|      0|	}
  140|       |
  141|       |	/* protocol */
  142|      0|	proto = sr.base[0];
  143|      0|	snprintf(buf, sizeof(buf), "%u", proto);
  144|      0|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  145|      0|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  146|      0|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  147|       |
  148|       |	/* algorithm */
  149|      0|	algorithm = sr.base[0];
  150|      0|	snprintf(buf, sizeof(buf), "%u", algorithm);
  151|      0|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  152|      0|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  153|       |
  154|       |	/* Do we have a placeholder KEYDATA record? */
  155|      0|	if (flags == 0 && proto == 0 && algorithm == 0) {
  ------------------
  |  Branch (155:6): [True: 0, False: 0]
  |  Branch (155:20): [True: 0, False: 0]
  |  Branch (155:34): [True: 0, False: 0]
  ------------------
  156|      0|		if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0) {
  ------------------
  |  |  195|      0|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (156:7): [True: 0, False: 0]
  ------------------
  157|      0|			RETERR(str_totext(" ; placeholder", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  158|      0|		}
  159|      0|		return ISC_R_SUCCESS;
  160|      0|	}
  161|       |
  162|       |	/* No Key? */
  163|      0|	if ((flags & 0xc000) == 0xc000) {
  ------------------
  |  Branch (163:6): [True: 0, False: 0]
  ------------------
  164|      0|		return ISC_R_SUCCESS;
  165|      0|	}
  166|       |
  167|       |	/* key */
  168|      0|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|      0|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (168:6): [True: 0, False: 0]
  ------------------
  169|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  170|      0|	}
  171|      0|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  172|      0|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (172:6): [True: 0, False: 0]
  ------------------
  173|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  174|      0|	} else {
  175|      0|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  176|      0|					 target));
  177|      0|	}
  178|       |
  179|      0|	if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0) {
  ------------------
  |  |  195|      0|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (179:6): [True: 0, False: 0]
  ------------------
  180|      0|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  181|      0|	} else if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|      0|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (181:13): [True: 0, False: 0]
  ------------------
  182|      0|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  183|      0|	}
  184|       |
  185|      0|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|      0|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (185:6): [True: 0, False: 0]
  ------------------
  186|      0|		RETERR(str_totext(")", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  187|      0|	}
  188|       |
  189|      0|	if ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0) {
  ------------------
  |  |  195|      0|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  |  Branch (189:6): [True: 0, False: 0]
  ------------------
  190|      0|		isc_region_t tmpr;
  191|      0|		char rbuf[ISC_FORMATHTTPTIMESTAMP_SIZE];
  192|      0|		char abuf[ISC_FORMATHTTPTIMESTAMP_SIZE];
  193|      0|		char dbuf[ISC_FORMATHTTPTIMESTAMP_SIZE];
  194|      0|		isc_time_t t;
  195|       |
  196|      0|		RETERR(str_totext(" ; ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  197|      0|		RETERR(str_totext(keyinfo, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  198|      0|		dns_secalg_format((dns_secalg_t)algorithm, algbuf,
  199|      0|				  sizeof(algbuf));
  200|      0|		RETERR(str_totext("; alg = ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  201|      0|		RETERR(str_totext(algbuf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  202|      0|		RETERR(str_totext("; key id = ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  203|      0|		dns_rdata_toregion(rdata, &tmpr);
  204|       |		/* Skip over refresh, addhd, and removehd */
  205|      0|		isc_region_consume(&tmpr, 12);
  ------------------
  |  |   50|      0|	do {                              \
  |  |   51|      0|		isc_region_t *_r = (r);   \
  |  |   52|      0|		unsigned int  _l = (l);   \
  |  |   53|      0|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|      0|		_r->base += _l;           \
  |  |   55|      0|		_r->length -= _l;         \
  |  |   56|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  206|      0|		snprintf(buf, sizeof(buf), "%u", dst_region_computeid(&tmpr));
  207|      0|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  208|       |
  209|      0|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|      0|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (209:7): [True: 0, False: 0]
  ------------------
  210|      0|			isc_stdtime_t now = isc_stdtime_now();
  211|       |
  212|      0|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  213|      0|			RETERR(str_totext("; next refresh: ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  214|      0|			isc_time_set(&t, refresh, 0);
  215|      0|			isc_time_formathttptimestamp(&t, rbuf, sizeof(rbuf));
  216|      0|			RETERR(str_totext(rbuf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  217|       |
  218|      0|			if (add == 0U) {
  ------------------
  |  Branch (218:8): [True: 0, False: 0]
  ------------------
  219|      0|				RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  220|      0|				RETERR(str_totext("; no trust", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  221|      0|			} else {
  222|      0|				RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  223|      0|				if (add < now) {
  ------------------
  |  Branch (223:9): [True: 0, False: 0]
  ------------------
  224|      0|					RETERR(str_totext("; trusted since: ",
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  225|      0|							  target));
  226|      0|				} else {
  227|      0|					RETERR(str_totext("; trust pending: ",
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  228|      0|							  target));
  229|      0|				}
  230|      0|				isc_time_set(&t, add, 0);
  231|      0|				isc_time_formathttptimestamp(&t, abuf,
  232|      0|							     sizeof(abuf));
  233|      0|				RETERR(str_totext(abuf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  234|      0|			}
  235|       |
  236|      0|			if (deltime != 0U) {
  ------------------
  |  Branch (236:8): [True: 0, False: 0]
  ------------------
  237|      0|				RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  238|      0|				RETERR(str_totext("; removal pending: ",
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  239|      0|						  target));
  240|      0|				isc_time_set(&t, deltime, 0);
  241|      0|				isc_time_formathttptimestamp(&t, dbuf,
  242|      0|							     sizeof(dbuf));
  243|      0|				RETERR(str_totext(dbuf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  244|      0|			}
  245|      0|		}
  246|      0|	}
  247|      0|	return ISC_R_SUCCESS;
  248|      0|}

rdata.c:fromwire_l32:
   82|  1.91k|fromwire_l32(ARGS_FROMWIRE) {
   83|  1.91k|	isc_region_t sregion;
   84|       |
   85|  1.91k|	REQUIRE(type == dns_rdatatype_l32);
  ------------------
  |  |  198|  1.91k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.91k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.91k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.91k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|  1.91k|	UNUSED(type);
  ------------------
  |  |   69|  1.91k|#define UNUSED(x) (void)(x)
  ------------------
   88|  1.91k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.91k|#define UNUSED(x) (void)(x)
  ------------------
   89|  1.91k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.91k|#define UNUSED(x) (void)(x)
  ------------------
   90|       |
   91|  1.91k|	isc_buffer_activeregion(source, &sregion);
   92|  1.91k|	if (sregion.length != 6) {
  ------------------
  |  Branch (92:6): [True: 4, False: 1.91k]
  ------------------
   93|      4|		return DNS_R_FORMERR;
   94|      4|	}
   95|  1.91k|	isc_buffer_forward(source, sregion.length);
   96|  1.91k|	return mem_tobuffer(target, sregion.base, sregion.length);
   97|  1.91k|}
rdata.c:towire_l32:
  100|    716|towire_l32(ARGS_TOWIRE) {
  101|    716|	REQUIRE(rdata->type == dns_rdatatype_l32);
  ------------------
  |  |  198|    716|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    716|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 716, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    716|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  102|    716|	REQUIRE(rdata->length == 6);
  ------------------
  |  |  198|    716|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    716|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 716, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    716|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  103|       |
  104|    716|	UNUSED(cctx);
  ------------------
  |  |   69|    716|#define UNUSED(x) (void)(x)
  ------------------
  105|       |
  106|    716|	return mem_tobuffer(target, rdata->data, rdata->length);
  107|    716|}
rdata.c:totext_l32:
   60|  1.39k|totext_l32(ARGS_TOTEXT) {
   61|  1.39k|	isc_region_t region;
   62|  1.39k|	char buf[sizeof("65000")];
   63|  1.39k|	unsigned short num;
   64|       |
   65|  1.39k|	REQUIRE(rdata->type == dns_rdatatype_l32);
  ------------------
  |  |  198|  1.39k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.39k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.39k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   66|  1.39k|	REQUIRE(rdata->length == 6);
  ------------------
  |  |  198|  1.39k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.39k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.39k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.39k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.39k|#define UNUSED(x) (void)(x)
  ------------------
   69|       |
   70|  1.39k|	dns_rdata_toregion(rdata, &region);
   71|  1.39k|	num = uint16_fromregion(&region);
   72|  1.39k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.39k|	do {                              \
  |  |   51|  1.39k|		isc_region_t *_r = (r);   \
  |  |   52|  1.39k|		unsigned int  _l = (l);   \
  |  |   53|  1.39k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.39k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.39k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.39k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.39k|		_r->base += _l;           \
  |  |   55|  1.39k|		_r->length -= _l;         \
  |  |   56|  1.39k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.39k]
  |  |  ------------------
  ------------------
   73|  1.39k|	snprintf(buf, sizeof(buf), "%u", num);
   74|  1.39k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.39k|	{                                  \
  |  |  277|  1.39k|		isc_result_t _r = (x);     \
  |  |  278|  1.39k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.39k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.39k|	}
  ------------------
   75|       |
   76|  1.39k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.39k|	{                                  \
  |  |  277|  1.39k|		isc_result_t _r = (x);     \
  |  |  278|  1.39k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.39k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.39k|	}
  ------------------
   77|       |
   78|       |	return inet_totext(AF_INET, tctx->flags, &region, target);
   79|  1.39k|}

rdata.c:fromwire_l64:
   80|  1.16k|fromwire_l64(ARGS_FROMWIRE) {
   81|  1.16k|	isc_region_t sregion;
   82|       |
   83|  1.16k|	REQUIRE(type == dns_rdatatype_l64);
  ------------------
  |  |  198|  1.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|  1.16k|	UNUSED(type);
  ------------------
  |  |   69|  1.16k|#define UNUSED(x) (void)(x)
  ------------------
   86|  1.16k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.16k|#define UNUSED(x) (void)(x)
  ------------------
   87|  1.16k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.16k|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|  1.16k|	isc_buffer_activeregion(source, &sregion);
   90|  1.16k|	if (sregion.length != 10) {
  ------------------
  |  Branch (90:6): [True: 5, False: 1.16k]
  ------------------
   91|      5|		return DNS_R_FORMERR;
   92|      5|	}
   93|  1.16k|	isc_buffer_forward(source, sregion.length);
   94|  1.16k|	return mem_tobuffer(target, sregion.base, sregion.length);
   95|  1.16k|}
rdata.c:towire_l64:
   98|    387|towire_l64(ARGS_TOWIRE) {
   99|    387|	REQUIRE(rdata->type == dns_rdatatype_l64);
  ------------------
  |  |  198|    387|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    387|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 387, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    387|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|    387|	REQUIRE(rdata->length == 10);
  ------------------
  |  |  198|    387|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    387|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 387, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    387|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|       |
  102|    387|	UNUSED(cctx);
  ------------------
  |  |   69|    387|#define UNUSED(x) (void)(x)
  ------------------
  103|       |
  104|    387|	return mem_tobuffer(target, rdata->data, rdata->length);
  105|    387|}
rdata.c:totext_l64:
   53|    767|totext_l64(ARGS_TOTEXT) {
   54|    767|	isc_region_t region;
   55|    767|	char buf[sizeof("xxxx:xxxx:xxxx:xxxx")];
   56|    767|	unsigned short num;
   57|       |
   58|    767|	REQUIRE(rdata->type == dns_rdatatype_l64);
  ------------------
  |  |  198|    767|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    767|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 767, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    767|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|    767|	REQUIRE(rdata->length == 10);
  ------------------
  |  |  198|    767|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    767|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 767, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    767|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|       |
   61|    767|	UNUSED(tctx);
  ------------------
  |  |   69|    767|#define UNUSED(x) (void)(x)
  ------------------
   62|       |
   63|    767|	dns_rdata_toregion(rdata, &region);
   64|    767|	num = uint16_fromregion(&region);
   65|    767|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    767|	do {                              \
  |  |   51|    767|		isc_region_t *_r = (r);   \
  |  |   52|    767|		unsigned int  _l = (l);   \
  |  |   53|    767|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    767|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    767|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 767, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    767|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    767|		_r->base += _l;           \
  |  |   55|    767|		_r->length -= _l;         \
  |  |   56|    767|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 767]
  |  |  ------------------
  ------------------
   66|    767|	snprintf(buf, sizeof(buf), "%u", num);
   67|    767|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    767|	{                                  \
  |  |  277|    767|		isc_result_t _r = (x);     \
  |  |  278|    767|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 767]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    767|	}
  ------------------
   68|       |
   69|    767|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    767|	{                                  \
  |  |  277|    767|		isc_result_t _r = (x);     \
  |  |  278|    767|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 767]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    767|	}
  ------------------
   70|       |
   71|    767|	snprintf(buf, sizeof(buf), "%x:%x:%x:%x",
   72|    767|		 region.base[0] << 8 | region.base[1],
   73|    767|		 region.base[2] << 8 | region.base[3],
   74|    767|		 region.base[4] << 8 | region.base[5],
   75|    767|		 region.base[6] << 8 | region.base[7]);
   76|    767|	return str_totext(buf, target);
   77|    767|}

rdata.c:fromwire_loc:
  558|  5.16k|fromwire_loc(ARGS_FROMWIRE) {
  559|  5.16k|	isc_region_t sr;
  560|  5.16k|	unsigned char c;
  561|  5.16k|	unsigned long latitude;
  562|  5.16k|	unsigned long longitude;
  563|       |
  564|  5.16k|	REQUIRE(type == dns_rdatatype_loc);
  ------------------
  |  |  198|  5.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  565|       |
  566|  5.16k|	UNUSED(type);
  ------------------
  |  |   69|  5.16k|#define UNUSED(x) (void)(x)
  ------------------
  567|  5.16k|	UNUSED(rdclass);
  ------------------
  |  |   69|  5.16k|#define UNUSED(x) (void)(x)
  ------------------
  568|  5.16k|	UNUSED(dctx);
  ------------------
  |  |   69|  5.16k|#define UNUSED(x) (void)(x)
  ------------------
  569|       |
  570|  5.16k|	isc_buffer_activeregion(source, &sr);
  571|  5.16k|	if (sr.length < 1) {
  ------------------
  |  Branch (571:6): [True: 1, False: 5.16k]
  ------------------
  572|      1|		return ISC_R_UNEXPECTEDEND;
  573|      1|	}
  574|  5.16k|	if (sr.base[0] != 0) {
  ------------------
  |  Branch (574:6): [True: 1.52k, False: 3.64k]
  ------------------
  575|       |		/* Treat as unknown. */
  576|  1.52k|		isc_buffer_forward(source, sr.length);
  577|  1.52k|		return mem_tobuffer(target, sr.base, sr.length);
  578|  1.52k|	}
  579|  3.64k|	if (sr.length < 16) {
  ------------------
  |  Branch (579:6): [True: 5, False: 3.63k]
  ------------------
  580|      5|		return ISC_R_UNEXPECTEDEND;
  581|      5|	}
  582|       |
  583|       |	/*
  584|       |	 * Size.
  585|       |	 */
  586|  3.63k|	c = sr.base[1];
  587|  3.63k|	if (c != 0) {
  ------------------
  |  Branch (587:6): [True: 1.09k, False: 2.54k]
  ------------------
  588|  1.09k|		if ((c & 0xf) > 9 || ((c >> 4) & 0xf) > 9 ||
  ------------------
  |  Branch (588:7): [True: 1, False: 1.09k]
  |  Branch (588:24): [True: 1, False: 1.09k]
  ------------------
  589|  1.09k|		    ((c >> 4) & 0xf) == 0)
  ------------------
  |  Branch (589:7): [True: 4, False: 1.09k]
  ------------------
  590|      6|		{
  591|      6|			return ISC_R_RANGE;
  592|       |
  593|       |			/*
  594|       |			 * Horizontal precision.
  595|       |			 */
  596|      6|		}
  597|  1.09k|	}
  598|       |
  599|       |	/*
  600|       |	 * Horizontal precision.
  601|       |	 */
  602|  3.63k|	c = sr.base[2];
  603|  3.63k|	if (c != 0) {
  ------------------
  |  Branch (603:6): [True: 2.79k, False: 836]
  ------------------
  604|  2.79k|		if ((c & 0xf) > 9 || ((c >> 4) & 0xf) > 9 ||
  ------------------
  |  Branch (604:7): [True: 3, False: 2.79k]
  |  Branch (604:24): [True: 1, False: 2.79k]
  ------------------
  605|  2.79k|		    ((c >> 4) & 0xf) == 0)
  ------------------
  |  Branch (605:7): [True: 2, False: 2.78k]
  ------------------
  606|      6|		{
  607|      6|			return ISC_R_RANGE;
  608|       |
  609|       |			/*
  610|       |			 * Vertical precision.
  611|       |			 */
  612|      6|		}
  613|  2.79k|	}
  614|       |
  615|       |	/*
  616|       |	 * Vertical precision.
  617|       |	 */
  618|  3.62k|	c = sr.base[3];
  619|  3.62k|	if (c != 0) {
  ------------------
  |  Branch (619:6): [True: 2.50k, False: 1.12k]
  ------------------
  620|  2.50k|		if ((c & 0xf) > 9 || ((c >> 4) & 0xf) > 9 ||
  ------------------
  |  Branch (620:7): [True: 1, False: 2.50k]
  |  Branch (620:24): [True: 1, False: 2.50k]
  ------------------
  621|  2.50k|		    ((c >> 4) & 0xf) == 0)
  ------------------
  |  Branch (621:7): [True: 2, False: 2.49k]
  ------------------
  622|      4|		{
  623|      4|			return ISC_R_RANGE;
  624|      4|		}
  625|  2.50k|	}
  626|  3.62k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.62k|	do {                              \
  |  |   51|  3.62k|		isc_region_t *_r = (r);   \
  |  |   52|  3.62k|		unsigned int  _l = (l);   \
  |  |   53|  3.62k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.62k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.62k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.62k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.62k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.62k|		_r->base += _l;           \
  |  |   55|  3.62k|		_r->length -= _l;         \
  |  |   56|  3.62k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.62k]
  |  |  ------------------
  ------------------
  627|       |
  628|       |	/*
  629|       |	 * Latitude.
  630|       |	 */
  631|  3.62k|	latitude = uint32_fromregion(&sr);
  632|  3.62k|	if (latitude < (0x80000000UL - 90 * 3600000) ||
  ------------------
  |  Branch (632:6): [True: 32, False: 3.58k]
  ------------------
  633|  3.58k|	    latitude > (0x80000000UL + 90 * 3600000))
  ------------------
  |  Branch (633:6): [True: 1, False: 3.58k]
  ------------------
  634|     33|	{
  635|     33|		return ISC_R_RANGE;
  636|     33|	}
  637|  3.58k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.58k|	do {                              \
  |  |   51|  3.58k|		isc_region_t *_r = (r);   \
  |  |   52|  3.58k|		unsigned int  _l = (l);   \
  |  |   53|  3.58k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.58k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.58k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.58k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.58k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.58k|		_r->base += _l;           \
  |  |   55|  3.58k|		_r->length -= _l;         \
  |  |   56|  3.58k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.58k]
  |  |  ------------------
  ------------------
  638|       |
  639|       |	/*
  640|       |	 * Longitude.
  641|       |	 */
  642|  3.58k|	longitude = uint32_fromregion(&sr);
  643|  3.58k|	if (longitude < (0x80000000UL - 180 * 3600000) ||
  ------------------
  |  Branch (643:6): [True: 33, False: 3.55k]
  ------------------
  644|  3.55k|	    longitude > (0x80000000UL + 180 * 3600000))
  ------------------
  |  Branch (644:6): [True: 8, False: 3.54k]
  ------------------
  645|     41|	{
  646|     41|		return ISC_R_RANGE;
  647|     41|	}
  648|       |
  649|       |	/*
  650|       |	 * Altitude.
  651|       |	 * All values possible.
  652|       |	 */
  653|       |
  654|  3.54k|	isc_buffer_activeregion(source, &sr);
  655|  3.54k|	isc_buffer_forward(source, 16);
  656|  3.54k|	return mem_tobuffer(target, sr.base, 16);
  657|  3.58k|}
rdata.c:towire_loc:
  660|  2.31k|towire_loc(ARGS_TOWIRE) {
  661|  2.31k|	UNUSED(cctx);
  ------------------
  |  |   69|  2.31k|#define UNUSED(x) (void)(x)
  ------------------
  662|       |
  663|  2.31k|	REQUIRE(rdata->type == dns_rdatatype_loc);
  ------------------
  |  |  198|  2.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  664|  2.31k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  665|       |
  666|  2.31k|	return mem_tobuffer(target, rdata->data, rdata->length);
  667|  2.31k|}
rdata.c:totext_loc:
  439|  4.45k|totext_loc(ARGS_TOTEXT) {
  440|  4.45k|	int d1, m1, s1, fs1;
  441|  4.45k|	int d2, m2, s2, fs2;
  442|  4.45k|	unsigned long latitude;
  443|  4.45k|	unsigned long longitude;
  444|  4.45k|	unsigned long altitude;
  445|  4.45k|	bool north;
  446|  4.45k|	bool east;
  447|  4.45k|	bool below;
  448|  4.45k|	isc_region_t sr;
  449|  4.45k|	char sbuf[sizeof("90000000m")];
  450|  4.45k|	char hbuf[sizeof("90000000m")];
  451|  4.45k|	char vbuf[sizeof("90000000m")];
  452|       |	/* "89 59 59.999 N 179 59 59.999 E " */
  453|       |	/* "-42849672.95m 90000000m 90000000m 90000000m"; */
  454|  4.45k|	char buf[8 * 6 + 12 * 1 + 2 * 10 + sizeof(sbuf) + sizeof(hbuf) +
  455|  4.45k|		 sizeof(vbuf)];
  456|  4.45k|	unsigned char size, hp, vp;
  457|  4.45k|	unsigned long poweroften[8] = { 1,     10,     100,	1000,
  458|  4.45k|					10000, 100000, 1000000, 10000000 };
  459|       |
  460|  4.45k|	UNUSED(tctx);
  ------------------
  |  |   69|  4.45k|#define UNUSED(x) (void)(x)
  ------------------
  461|       |
  462|  4.45k|	REQUIRE(rdata->type == dns_rdatatype_loc);
  ------------------
  |  |  198|  4.45k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.45k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.45k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.45k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  463|  4.45k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  4.45k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.45k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.45k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.45k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  464|       |
  465|  4.45k|	dns_rdata_toregion(rdata, &sr);
  466|       |
  467|  4.45k|	if (sr.base[0] != 0) {
  ------------------
  |  Branch (467:6): [True: 1.00k, False: 3.44k]
  ------------------
  468|  1.00k|		return ISC_R_NOTIMPLEMENTED;
  469|  1.00k|	}
  470|       |
  471|  3.44k|	REQUIRE(rdata->length == 16);
  ------------------
  |  |  198|  3.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  472|       |
  473|  3.44k|	size = sr.base[1];
  474|  3.44k|	INSIST((size & 0x0f) < 10 && (size >> 4) < 10);
  ------------------
  |  |  202|  3.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  6.89k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 3.44k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 3.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  475|  3.44k|	if ((size & 0x0f) > 1) {
  ------------------
  |  Branch (475:6): [True: 777, False: 2.67k]
  ------------------
  476|    777|		snprintf(sbuf, sizeof(sbuf), "%lum",
  477|    777|			 (size >> 4) * poweroften[(size & 0x0f) - 2]);
  478|  2.67k|	} else {
  479|  2.67k|		snprintf(sbuf, sizeof(sbuf), "0.%02lum",
  480|  2.67k|			 (size >> 4) * poweroften[(size & 0x0f)]);
  481|  2.67k|	}
  482|  3.44k|	hp = sr.base[2];
  483|  3.44k|	INSIST((hp & 0x0f) < 10 && (hp >> 4) < 10);
  ------------------
  |  |  202|  3.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  6.89k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 3.44k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 3.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  484|  3.44k|	if ((hp & 0x0f) > 1) {
  ------------------
  |  Branch (484:6): [True: 2.41k, False: 1.03k]
  ------------------
  485|  2.41k|		snprintf(hbuf, sizeof(hbuf), "%lum",
  486|  2.41k|			 (hp >> 4) * poweroften[(hp & 0x0f) - 2]);
  487|  2.41k|	} else {
  488|  1.03k|		snprintf(hbuf, sizeof(hbuf), "0.%02lum",
  489|  1.03k|			 (hp >> 4) * poweroften[(hp & 0x0f)]);
  490|  1.03k|	}
  491|  3.44k|	vp = sr.base[3];
  492|  3.44k|	INSIST((vp & 0x0f) < 10 && (vp >> 4) < 10);
  ------------------
  |  |  202|  3.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  6.89k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 3.44k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 3.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  493|  3.44k|	if ((vp & 0x0f) > 1) {
  ------------------
  |  Branch (493:6): [True: 748, False: 2.70k]
  ------------------
  494|    748|		snprintf(vbuf, sizeof(vbuf), "%lum",
  495|    748|			 (vp >> 4) * poweroften[(vp & 0x0f) - 2]);
  496|  2.70k|	} else {
  497|  2.70k|		snprintf(vbuf, sizeof(vbuf), "0.%02lum",
  498|  2.70k|			 (vp >> 4) * poweroften[(vp & 0x0f)]);
  499|  2.70k|	}
  500|  3.44k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.44k|	do {                              \
  |  |   51|  3.44k|		isc_region_t *_r = (r);   \
  |  |   52|  3.44k|		unsigned int  _l = (l);   \
  |  |   53|  3.44k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.44k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.44k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.44k|		_r->base += _l;           \
  |  |   55|  3.44k|		_r->length -= _l;         \
  |  |   56|  3.44k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.44k]
  |  |  ------------------
  ------------------
  501|       |
  502|  3.44k|	latitude = uint32_fromregion(&sr);
  503|  3.44k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.44k|	do {                              \
  |  |   51|  3.44k|		isc_region_t *_r = (r);   \
  |  |   52|  3.44k|		unsigned int  _l = (l);   \
  |  |   53|  3.44k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.44k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.44k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.44k|		_r->base += _l;           \
  |  |   55|  3.44k|		_r->length -= _l;         \
  |  |   56|  3.44k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.44k]
  |  |  ------------------
  ------------------
  504|  3.44k|	if (latitude >= 0x80000000) {
  ------------------
  |  Branch (504:6): [True: 2.26k, False: 1.18k]
  ------------------
  505|  2.26k|		north = true;
  506|  2.26k|		latitude -= 0x80000000;
  507|  2.26k|	} else {
  508|  1.18k|		north = false;
  509|  1.18k|		latitude = 0x80000000 - latitude;
  510|  1.18k|	}
  511|  3.44k|	fs1 = (int)(latitude % 1000);
  512|  3.44k|	latitude /= 1000;
  513|  3.44k|	s1 = (int)(latitude % 60);
  514|  3.44k|	latitude /= 60;
  515|  3.44k|	m1 = (int)(latitude % 60);
  516|  3.44k|	latitude /= 60;
  517|  3.44k|	d1 = (int)latitude;
  518|  3.44k|	INSIST(latitude <= 90U);
  ------------------
  |  |  202|  3.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  3.44k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 3.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  519|       |
  520|  3.44k|	longitude = uint32_fromregion(&sr);
  521|  3.44k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.44k|	do {                              \
  |  |   51|  3.44k|		isc_region_t *_r = (r);   \
  |  |   52|  3.44k|		unsigned int  _l = (l);   \
  |  |   53|  3.44k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.44k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.44k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.44k|		_r->base += _l;           \
  |  |   55|  3.44k|		_r->length -= _l;         \
  |  |   56|  3.44k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.44k]
  |  |  ------------------
  ------------------
  522|  3.44k|	if (longitude >= 0x80000000) {
  ------------------
  |  Branch (522:6): [True: 1.00k, False: 2.44k]
  ------------------
  523|  1.00k|		east = true;
  524|  1.00k|		longitude -= 0x80000000;
  525|  2.44k|	} else {
  526|  2.44k|		east = false;
  527|  2.44k|		longitude = 0x80000000 - longitude;
  528|  2.44k|	}
  529|  3.44k|	fs2 = (int)(longitude % 1000);
  530|  3.44k|	longitude /= 1000;
  531|  3.44k|	s2 = (int)(longitude % 60);
  532|  3.44k|	longitude /= 60;
  533|  3.44k|	m2 = (int)(longitude % 60);
  534|  3.44k|	longitude /= 60;
  535|  3.44k|	d2 = (int)longitude;
  536|  3.44k|	INSIST(longitude <= 180U);
  ------------------
  |  |  202|  3.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  3.44k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 3.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  537|       |
  538|  3.44k|	altitude = uint32_fromregion(&sr);
  539|  3.44k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  3.44k|	do {                              \
  |  |   51|  3.44k|		isc_region_t *_r = (r);   \
  |  |   52|  3.44k|		unsigned int  _l = (l);   \
  |  |   53|  3.44k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.44k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.44k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.44k|		_r->base += _l;           \
  |  |   55|  3.44k|		_r->length -= _l;         \
  |  |   56|  3.44k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.44k]
  |  |  ------------------
  ------------------
  540|  3.44k|	if (altitude < 10000000U) {
  ------------------
  |  Branch (540:6): [True: 492, False: 2.95k]
  ------------------
  541|    492|		below = true;
  542|    492|		altitude = 10000000 - altitude;
  543|  2.95k|	} else {
  544|  2.95k|		below = false;
  545|  2.95k|		altitude -= 10000000;
  546|  2.95k|	}
  547|       |
  548|  3.44k|	snprintf(buf, sizeof(buf),
  549|  3.44k|		 "%d %d %d.%03d %s %d %d %d.%03d %s %s%lu.%02lum %s %s %s", d1,
  550|  3.44k|		 m1, s1, fs1, north ? "N" : "S", d2, m2, s2, fs2,
  ------------------
  |  Branch (550:17): [True: 2.26k, False: 1.18k]
  ------------------
  551|  3.44k|		 east ? "E" : "W", below ? "-" : "", altitude / 100,
  ------------------
  |  Branch (551:4): [True: 1.00k, False: 2.44k]
  |  Branch (551:22): [True: 492, False: 2.95k]
  ------------------
  552|  3.44k|		 altitude % 100, sbuf, hbuf, vbuf);
  553|       |
  554|  3.44k|	return str_totext(buf, target);
  555|  4.45k|}

rdata.c:fromwire_lp:
   81|    838|fromwire_lp(ARGS_FROMWIRE) {
   82|    838|	dns_name_t name;
   83|    838|	isc_region_t sregion;
   84|       |
   85|    838|	REQUIRE(type == dns_rdatatype_lp);
  ------------------
  |  |  198|    838|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    838|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 838, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    838|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|    838|	UNUSED(type);
  ------------------
  |  |   69|    838|#define UNUSED(x) (void)(x)
  ------------------
   88|    838|	UNUSED(rdclass);
  ------------------
  |  |   69|    838|#define UNUSED(x) (void)(x)
  ------------------
   89|       |
   90|    838|	dctx = dns_decompress_setpermitted(dctx, true);
   91|       |
   92|    838|	dns_name_init(&name);
   93|       |
   94|    838|	isc_buffer_activeregion(source, &sregion);
   95|    838|	if (sregion.length < 2) {
  ------------------
  |  Branch (95:6): [True: 4, False: 834]
  ------------------
   96|      4|		return ISC_R_UNEXPECTEDEND;
   97|      4|	}
   98|    834|	RETERR(mem_tobuffer(target, sregion.base, 2));
  ------------------
  |  |  276|    834|	{                                  \
  |  |  277|    834|		isc_result_t _r = (x);     \
  |  |  278|    834|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 66, False: 768]
  |  |  ------------------
  |  |  279|     66|			return ((_r));     \
  |  |  280|     66|		}                          \
  |  |  281|    834|	}
  ------------------
   99|    768|	isc_buffer_forward(source, 2);
  100|    768|	return dns_name_fromwire(&name, source, dctx, target);
  101|    834|}
rdata.c:towire_lp:
  104|    355|towire_lp(ARGS_TOWIRE) {
  105|    355|	REQUIRE(rdata->type == dns_rdatatype_lp);
  ------------------
  |  |  198|    355|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    355|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 355, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    355|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  106|    355|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    355|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    355|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 355, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    355|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  107|       |
  108|    355|	UNUSED(cctx);
  ------------------
  |  |   69|    355|#define UNUSED(x) (void)(x)
  ------------------
  109|       |
  110|    355|	return mem_tobuffer(target, rdata->data, rdata->length);
  111|    355|}
rdata.c:totext_lp:
   52|    706|totext_lp(ARGS_TOTEXT) {
   53|    706|	isc_region_t region;
   54|    706|	dns_name_t name;
   55|    706|	dns_name_t prefix;
   56|    706|	unsigned int opts;
   57|    706|	char buf[sizeof("64000")];
   58|    706|	unsigned short num;
   59|       |
   60|    706|	REQUIRE(rdata->type == dns_rdatatype_lp);
  ------------------
  |  |  198|    706|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    706|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 706, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    706|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   61|    706|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    706|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    706|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 706, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    706|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   62|       |
   63|    706|	dns_name_init(&name);
   64|    706|	dns_name_init(&prefix);
   65|       |
   66|    706|	dns_rdata_toregion(rdata, &region);
   67|    706|	num = uint16_fromregion(&region);
   68|    706|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    706|	do {                              \
  |  |   51|    706|		isc_region_t *_r = (r);   \
  |  |   52|    706|		unsigned int  _l = (l);   \
  |  |   53|    706|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    706|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    706|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 706, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    706|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    706|		_r->base += _l;           \
  |  |   55|    706|		_r->length -= _l;         \
  |  |   56|    706|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 706]
  |  |  ------------------
  ------------------
   69|    706|	snprintf(buf, sizeof(buf), "%u", num);
   70|    706|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    706|	{                                  \
  |  |  277|    706|		isc_result_t _r = (x);     \
  |  |  278|    706|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 706]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    706|	}
  ------------------
   71|       |
   72|    706|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    706|	{                                  \
  |  |  277|    706|		isc_result_t _r = (x);     \
  |  |  278|    706|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 706]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    706|	}
  ------------------
   73|       |
   74|    706|	dns_name_fromregion(&name, &region);
   75|    706|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (75:9): [True: 0, False: 706]
  ------------------
   76|    706|							 : 0;
   77|    706|	return dns_name_totext(&prefix, opts, target);
   78|    706|}

rdata.c:fromwire_mb:
   63|  1.24k|fromwire_mb(ARGS_FROMWIRE) {
   64|  1.24k|	dns_name_t name;
   65|       |
   66|  1.24k|	REQUIRE(type == dns_rdatatype_mb);
  ------------------
  |  |  198|  1.24k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.24k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.24k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.24k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.24k|	UNUSED(type);
  ------------------
  |  |   69|  1.24k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.24k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.24k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.24k|	dctx = dns_decompress_setpermitted(dctx, true);
   72|       |
   73|  1.24k|	dns_name_init(&name);
   74|  1.24k|	return dns_name_fromwire(&name, source, dctx, target);
   75|  1.24k|}
rdata.c:towire_mb:
   78|    595|towire_mb(ARGS_TOWIRE) {
   79|    595|	dns_name_t name;
   80|    595|	isc_region_t region;
   81|       |
   82|    595|	REQUIRE(rdata->type == dns_rdatatype_mb);
  ------------------
  |  |  198|    595|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    595|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 595, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    595|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    595|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    595|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    595|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 595, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    595|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    595|	dns_compress_setpermitted(cctx, true);
   86|       |
   87|    595|	dns_name_init(&name);
   88|    595|	dns_rdata_toregion(rdata, &region);
   89|    595|	dns_name_fromregion(&name, &region);
   90|       |
   91|    595|	return dns_name_towire(&name, cctx, target);
   92|    595|}
rdata.c:totext_mb:
   42|  1.18k|totext_mb(ARGS_TOTEXT) {
   43|  1.18k|	isc_region_t region;
   44|  1.18k|	dns_name_t name;
   45|  1.18k|	dns_name_t prefix;
   46|  1.18k|	unsigned int opts;
   47|       |
   48|  1.18k|	REQUIRE(rdata->type == dns_rdatatype_mb);
  ------------------
  |  |  198|  1.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|  1.18k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|       |
   51|  1.18k|	dns_name_init(&name);
   52|  1.18k|	dns_name_init(&prefix);
   53|       |
   54|  1.18k|	dns_rdata_toregion(rdata, &region);
   55|  1.18k|	dns_name_fromregion(&name, &region);
   56|       |
   57|  1.18k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (57:9): [True: 0, False: 1.18k]
  ------------------
   58|  1.18k|							 : 0;
   59|  1.18k|	return dns_name_totext(&prefix, opts, target);
   60|  1.18k|}

rdata.c:fromwire_md:
   63|  1.81k|fromwire_md(ARGS_FROMWIRE) {
   64|  1.81k|	dns_name_t name;
   65|       |
   66|  1.81k|	REQUIRE(type == dns_rdatatype_md);
  ------------------
  |  |  198|  1.81k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.81k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.81k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.81k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.81k|	UNUSED(type);
  ------------------
  |  |   69|  1.81k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.81k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.81k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.81k|	dctx = dns_decompress_setpermitted(dctx, true);
   72|       |
   73|  1.81k|	dns_name_init(&name);
   74|  1.81k|	return dns_name_fromwire(&name, source, dctx, target);
   75|  1.81k|}
rdata.c:towire_md:
   78|    902|towire_md(ARGS_TOWIRE) {
   79|    902|	dns_name_t name;
   80|    902|	isc_region_t region;
   81|       |
   82|    902|	REQUIRE(rdata->type == dns_rdatatype_md);
  ------------------
  |  |  198|    902|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    902|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 902, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    902|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    902|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    902|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    902|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 902, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    902|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    902|	dns_compress_setpermitted(cctx, true);
   86|       |
   87|    902|	dns_name_init(&name);
   88|    902|	dns_rdata_toregion(rdata, &region);
   89|    902|	dns_name_fromregion(&name, &region);
   90|       |
   91|    902|	return dns_name_towire(&name, cctx, target);
   92|    902|}
rdata.c:totext_md:
   42|  1.78k|totext_md(ARGS_TOTEXT) {
   43|  1.78k|	isc_region_t region;
   44|  1.78k|	dns_name_t name;
   45|  1.78k|	dns_name_t prefix;
   46|  1.78k|	unsigned int opts;
   47|       |
   48|  1.78k|	REQUIRE(rdata->type == dns_rdatatype_md);
  ------------------
  |  |  198|  1.78k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.78k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.78k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.78k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|  1.78k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.78k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.78k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.78k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.78k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|       |
   51|  1.78k|	dns_name_init(&name);
   52|  1.78k|	dns_name_init(&prefix);
   53|       |
   54|  1.78k|	dns_rdata_toregion(rdata, &region);
   55|  1.78k|	dns_name_fromregion(&name, &region);
   56|       |
   57|  1.78k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (57:9): [True: 0, False: 1.78k]
  ------------------
   58|  1.78k|							 : 0;
   59|  1.78k|	return dns_name_totext(&prefix, opts, target);
   60|  1.78k|}

rdata.c:fromwire_mf:
   63|  1.04k|fromwire_mf(ARGS_FROMWIRE) {
   64|  1.04k|	dns_name_t name;
   65|       |
   66|  1.04k|	REQUIRE(type == dns_rdatatype_mf);
  ------------------
  |  |  198|  1.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.04k|	UNUSED(type);
  ------------------
  |  |   69|  1.04k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.04k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.04k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.04k|	dctx = dns_decompress_setpermitted(dctx, true);
   72|       |
   73|  1.04k|	dns_name_init(&name);
   74|  1.04k|	return dns_name_fromwire(&name, source, dctx, target);
   75|  1.04k|}
rdata.c:towire_mf:
   78|    505|towire_mf(ARGS_TOWIRE) {
   79|    505|	dns_name_t name;
   80|    505|	isc_region_t region;
   81|       |
   82|    505|	REQUIRE(rdata->type == dns_rdatatype_mf);
  ------------------
  |  |  198|    505|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    505|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 505, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    505|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    505|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    505|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    505|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 505, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    505|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    505|	dns_compress_setpermitted(cctx, true);
   86|       |
   87|    505|	dns_name_init(&name);
   88|    505|	dns_rdata_toregion(rdata, &region);
   89|    505|	dns_name_fromregion(&name, &region);
   90|       |
   91|    505|	return dns_name_towire(&name, cctx, target);
   92|    505|}
rdata.c:totext_mf:
   42|    993|totext_mf(ARGS_TOTEXT) {
   43|    993|	isc_region_t region;
   44|    993|	dns_name_t name;
   45|    993|	dns_name_t prefix;
   46|    993|	unsigned int opts;
   47|       |
   48|    993|	REQUIRE(rdata->type == dns_rdatatype_mf);
  ------------------
  |  |  198|    993|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    993|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 993, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    993|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|    993|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    993|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    993|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 993, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    993|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|       |
   51|    993|	dns_name_init(&name);
   52|    993|	dns_name_init(&prefix);
   53|       |
   54|    993|	dns_rdata_toregion(rdata, &region);
   55|    993|	dns_name_fromregion(&name, &region);
   56|       |
   57|    993|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (57:9): [True: 0, False: 993]
  ------------------
   58|    993|							 : 0;
   59|    993|	return dns_name_totext(&prefix, opts, target);
   60|    993|}

rdata.c:fromwire_mg:
   63|  1.14k|fromwire_mg(ARGS_FROMWIRE) {
   64|  1.14k|	dns_name_t name;
   65|       |
   66|  1.14k|	REQUIRE(type == dns_rdatatype_mg);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.14k|	UNUSED(type);
  ------------------
  |  |   69|  1.14k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.14k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.14k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.14k|	dctx = dns_decompress_setpermitted(dctx, true);
   72|       |
   73|  1.14k|	dns_name_init(&name);
   74|  1.14k|	return dns_name_fromwire(&name, source, dctx, target);
   75|  1.14k|}
rdata.c:towire_mg:
   78|    556|towire_mg(ARGS_TOWIRE) {
   79|    556|	dns_name_t name;
   80|    556|	isc_region_t region;
   81|       |
   82|    556|	REQUIRE(rdata->type == dns_rdatatype_mg);
  ------------------
  |  |  198|    556|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    556|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 556, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    556|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    556|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    556|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    556|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 556, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    556|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    556|	dns_compress_setpermitted(cctx, true);
   86|       |
   87|    556|	dns_name_init(&name);
   88|    556|	dns_rdata_toregion(rdata, &region);
   89|    556|	dns_name_fromregion(&name, &region);
   90|       |
   91|    556|	return dns_name_towire(&name, cctx, target);
   92|    556|}
rdata.c:totext_mg:
   42|  1.10k|totext_mg(ARGS_TOTEXT) {
   43|  1.10k|	isc_region_t region;
   44|  1.10k|	dns_name_t name;
   45|  1.10k|	dns_name_t prefix;
   46|  1.10k|	unsigned int opts;
   47|       |
   48|  1.10k|	REQUIRE(rdata->type == dns_rdatatype_mg);
  ------------------
  |  |  198|  1.10k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.10k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.10k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.10k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|  1.10k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.10k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.10k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.10k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.10k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|       |
   51|  1.10k|	dns_name_init(&name);
   52|  1.10k|	dns_name_init(&prefix);
   53|       |
   54|  1.10k|	dns_rdata_toregion(rdata, &region);
   55|  1.10k|	dns_name_fromregion(&name, &region);
   56|       |
   57|  1.10k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (57:9): [True: 0, False: 1.10k]
  ------------------
   58|  1.10k|							 : 0;
   59|  1.10k|	return dns_name_totext(&prefix, opts, target);
   60|  1.10k|}

rdata.c:fromwire_minfo:
   95|  1.81k|fromwire_minfo(ARGS_FROMWIRE) {
   96|  1.81k|	dns_name_t rmail;
   97|  1.81k|	dns_name_t email;
   98|       |
   99|  1.81k|	REQUIRE(type == dns_rdatatype_minfo);
  ------------------
  |  |  198|  1.81k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.81k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.81k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.81k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|       |
  101|  1.81k|	UNUSED(type);
  ------------------
  |  |   69|  1.81k|#define UNUSED(x) (void)(x)
  ------------------
  102|  1.81k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.81k|#define UNUSED(x) (void)(x)
  ------------------
  103|       |
  104|  1.81k|	dctx = dns_decompress_setpermitted(dctx, true);
  105|       |
  106|  1.81k|	dns_name_init(&rmail);
  107|  1.81k|	dns_name_init(&email);
  108|       |
  109|  1.81k|	RETERR(dns_name_fromwire(&rmail, source, dctx, target));
  ------------------
  |  |  276|  1.81k|	{                                  \
  |  |  277|  1.81k|		isc_result_t _r = (x);     \
  |  |  278|  1.81k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 201, False: 1.61k]
  |  |  ------------------
  |  |  279|    201|			return ((_r));     \
  |  |  280|    201|		}                          \
  |  |  281|  1.81k|	}
  ------------------
  110|  1.61k|	return dns_name_fromwire(&email, source, dctx, target);
  111|  1.81k|}
rdata.c:towire_minfo:
  114|    713|towire_minfo(ARGS_TOWIRE) {
  115|    713|	isc_region_t region;
  116|    713|	dns_name_t rmail;
  117|    713|	dns_name_t email;
  118|       |
  119|    713|	REQUIRE(rdata->type == dns_rdatatype_minfo);
  ------------------
  |  |  198|    713|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    713|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 713, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    713|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  120|    713|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    713|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    713|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 713, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    713|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  121|       |
  122|    713|	dns_compress_setpermitted(cctx, true);
  123|       |
  124|    713|	dns_name_init(&rmail);
  125|    713|	dns_name_init(&email);
  126|       |
  127|    713|	dns_rdata_toregion(rdata, &region);
  128|       |
  129|    713|	dns_name_fromregion(&rmail, &region);
  130|    713|	isc_region_consume(&region, name_length(&rmail));
  ------------------
  |  |   50|    713|	do {                              \
  |  |   51|    713|		isc_region_t *_r = (r);   \
  |  |   52|    713|		unsigned int  _l = (l);   \
  |  |   53|    713|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    713|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    713|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 713, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    713|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    713|		_r->base += _l;           \
  |  |   55|    713|		_r->length -= _l;         \
  |  |   56|    713|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 713]
  |  |  ------------------
  ------------------
  131|       |
  132|    713|	RETERR(dns_name_towire(&rmail, cctx, target));
  ------------------
  |  |  276|    713|	{                                  \
  |  |  277|    713|		isc_result_t _r = (x);     \
  |  |  278|    713|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 712]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    713|	}
  ------------------
  133|       |
  134|    712|	dns_name_fromregion(&rmail, &region);
  135|    712|	isc_region_consume(&region, rmail.length);
  ------------------
  |  |   50|    712|	do {                              \
  |  |   51|    712|		isc_region_t *_r = (r);   \
  |  |   52|    712|		unsigned int  _l = (l);   \
  |  |   53|    712|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    712|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    712|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 712, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    712|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    712|		_r->base += _l;           \
  |  |   55|    712|		_r->length -= _l;         \
  |  |   56|    712|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 712]
  |  |  ------------------
  ------------------
  136|       |
  137|    712|	return dns_name_towire(&rmail, cctx, target);
  138|    713|}
rdata.c:totext_minfo:
   59|  1.41k|totext_minfo(ARGS_TOTEXT) {
   60|  1.41k|	isc_region_t region;
   61|  1.41k|	dns_name_t rmail;
   62|  1.41k|	dns_name_t email;
   63|  1.41k|	dns_name_t prefix;
   64|  1.41k|	unsigned int opts;
   65|       |
   66|  1.41k|	REQUIRE(rdata->type == dns_rdatatype_minfo);
  ------------------
  |  |  198|  1.41k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.41k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.41k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|  1.41k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.41k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.41k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.41k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|       |
   69|  1.41k|	dns_name_init(&rmail);
   70|  1.41k|	dns_name_init(&email);
   71|  1.41k|	dns_name_init(&prefix);
   72|       |
   73|  1.41k|	dns_rdata_toregion(rdata, &region);
   74|       |
   75|  1.41k|	dns_name_fromregion(&rmail, &region);
   76|  1.41k|	isc_region_consume(&region, rmail.length);
  ------------------
  |  |   50|  1.41k|	do {                              \
  |  |   51|  1.41k|		isc_region_t *_r = (r);   \
  |  |   52|  1.41k|		unsigned int  _l = (l);   \
  |  |   53|  1.41k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.41k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.41k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.41k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.41k|		_r->base += _l;           \
  |  |   55|  1.41k|		_r->length -= _l;         \
  |  |   56|  1.41k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.41k]
  |  |  ------------------
  ------------------
   77|       |
   78|  1.41k|	dns_name_fromregion(&email, &region);
   79|  1.41k|	isc_region_consume(&region, email.length);
  ------------------
  |  |   50|  1.41k|	do {                              \
  |  |   51|  1.41k|		isc_region_t *_r = (r);   \
  |  |   52|  1.41k|		unsigned int  _l = (l);   \
  |  |   53|  1.41k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.41k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.41k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.41k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.41k|		_r->base += _l;           \
  |  |   55|  1.41k|		_r->length -= _l;         \
  |  |   56|  1.41k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.41k]
  |  |  ------------------
  ------------------
   80|       |
   81|  1.41k|	opts = name_prefix(&rmail, tctx->origin, &prefix)
  ------------------
  |  Branch (81:9): [True: 0, False: 1.41k]
  ------------------
   82|  1.41k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
   83|  1.41k|		       : 0;
   84|  1.41k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  1.41k|	{                                  \
  |  |  277|  1.41k|		isc_result_t _r = (x);     \
  |  |  278|  1.41k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.41k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.41k|	}
  ------------------
   85|       |
   86|  1.41k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.41k|	{                                  \
  |  |  277|  1.41k|		isc_result_t _r = (x);     \
  |  |  278|  1.41k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.41k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.41k|	}
  ------------------
   87|       |
   88|  1.41k|	opts = name_prefix(&email, tctx->origin, &prefix)
  ------------------
  |  Branch (88:9): [True: 0, False: 1.41k]
  ------------------
   89|  1.41k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
   90|  1.41k|		       : 0;
   91|  1.41k|	return dns_name_totext(&prefix, opts, target);
   92|  1.41k|}

rdata.c:fromwire_mr:
   63|  1.34k|fromwire_mr(ARGS_FROMWIRE) {
   64|  1.34k|	dns_name_t name;
   65|       |
   66|  1.34k|	REQUIRE(type == dns_rdatatype_mr);
  ------------------
  |  |  198|  1.34k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.34k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.34k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.34k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|       |
   68|  1.34k|	UNUSED(type);
  ------------------
  |  |   69|  1.34k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.34k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.34k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.34k|	dctx = dns_decompress_setpermitted(dctx, true);
   72|       |
   73|  1.34k|	dns_name_init(&name);
   74|  1.34k|	return dns_name_fromwire(&name, source, dctx, target);
   75|  1.34k|}
rdata.c:towire_mr:
   78|    662|towire_mr(ARGS_TOWIRE) {
   79|    662|	dns_name_t name;
   80|    662|	isc_region_t region;
   81|       |
   82|    662|	REQUIRE(rdata->type == dns_rdatatype_mr);
  ------------------
  |  |  198|    662|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    662|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 662, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    662|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   83|    662|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    662|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    662|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 662, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    662|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|    662|	dns_compress_setpermitted(cctx, true);
   86|       |
   87|    662|	dns_name_init(&name);
   88|    662|	dns_rdata_toregion(rdata, &region);
   89|    662|	dns_name_fromregion(&name, &region);
   90|       |
   91|    662|	return dns_name_towire(&name, cctx, target);
   92|    662|}
rdata.c:totext_mr:
   42|  1.30k|totext_mr(ARGS_TOTEXT) {
   43|  1.30k|	isc_region_t region;
   44|  1.30k|	dns_name_t name;
   45|  1.30k|	dns_name_t prefix;
   46|  1.30k|	unsigned int opts;
   47|       |
   48|  1.30k|	REQUIRE(rdata->type == dns_rdatatype_mr);
  ------------------
  |  |  198|  1.30k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.30k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.30k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.30k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   49|  1.30k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.30k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.30k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.30k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.30k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   50|       |
   51|  1.30k|	dns_name_init(&name);
   52|  1.30k|	dns_name_init(&prefix);
   53|       |
   54|  1.30k|	dns_rdata_toregion(rdata, &region);
   55|  1.30k|	dns_name_fromregion(&name, &region);
   56|       |
   57|  1.30k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (57:9): [True: 0, False: 1.30k]
  ------------------
   58|  1.30k|							 : 0;
   59|  1.30k|	return dns_name_totext(&prefix, opts, target);
   60|  1.30k|}

rdata.c:fromwire_mx:
  130|  1.12k|fromwire_mx(ARGS_FROMWIRE) {
  131|  1.12k|	dns_name_t name;
  132|  1.12k|	isc_region_t sregion;
  133|       |
  134|  1.12k|	REQUIRE(type == dns_rdatatype_mx);
  ------------------
  |  |  198|  1.12k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.12k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.12k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.12k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  135|       |
  136|  1.12k|	UNUSED(type);
  ------------------
  |  |   69|  1.12k|#define UNUSED(x) (void)(x)
  ------------------
  137|  1.12k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.12k|#define UNUSED(x) (void)(x)
  ------------------
  138|       |
  139|  1.12k|	dctx = dns_decompress_setpermitted(dctx, true);
  140|       |
  141|  1.12k|	dns_name_init(&name);
  142|       |
  143|  1.12k|	isc_buffer_activeregion(source, &sregion);
  144|  1.12k|	if (sregion.length < 2) {
  ------------------
  |  Branch (144:6): [True: 4, False: 1.11k]
  ------------------
  145|      4|		return ISC_R_UNEXPECTEDEND;
  146|      4|	}
  147|  1.11k|	RETERR(mem_tobuffer(target, sregion.base, 2));
  ------------------
  |  |  276|  1.11k|	{                                  \
  |  |  277|  1.11k|		isc_result_t _r = (x);     \
  |  |  278|  1.11k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 102, False: 1.01k]
  |  |  ------------------
  |  |  279|    102|			return ((_r));     \
  |  |  280|    102|		}                          \
  |  |  281|  1.11k|	}
  ------------------
  148|  1.01k|	isc_buffer_forward(source, 2);
  149|  1.01k|	return dns_name_fromwire(&name, source, dctx, target);
  150|  1.11k|}
rdata.c:towire_mx:
  153|    473|towire_mx(ARGS_TOWIRE) {
  154|    473|	dns_name_t name;
  155|    473|	isc_region_t region;
  156|       |
  157|    473|	REQUIRE(rdata->type == dns_rdatatype_mx);
  ------------------
  |  |  198|    473|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    473|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 473, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    473|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  158|    473|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    473|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    473|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 473, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    473|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  159|       |
  160|    473|	dns_compress_setpermitted(cctx, true);
  161|       |
  162|    473|	dns_rdata_toregion(rdata, &region);
  163|    473|	RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|    473|	{                                  \
  |  |  277|    473|		isc_result_t _r = (x);     \
  |  |  278|    473|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 473]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    473|	}
  ------------------
  164|    473|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    473|	do {                              \
  |  |   51|    473|		isc_region_t *_r = (r);   \
  |  |   52|    473|		unsigned int  _l = (l);   \
  |  |   53|    473|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    473|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    473|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 473, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    473|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    473|		_r->base += _l;           \
  |  |   55|    473|		_r->length -= _l;         \
  |  |   56|    473|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 473]
  |  |  ------------------
  ------------------
  165|       |
  166|    473|	dns_name_init(&name);
  167|    473|	dns_name_fromregion(&name, &region);
  168|       |
  169|    473|	return dns_name_towire(&name, cctx, target);
  170|    473|}
rdata.c:totext_mx:
  101|    926|totext_mx(ARGS_TOTEXT) {
  102|    926|	isc_region_t region;
  103|    926|	dns_name_t name;
  104|    926|	dns_name_t prefix;
  105|    926|	unsigned int opts;
  106|    926|	char buf[sizeof("64000")];
  107|    926|	unsigned short num;
  108|       |
  109|    926|	REQUIRE(rdata->type == dns_rdatatype_mx);
  ------------------
  |  |  198|    926|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    926|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 926, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    926|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  110|    926|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    926|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    926|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 926, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    926|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  111|       |
  112|    926|	dns_name_init(&name);
  113|    926|	dns_name_init(&prefix);
  114|       |
  115|    926|	dns_rdata_toregion(rdata, &region);
  116|    926|	num = uint16_fromregion(&region);
  117|    926|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    926|	do {                              \
  |  |   51|    926|		isc_region_t *_r = (r);   \
  |  |   52|    926|		unsigned int  _l = (l);   \
  |  |   53|    926|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    926|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    926|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 926, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    926|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    926|		_r->base += _l;           \
  |  |   55|    926|		_r->length -= _l;         \
  |  |   56|    926|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 926]
  |  |  ------------------
  ------------------
  118|    926|	snprintf(buf, sizeof(buf), "%u", num);
  119|    926|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    926|	{                                  \
  |  |  277|    926|		isc_result_t _r = (x);     \
  |  |  278|    926|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 926]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    926|	}
  ------------------
  120|       |
  121|    926|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    926|	{                                  \
  |  |  277|    926|		isc_result_t _r = (x);     \
  |  |  278|    926|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 926]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    926|	}
  ------------------
  122|       |
  123|    926|	dns_name_fromregion(&name, &region);
  124|    926|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (124:9): [True: 0, False: 926]
  ------------------
  125|    926|							 : 0;
  126|    926|	return dns_name_totext(&prefix, opts, target);
  127|    926|}

rdata.c:fromwire_naptr:
  303|  6.95k|fromwire_naptr(ARGS_FROMWIRE) {
  304|  6.95k|	dns_name_t name;
  305|  6.95k|	isc_region_t sr;
  306|  6.95k|	unsigned char *regex;
  307|       |
  308|  6.95k|	REQUIRE(type == dns_rdatatype_naptr);
  ------------------
  |  |  198|  6.95k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.95k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.95k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.95k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  309|       |
  310|  6.95k|	UNUSED(type);
  ------------------
  |  |   69|  6.95k|#define UNUSED(x) (void)(x)
  ------------------
  311|  6.95k|	UNUSED(rdclass);
  ------------------
  |  |   69|  6.95k|#define UNUSED(x) (void)(x)
  ------------------
  312|       |
  313|  6.95k|	dctx = dns_decompress_setpermitted(dctx, false);
  314|       |
  315|  6.95k|	dns_name_init(&name);
  316|       |
  317|       |	/*
  318|       |	 * Order, preference.
  319|       |	 */
  320|  6.95k|	isc_buffer_activeregion(source, &sr);
  321|  6.95k|	if (sr.length < 4) {
  ------------------
  |  Branch (321:6): [True: 5, False: 6.94k]
  ------------------
  322|      5|		return ISC_R_UNEXPECTEDEND;
  323|      5|	}
  324|  6.94k|	RETERR(mem_tobuffer(target, sr.base, 4));
  ------------------
  |  |  276|  6.94k|	{                                  \
  |  |  277|  6.94k|		isc_result_t _r = (x);     \
  |  |  278|  6.94k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 201, False: 6.74k]
  |  |  ------------------
  |  |  279|    201|			return ((_r));     \
  |  |  280|    201|		}                          \
  |  |  281|  6.94k|	}
  ------------------
  325|  6.74k|	isc_buffer_forward(source, 4);
  326|       |
  327|       |	/*
  328|       |	 * Flags.
  329|       |	 */
  330|  6.74k|	RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  6.74k|	{                                  \
  |  |  277|  6.74k|		isc_result_t _r = (x);     \
  |  |  278|  6.74k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 201, False: 6.54k]
  |  |  ------------------
  |  |  279|    201|			return ((_r));     \
  |  |  280|    201|		}                          \
  |  |  281|  6.74k|	}
  ------------------
  331|       |
  332|       |	/*
  333|       |	 * Service.
  334|       |	 */
  335|  6.54k|	RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  6.54k|	{                                  \
  |  |  277|  6.54k|		isc_result_t _r = (x);     \
  |  |  278|  6.54k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 197, False: 6.34k]
  |  |  ------------------
  |  |  279|    197|			return ((_r));     \
  |  |  280|    197|		}                          \
  |  |  281|  6.54k|	}
  ------------------
  336|       |
  337|       |	/*
  338|       |	 * Regexp.
  339|       |	 */
  340|  6.34k|	regex = isc_buffer_used(target);
  ------------------
  |  |  149|  6.34k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  341|  6.34k|	RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  6.34k|	{                                  \
  |  |  277|  6.34k|		isc_result_t _r = (x);     \
  |  |  278|  6.34k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 486, False: 5.86k]
  |  |  ------------------
  |  |  279|    486|			return ((_r));     \
  |  |  280|    486|		}                          \
  |  |  281|  6.34k|	}
  ------------------
  342|  5.86k|	RETERR(txt_valid_regex(regex));
  ------------------
  |  |  276|  5.86k|	{                                  \
  |  |  277|  5.86k|		isc_result_t _r = (x);     \
  |  |  278|  5.86k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 387, False: 5.47k]
  |  |  ------------------
  |  |  279|    387|			return ((_r));     \
  |  |  280|    387|		}                          \
  |  |  281|  5.86k|	}
  ------------------
  343|       |
  344|       |	/*
  345|       |	 * Replacement.
  346|       |	 */
  347|  5.47k|	return dns_name_fromwire(&name, source, dctx, target);
  348|  5.86k|}
rdata.c:txt_valid_regex:
   28|  5.86k|txt_valid_regex(const unsigned char *txt) {
   29|  5.86k|	unsigned int nsub = 0;
   30|  5.86k|	char regex[256];
   31|  5.86k|	char *cp;
   32|  5.86k|	bool flags = false;
   33|  5.86k|	bool replace = false;
   34|  5.86k|	unsigned char c;
   35|  5.86k|	unsigned char delim;
   36|  5.86k|	unsigned int len;
   37|  5.86k|	int n;
   38|       |
   39|  5.86k|	len = *txt++;
   40|  5.86k|	if (len == 0U) {
  ------------------
  |  Branch (40:6): [True: 1.27k, False: 4.59k]
  ------------------
   41|  1.27k|		return ISC_R_SUCCESS;
   42|  1.27k|	}
   43|       |
   44|  4.59k|	delim = *txt++;
   45|  4.59k|	len--;
   46|       |
   47|       |	/*
   48|       |	 * Digits, backslash and flags can't be delimiters.
   49|       |	 */
   50|  4.59k|	switch (delim) {
  ------------------
  |  Branch (50:10): [True: 13, False: 4.57k]
  ------------------
   51|      1|	case '0':
  ------------------
  |  Branch (51:2): [True: 1, False: 4.58k]
  ------------------
   52|      2|	case '1':
  ------------------
  |  Branch (52:2): [True: 1, False: 4.58k]
  ------------------
   53|      3|	case '2':
  ------------------
  |  Branch (53:2): [True: 1, False: 4.58k]
  ------------------
   54|      4|	case '3':
  ------------------
  |  Branch (54:2): [True: 1, False: 4.58k]
  ------------------
   55|      5|	case '4':
  ------------------
  |  Branch (55:2): [True: 1, False: 4.58k]
  ------------------
   56|      6|	case '5':
  ------------------
  |  Branch (56:2): [True: 1, False: 4.58k]
  ------------------
   57|      7|	case '6':
  ------------------
  |  Branch (57:2): [True: 1, False: 4.58k]
  ------------------
   58|      8|	case '7':
  ------------------
  |  Branch (58:2): [True: 1, False: 4.58k]
  ------------------
   59|      9|	case '8':
  ------------------
  |  Branch (59:2): [True: 1, False: 4.58k]
  ------------------
   60|     10|	case '9':
  ------------------
  |  Branch (60:2): [True: 1, False: 4.58k]
  ------------------
   61|     11|	case '\\':
  ------------------
  |  Branch (61:2): [True: 1, False: 4.58k]
  ------------------
   62|     12|	case 'i':
  ------------------
  |  Branch (62:2): [True: 1, False: 4.58k]
  ------------------
   63|     13|	case 0:
  ------------------
  |  Branch (63:2): [True: 1, False: 4.58k]
  ------------------
   64|     13|		return DNS_R_SYNTAX;
   65|  4.59k|	}
   66|       |
   67|  4.57k|	cp = regex;
   68|   419k|	while (len-- > 0) {
  ------------------
  |  Branch (68:9): [True: 414k, False: 4.54k]
  ------------------
   69|   414k|		c = *txt++;
   70|   414k|		if (c == 0) {
  ------------------
  |  Branch (70:7): [True: 13, False: 414k]
  ------------------
   71|     13|			return DNS_R_SYNTAX;
   72|     13|		}
   73|   414k|		if (c == delim && !replace) {
  ------------------
  |  Branch (73:7): [True: 9.06k, False: 405k]
  |  Branch (73:21): [True: 4.56k, False: 4.49k]
  ------------------
   74|  4.56k|			replace = true;
   75|  4.56k|			continue;
   76|   410k|		} else if (c == delim && !flags) {
  ------------------
  |  Branch (76:14): [True: 4.49k, False: 405k]
  |  Branch (76:28): [True: 4.49k, False: 2]
  ------------------
   77|  4.49k|			flags = true;
   78|  4.49k|			continue;
   79|   405k|		} else if (c == delim) {
  ------------------
  |  Branch (79:14): [True: 2, False: 405k]
  ------------------
   80|      2|			return DNS_R_SYNTAX;
   81|      2|		}
   82|       |		/*
   83|       |		 * Flags are not escaped.
   84|       |		 */
   85|   405k|		if (flags) {
  ------------------
  |  Branch (85:7): [True: 249, False: 405k]
  ------------------
   86|    249|			switch (c) {
   87|    242|			case 'i':
  ------------------
  |  Branch (87:4): [True: 242, False: 7]
  ------------------
   88|    242|				continue;
   89|      7|			default:
  ------------------
  |  Branch (89:4): [True: 7, False: 242]
  ------------------
   90|      7|				return DNS_R_SYNTAX;
   91|    249|			}
   92|    249|		}
   93|   405k|		if (!replace) {
  ------------------
  |  Branch (93:7): [True: 361k, False: 43.9k]
  ------------------
   94|   361k|			*cp++ = c;
   95|   361k|		}
   96|   405k|		if (c == '\\') {
  ------------------
  |  Branch (96:7): [True: 19.7k, False: 385k]
  ------------------
   97|  19.7k|			if (len == 0) {
  ------------------
  |  Branch (97:8): [True: 4, False: 19.7k]
  ------------------
   98|      4|				return DNS_R_SYNTAX;
   99|      4|			}
  100|  19.7k|			c = *txt++;
  101|  19.7k|			if (c == 0) {
  ------------------
  |  Branch (101:8): [True: 1, False: 19.7k]
  ------------------
  102|      1|				return DNS_R_SYNTAX;
  103|      1|			}
  104|  19.7k|			len--;
  105|  19.7k|			if (replace) {
  ------------------
  |  Branch (105:8): [True: 11.3k, False: 8.42k]
  ------------------
  106|  11.3k|				switch (c) {
  ------------------
  |  Branch (106:13): [True: 7.34k, False: 4.02k]
  ------------------
  107|      1|				case '0':
  ------------------
  |  Branch (107:5): [True: 1, False: 11.3k]
  ------------------
  108|      1|					return DNS_R_SYNTAX;
  109|    886|				case '1':
  ------------------
  |  Branch (109:5): [True: 886, False: 10.4k]
  ------------------
  110|    886|					if (nsub < 1) {
  ------------------
  |  Branch (110:10): [True: 607, False: 279]
  ------------------
  111|    607|						nsub = 1;
  112|    607|					}
  113|    886|					break;
  114|    850|				case '2':
  ------------------
  |  Branch (114:5): [True: 850, False: 10.5k]
  ------------------
  115|    850|					if (nsub < 2) {
  ------------------
  |  Branch (115:10): [True: 332, False: 518]
  ------------------
  116|    332|						nsub = 2;
  117|    332|					}
  118|    850|					break;
  119|    811|				case '3':
  ------------------
  |  Branch (119:5): [True: 811, False: 10.5k]
  ------------------
  120|    811|					if (nsub < 3) {
  ------------------
  |  Branch (120:10): [True: 277, False: 534]
  ------------------
  121|    277|						nsub = 3;
  122|    277|					}
  123|    811|					break;
  124|  1.28k|				case '4':
  ------------------
  |  Branch (124:5): [True: 1.28k, False: 10.0k]
  ------------------
  125|  1.28k|					if (nsub < 4) {
  ------------------
  |  Branch (125:10): [True: 437, False: 851]
  ------------------
  126|    437|						nsub = 4;
  127|    437|					}
  128|  1.28k|					break;
  129|  1.74k|				case '5':
  ------------------
  |  Branch (129:5): [True: 1.74k, False: 9.61k]
  ------------------
  130|  1.74k|					if (nsub < 5) {
  ------------------
  |  Branch (130:10): [True: 556, False: 1.19k]
  ------------------
  131|    556|						nsub = 5;
  132|    556|					}
  133|  1.74k|					break;
  134|    668|				case '6':
  ------------------
  |  Branch (134:5): [True: 668, False: 10.6k]
  ------------------
  135|    668|					if (nsub < 6) {
  ------------------
  |  Branch (135:10): [True: 426, False: 242]
  ------------------
  136|    426|						nsub = 6;
  137|    426|					}
  138|    668|					break;
  139|    249|				case '7':
  ------------------
  |  Branch (139:5): [True: 249, False: 11.1k]
  ------------------
  140|    249|					if (nsub < 7) {
  ------------------
  |  Branch (140:10): [True: 112, False: 137]
  ------------------
  141|    112|						nsub = 7;
  142|    112|					}
  143|    249|					break;
  144|    449|				case '8':
  ------------------
  |  Branch (144:5): [True: 449, False: 10.9k]
  ------------------
  145|    449|					if (nsub < 8) {
  ------------------
  |  Branch (145:10): [True: 157, False: 292]
  ------------------
  146|    157|						nsub = 8;
  147|    157|					}
  148|    449|					break;
  149|    393|				case '9':
  ------------------
  |  Branch (149:5): [True: 393, False: 10.9k]
  ------------------
  150|    393|					if (nsub < 9) {
  ------------------
  |  Branch (150:10): [True: 222, False: 171]
  ------------------
  151|    222|						nsub = 9;
  152|    222|					}
  153|    393|					break;
  154|  11.3k|				}
  155|  11.3k|			}
  156|  19.7k|			if (!replace) {
  ------------------
  |  Branch (156:8): [True: 8.42k, False: 11.3k]
  ------------------
  157|  8.42k|				*cp++ = c;
  158|  8.42k|			}
  159|  19.7k|		}
  160|   405k|	}
  161|  4.54k|	if (!flags) {
  ------------------
  |  Branch (161:6): [True: 66, False: 4.48k]
  ------------------
  162|     66|		return DNS_R_SYNTAX;
  163|     66|	}
  164|  4.48k|	*cp = '\0';
  165|  4.48k|	n = isc_regex_validate(regex);
  166|  4.48k|	if (n < 0 || nsub > (unsigned int)n) {
  ------------------
  |  Branch (166:6): [True: 270, False: 4.21k]
  |  Branch (166:15): [True: 10, False: 4.20k]
  ------------------
  167|    280|		return DNS_R_SYNTAX;
  168|    280|	}
  169|  4.20k|	return ISC_R_SUCCESS;
  170|  4.48k|}
rdata.c:towire_naptr:
  351|  2.24k|towire_naptr(ARGS_TOWIRE) {
  352|  2.24k|	dns_name_t name;
  353|  2.24k|	isc_region_t sr;
  354|       |
  355|  2.24k|	REQUIRE(rdata->type == dns_rdatatype_naptr);
  ------------------
  |  |  198|  2.24k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.24k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.24k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.24k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  356|  2.24k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.24k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.24k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.24k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.24k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  357|       |
  358|  2.24k|	dns_compress_setpermitted(cctx, false);
  359|       |	/*
  360|       |	 * Order, preference.
  361|       |	 */
  362|  2.24k|	dns_rdata_toregion(rdata, &sr);
  363|  2.24k|	RETERR(mem_tobuffer(target, sr.base, 4));
  ------------------
  |  |  276|  2.24k|	{                                  \
  |  |  277|  2.24k|		isc_result_t _r = (x);     \
  |  |  278|  2.24k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.24k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.24k|	}
  ------------------
  364|  2.24k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  2.24k|	do {                              \
  |  |   51|  2.24k|		isc_region_t *_r = (r);   \
  |  |   52|  2.24k|		unsigned int  _l = (l);   \
  |  |   53|  2.24k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.24k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.24k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.24k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.24k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.24k|		_r->base += _l;           \
  |  |   55|  2.24k|		_r->length -= _l;         \
  |  |   56|  2.24k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.24k]
  |  |  ------------------
  ------------------
  365|       |
  366|       |	/*
  367|       |	 * Flags.
  368|       |	 */
  369|  2.24k|	RETERR(mem_tobuffer(target, sr.base, sr.base[0] + 1));
  ------------------
  |  |  276|  2.24k|	{                                  \
  |  |  277|  2.24k|		isc_result_t _r = (x);     \
  |  |  278|  2.24k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.24k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.24k|	}
  ------------------
  370|  2.24k|	isc_region_consume(&sr, sr.base[0] + 1);
  ------------------
  |  |   50|  2.24k|	do {                              \
  |  |   51|  2.24k|		isc_region_t *_r = (r);   \
  |  |   52|  2.24k|		unsigned int  _l = (l);   \
  |  |   53|  2.24k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.24k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.24k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.24k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.24k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.24k|		_r->base += _l;           \
  |  |   55|  2.24k|		_r->length -= _l;         \
  |  |   56|  2.24k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.24k]
  |  |  ------------------
  ------------------
  371|       |
  372|       |	/*
  373|       |	 * Service.
  374|       |	 */
  375|  2.24k|	RETERR(mem_tobuffer(target, sr.base, sr.base[0] + 1));
  ------------------
  |  |  276|  2.24k|	{                                  \
  |  |  277|  2.24k|		isc_result_t _r = (x);     \
  |  |  278|  2.24k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.24k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.24k|	}
  ------------------
  376|  2.24k|	isc_region_consume(&sr, sr.base[0] + 1);
  ------------------
  |  |   50|  2.24k|	do {                              \
  |  |   51|  2.24k|		isc_region_t *_r = (r);   \
  |  |   52|  2.24k|		unsigned int  _l = (l);   \
  |  |   53|  2.24k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.24k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.24k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.24k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.24k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.24k|		_r->base += _l;           \
  |  |   55|  2.24k|		_r->length -= _l;         \
  |  |   56|  2.24k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.24k]
  |  |  ------------------
  ------------------
  377|       |
  378|       |	/*
  379|       |	 * Regexp.
  380|       |	 */
  381|  2.24k|	RETERR(mem_tobuffer(target, sr.base, sr.base[0] + 1));
  ------------------
  |  |  276|  2.24k|	{                                  \
  |  |  277|  2.24k|		isc_result_t _r = (x);     \
  |  |  278|  2.24k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.24k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.24k|	}
  ------------------
  382|  2.24k|	isc_region_consume(&sr, sr.base[0] + 1);
  ------------------
  |  |   50|  2.24k|	do {                              \
  |  |   51|  2.24k|		isc_region_t *_r = (r);   \
  |  |   52|  2.24k|		unsigned int  _l = (l);   \
  |  |   53|  2.24k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.24k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.24k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.24k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.24k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.24k|		_r->base += _l;           \
  |  |   55|  2.24k|		_r->length -= _l;         \
  |  |   56|  2.24k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.24k]
  |  |  ------------------
  ------------------
  383|       |
  384|       |	/*
  385|       |	 * Replacement.
  386|       |	 */
  387|  2.24k|	dns_name_init(&name);
  388|  2.24k|	dns_name_fromregion(&name, &sr);
  389|  2.24k|	return dns_name_towire(&name, cctx, target);
  390|  2.24k|}
rdata.c:totext_naptr:
  241|  4.61k|totext_naptr(ARGS_TOTEXT) {
  242|  4.61k|	isc_region_t region;
  243|  4.61k|	dns_name_t name;
  244|  4.61k|	dns_name_t prefix;
  245|  4.61k|	unsigned int opts;
  246|  4.61k|	char buf[sizeof("64000")];
  247|  4.61k|	unsigned short num;
  248|       |
  249|  4.61k|	REQUIRE(rdata->type == dns_rdatatype_naptr);
  ------------------
  |  |  198|  4.61k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.61k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.61k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.61k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  250|  4.61k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  4.61k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.61k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.61k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.61k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  251|       |
  252|  4.61k|	dns_name_init(&name);
  253|  4.61k|	dns_name_init(&prefix);
  254|       |
  255|  4.61k|	dns_rdata_toregion(rdata, &region);
  256|       |
  257|       |	/*
  258|       |	 * Order.
  259|       |	 */
  260|  4.61k|	num = uint16_fromregion(&region);
  261|  4.61k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  4.61k|	do {                              \
  |  |   51|  4.61k|		isc_region_t *_r = (r);   \
  |  |   52|  4.61k|		unsigned int  _l = (l);   \
  |  |   53|  4.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.61k|		_r->base += _l;           \
  |  |   55|  4.61k|		_r->length -= _l;         \
  |  |   56|  4.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.61k]
  |  |  ------------------
  ------------------
  262|  4.61k|	snprintf(buf, sizeof(buf), "%u", num);
  263|  4.61k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.61k|	{                                  \
  |  |  277|  4.61k|		isc_result_t _r = (x);     \
  |  |  278|  4.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.61k|	}
  ------------------
  264|  4.61k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.61k|	{                                  \
  |  |  277|  4.61k|		isc_result_t _r = (x);     \
  |  |  278|  4.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.61k|	}
  ------------------
  265|       |
  266|       |	/*
  267|       |	 * Preference.
  268|       |	 */
  269|  4.61k|	num = uint16_fromregion(&region);
  270|  4.61k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  4.61k|	do {                              \
  |  |   51|  4.61k|		isc_region_t *_r = (r);   \
  |  |   52|  4.61k|		unsigned int  _l = (l);   \
  |  |   53|  4.61k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.61k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.61k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.61k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.61k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.61k|		_r->base += _l;           \
  |  |   55|  4.61k|		_r->length -= _l;         \
  |  |   56|  4.61k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.61k]
  |  |  ------------------
  ------------------
  271|  4.61k|	snprintf(buf, sizeof(buf), "%u", num);
  272|  4.61k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.61k|	{                                  \
  |  |  277|  4.61k|		isc_result_t _r = (x);     \
  |  |  278|  4.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.61k|	}
  ------------------
  273|  4.61k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.61k|	{                                  \
  |  |  277|  4.61k|		isc_result_t _r = (x);     \
  |  |  278|  4.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.61k|	}
  ------------------
  274|       |
  275|       |	/*
  276|       |	 * Flags.
  277|       |	 */
  278|  4.61k|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  4.61k|	{                                  \
  |  |  277|  4.61k|		isc_result_t _r = (x);     \
  |  |  278|  4.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.61k|	}
  ------------------
  279|  4.61k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.61k|	{                                  \
  |  |  277|  4.61k|		isc_result_t _r = (x);     \
  |  |  278|  4.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.61k|	}
  ------------------
  280|       |
  281|       |	/*
  282|       |	 * Service.
  283|       |	 */
  284|  4.61k|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  4.61k|	{                                  \
  |  |  277|  4.61k|		isc_result_t _r = (x);     \
  |  |  278|  4.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.61k|	}
  ------------------
  285|  4.61k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.61k|	{                                  \
  |  |  277|  4.61k|		isc_result_t _r = (x);     \
  |  |  278|  4.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.61k|	}
  ------------------
  286|       |
  287|       |	/*
  288|       |	 * Regexp.
  289|       |	 */
  290|  4.61k|	RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  4.61k|	{                                  \
  |  |  277|  4.61k|		isc_result_t _r = (x);     \
  |  |  278|  4.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.61k|	}
  ------------------
  291|  4.61k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.61k|	{                                  \
  |  |  277|  4.61k|		isc_result_t _r = (x);     \
  |  |  278|  4.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.61k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.61k|	}
  ------------------
  292|       |
  293|       |	/*
  294|       |	 * Replacement.
  295|       |	 */
  296|  4.61k|	dns_name_fromregion(&name, &region);
  297|  4.61k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (297:9): [True: 0, False: 4.61k]
  ------------------
  298|  4.61k|							 : 0;
  299|  4.61k|	return dns_name_totext(&prefix, opts, target);
  300|  4.61k|}

rdata.c:fromwire_nid:
   80|  1.29k|fromwire_nid(ARGS_FROMWIRE) {
   81|  1.29k|	isc_region_t sregion;
   82|       |
   83|  1.29k|	REQUIRE(type == dns_rdatatype_nid);
  ------------------
  |  |  198|  1.29k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.29k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.29k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|       |
   85|  1.29k|	UNUSED(type);
  ------------------
  |  |   69|  1.29k|#define UNUSED(x) (void)(x)
  ------------------
   86|  1.29k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.29k|#define UNUSED(x) (void)(x)
  ------------------
   87|  1.29k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.29k|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|  1.29k|	isc_buffer_activeregion(source, &sregion);
   90|  1.29k|	if (sregion.length != 10) {
  ------------------
  |  Branch (90:6): [True: 6, False: 1.29k]
  ------------------
   91|      6|		return DNS_R_FORMERR;
   92|      6|	}
   93|  1.29k|	isc_buffer_forward(source, sregion.length);
   94|  1.29k|	return mem_tobuffer(target, sregion.base, sregion.length);
   95|  1.29k|}
rdata.c:towire_nid:
   98|    430|towire_nid(ARGS_TOWIRE) {
   99|    430|	REQUIRE(rdata->type == dns_rdatatype_nid);
  ------------------
  |  |  198|    430|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    430|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 430, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    430|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|    430|	REQUIRE(rdata->length == 10);
  ------------------
  |  |  198|    430|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    430|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 430, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    430|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|       |
  102|    430|	UNUSED(cctx);
  ------------------
  |  |   69|    430|#define UNUSED(x) (void)(x)
  ------------------
  103|       |
  104|    430|	return mem_tobuffer(target, rdata->data, rdata->length);
  105|    430|}
rdata.c:totext_nid:
   53|    849|totext_nid(ARGS_TOTEXT) {
   54|    849|	isc_region_t region;
   55|    849|	char buf[sizeof("xxxx:xxxx:xxxx:xxxx")];
   56|    849|	unsigned short num;
   57|       |
   58|    849|	REQUIRE(rdata->type == dns_rdatatype_nid);
  ------------------
  |  |  198|    849|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    849|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 849, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    849|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|    849|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    849|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    849|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 849, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    849|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|       |
   61|    849|	UNUSED(tctx);
  ------------------
  |  |   69|    849|#define UNUSED(x) (void)(x)
  ------------------
   62|       |
   63|    849|	dns_rdata_toregion(rdata, &region);
   64|    849|	num = uint16_fromregion(&region);
   65|    849|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    849|	do {                              \
  |  |   51|    849|		isc_region_t *_r = (r);   \
  |  |   52|    849|		unsigned int  _l = (l);   \
  |  |   53|    849|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    849|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    849|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 849, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    849|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    849|		_r->base += _l;           \
  |  |   55|    849|		_r->length -= _l;         \
  |  |   56|    849|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 849]
  |  |  ------------------
  ------------------
   66|    849|	snprintf(buf, sizeof(buf), "%u", num);
   67|    849|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    849|	{                                  \
  |  |  277|    849|		isc_result_t _r = (x);     \
  |  |  278|    849|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 849]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    849|	}
  ------------------
   68|       |
   69|    849|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    849|	{                                  \
  |  |  277|    849|		isc_result_t _r = (x);     \
  |  |  278|    849|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 849]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    849|	}
  ------------------
   70|       |
   71|    849|	snprintf(buf, sizeof(buf), "%x:%x:%x:%x",
   72|    849|		 region.base[0] << 8 | region.base[1],
   73|    849|		 region.base[2] << 8 | region.base[3],
   74|    849|		 region.base[4] << 8 | region.base[5],
   75|    849|		 region.base[6] << 8 | region.base[7]);
   76|    849|	return str_totext(buf, target);
   77|    849|}

rdata.c:fromwire_ninfo:
   35|    857|fromwire_ninfo(ARGS_FROMWIRE) {
   36|    857|	REQUIRE(type == dns_rdatatype_ninfo);
  ------------------
  |  |  198|    857|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    857|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 857, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    857|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|    857|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|    857|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|    857|}
rdata.c:towire_ninfo:
   42|    362|towire_ninfo(ARGS_TOWIRE) {
   43|    362|	REQUIRE(rdata->type == dns_rdatatype_ninfo);
  ------------------
  |  |  198|    362|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    362|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 362, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    362|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    362|	UNUSED(cctx);
  ------------------
  |  |   69|    362|#define UNUSED(x) (void)(x)
  ------------------
   46|       |
   47|    362|	return mem_tobuffer(target, rdata->data, rdata->length);
   48|    362|}
rdata.c:totext_ninfo:
   27|    714|totext_ninfo(ARGS_TOTEXT) {
   28|    714|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    714|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    714|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 714, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    714|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|    714|	REQUIRE(rdata->type == dns_rdatatype_ninfo);
  ------------------
  |  |  198|    714|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    714|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 714, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    714|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|    714|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|    714|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|    714|}

rdata.c:fromwire_ns:
   77|  5.75k|fromwire_ns(ARGS_FROMWIRE) {
   78|  5.75k|	dns_name_t name;
   79|       |
   80|  5.75k|	REQUIRE(type == dns_rdatatype_ns);
  ------------------
  |  |  198|  5.75k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.75k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.75k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.75k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   81|       |
   82|  5.75k|	UNUSED(type);
  ------------------
  |  |   69|  5.75k|#define UNUSED(x) (void)(x)
  ------------------
   83|  5.75k|	UNUSED(rdclass);
  ------------------
  |  |   69|  5.75k|#define UNUSED(x) (void)(x)
  ------------------
   84|       |
   85|  5.75k|	dctx = dns_decompress_setpermitted(dctx, true);
   86|       |
   87|  5.75k|	dns_name_init(&name);
   88|  5.75k|	return dns_name_fromwire(&name, source, dctx, target);
   89|  5.75k|}
rdata.c:towire_ns:
   92|  2.43k|towire_ns(ARGS_TOWIRE) {
   93|  2.43k|	dns_name_t name;
   94|  2.43k|	isc_region_t region;
   95|       |
   96|  2.43k|	REQUIRE(rdata->type == dns_rdatatype_ns);
  ------------------
  |  |  198|  2.43k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.43k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.43k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.43k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   97|  2.43k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.43k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.43k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.43k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.43k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   98|       |
   99|  2.43k|	dns_compress_setpermitted(cctx, true);
  100|       |
  101|  2.43k|	dns_name_init(&name);
  102|  2.43k|	dns_rdata_toregion(rdata, &region);
  103|  2.43k|	dns_name_fromregion(&name, &region);
  104|       |
  105|  2.43k|	return dns_name_towire(&name, cctx, target);
  106|  2.43k|}
rdata.c:totext_ns:
   56|  4.83k|totext_ns(ARGS_TOTEXT) {
   57|  4.83k|	isc_region_t region;
   58|  4.83k|	dns_name_t name;
   59|  4.83k|	dns_name_t prefix;
   60|  4.83k|	unsigned int opts;
   61|       |
   62|  4.83k|	REQUIRE(rdata->type == dns_rdatatype_ns);
  ------------------
  |  |  198|  4.83k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.83k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.83k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.83k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   63|  4.83k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  4.83k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.83k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.83k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.83k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   64|       |
   65|  4.83k|	dns_name_init(&name);
   66|  4.83k|	dns_name_init(&prefix);
   67|       |
   68|  4.83k|	dns_rdata_toregion(rdata, &region);
   69|  4.83k|	dns_name_fromregion(&name, &region);
   70|       |
   71|  4.83k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (71:9): [True: 0, False: 4.83k]
  ------------------
   72|  4.83k|							 : 0;
   73|  4.83k|	return dns_name_totext(&prefix, opts, target);
   74|  4.83k|}

rdata.c:fromwire_nsec3:
  196|  4.87k|fromwire_nsec3(ARGS_FROMWIRE) {
  197|  4.87k|	isc_region_t sr, rr;
  198|  4.87k|	unsigned int hash, saltlen, hashlen;
  199|       |
  200|  4.87k|	REQUIRE(type == dns_rdatatype_nsec3);
  ------------------
  |  |  198|  4.87k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.87k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.87k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.87k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  201|       |
  202|  4.87k|	UNUSED(type);
  ------------------
  |  |   69|  4.87k|#define UNUSED(x) (void)(x)
  ------------------
  203|  4.87k|	UNUSED(rdclass);
  ------------------
  |  |   69|  4.87k|#define UNUSED(x) (void)(x)
  ------------------
  204|  4.87k|	UNUSED(dctx);
  ------------------
  |  |   69|  4.87k|#define UNUSED(x) (void)(x)
  ------------------
  205|       |
  206|  4.87k|	isc_buffer_activeregion(source, &sr);
  207|  4.87k|	rr = sr;
  208|       |
  209|       |	/* hash(1), flags(1), iteration(2), saltlen(1) */
  210|  4.87k|	if (sr.length < 5U) {
  ------------------
  |  Branch (210:6): [True: 4, False: 4.87k]
  ------------------
  211|      4|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      4|	{                                  \
  |  |  277|      4|		isc_result_t _r = (x);     \
  |  |  278|      4|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 4, False: 0]
  |  |  ------------------
  |  |  279|      4|			return ((_r));     \
  |  |  280|      4|		}                          \
  |  |  281|      4|	}
  ------------------
  212|      0|	}
  213|  4.87k|	hash = sr.base[0];
  214|  4.87k|	saltlen = sr.base[4];
  215|  4.87k|	isc_region_consume(&sr, 5);
  ------------------
  |  |   50|  4.87k|	do {                              \
  |  |   51|  4.87k|		isc_region_t *_r = (r);   \
  |  |   52|  4.87k|		unsigned int  _l = (l);   \
  |  |   53|  4.87k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.87k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.87k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.87k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.87k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.87k|		_r->base += _l;           \
  |  |   55|  4.87k|		_r->length -= _l;         \
  |  |   56|  4.87k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.87k]
  |  |  ------------------
  ------------------
  216|       |
  217|  4.87k|	if (sr.length < saltlen) {
  ------------------
  |  Branch (217:6): [True: 6, False: 4.86k]
  ------------------
  218|      6|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      6|	{                                  \
  |  |  277|      6|		isc_result_t _r = (x);     \
  |  |  278|      6|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 6, False: 0]
  |  |  ------------------
  |  |  279|      6|			return ((_r));     \
  |  |  280|      6|		}                          \
  |  |  281|      6|	}
  ------------------
  219|      0|	}
  220|  4.86k|	isc_region_consume(&sr, saltlen);
  ------------------
  |  |   50|  4.86k|	do {                              \
  |  |   51|  4.86k|		isc_region_t *_r = (r);   \
  |  |   52|  4.86k|		unsigned int  _l = (l);   \
  |  |   53|  4.86k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.86k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.86k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.86k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.86k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.86k|		_r->base += _l;           \
  |  |   55|  4.86k|		_r->length -= _l;         \
  |  |   56|  4.86k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.86k]
  |  |  ------------------
  ------------------
  221|       |
  222|  4.86k|	if (sr.length < 1U) {
  ------------------
  |  Branch (222:6): [True: 1, False: 4.86k]
  ------------------
  223|      1|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      1|	{                                  \
  |  |  277|      1|		isc_result_t _r = (x);     \
  |  |  278|      1|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 0]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|      1|	}
  ------------------
  224|      0|	}
  225|  4.86k|	hashlen = sr.base[0];
  226|  4.86k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.86k|	do {                              \
  |  |   51|  4.86k|		isc_region_t *_r = (r);   \
  |  |   52|  4.86k|		unsigned int  _l = (l);   \
  |  |   53|  4.86k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.86k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.86k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.86k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.86k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.86k|		_r->base += _l;           \
  |  |   55|  4.86k|		_r->length -= _l;         \
  |  |   56|  4.86k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.86k]
  |  |  ------------------
  ------------------
  227|       |
  228|  4.86k|	switch (hash) {
  229|  1.28k|	case dns_hash_sha1:
  ------------------
  |  Branch (229:2): [True: 1.28k, False: 3.58k]
  ------------------
  230|  1.28k|		if (hashlen != ISC_SHA1_DIGESTLENGTH || sr.length < hashlen) {
  ------------------
  |  |   50|  2.57k|#define ISC_SHA1_DIGESTLENGTH	20
  ------------------
  |  Branch (230:7): [True: 12, False: 1.27k]
  |  Branch (230:43): [True: 1, False: 1.27k]
  ------------------
  231|     13|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     13|	{                                  \
  |  |  277|     13|		isc_result_t _r = (x);     \
  |  |  278|     13|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 13, False: 0]
  |  |  ------------------
  |  |  279|     13|			return ((_r));     \
  |  |  280|     13|		}                          \
  |  |  281|     13|	}
  ------------------
  232|      0|		}
  233|  1.27k|		break;
  234|  3.58k|	default:
  ------------------
  |  Branch (234:2): [True: 3.58k, False: 1.28k]
  ------------------
  235|  3.58k|		if (hashlen < 1 || hashlen > NSEC3_MAX_HASH_LENGTH ||
  ------------------
  |  |   34|  7.15k|#define NSEC3_MAX_HASH_LENGTH 39
  ------------------
  |  Branch (235:7): [True: 2, False: 3.57k]
  |  Branch (235:22): [True: 2, False: 3.57k]
  ------------------
  236|  3.57k|		    sr.length < hashlen)
  ------------------
  |  Branch (236:7): [True: 9, False: 3.56k]
  ------------------
  237|     13|		{
  238|     13|			RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     13|	{                                  \
  |  |  277|     13|		isc_result_t _r = (x);     \
  |  |  278|     13|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 13, False: 0]
  |  |  ------------------
  |  |  279|     13|			return ((_r));     \
  |  |  280|     13|		}                          \
  |  |  281|     13|	}
  ------------------
  239|      0|		}
  240|  3.56k|		break;
  241|  4.86k|	}
  242|  4.84k|	isc_region_consume(&sr, hashlen);
  ------------------
  |  |   50|  4.84k|	do {                              \
  |  |   51|  4.84k|		isc_region_t *_r = (r);   \
  |  |   52|  4.84k|		unsigned int  _l = (l);   \
  |  |   53|  4.84k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.84k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.84k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.84k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.84k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.84k|		_r->base += _l;           \
  |  |   55|  4.84k|		_r->length -= _l;         \
  |  |   56|  4.84k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.84k]
  |  |  ------------------
  ------------------
  243|       |
  244|  4.84k|	RETERR(typemap_test(&sr, true));
  ------------------
  |  |  276|  4.84k|	{                                  \
  |  |  277|  4.84k|		isc_result_t _r = (x);     \
  |  |  278|  4.84k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 29, False: 4.81k]
  |  |  ------------------
  |  |  279|     29|			return ((_r));     \
  |  |  280|     29|		}                          \
  |  |  281|  4.84k|	}
  ------------------
  245|       |
  246|  4.81k|	RETERR(mem_tobuffer(target, rr.base, rr.length));
  ------------------
  |  |  276|  4.81k|	{                                  \
  |  |  277|  4.81k|		isc_result_t _r = (x);     \
  |  |  278|  4.81k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 134, False: 4.67k]
  |  |  ------------------
  |  |  279|    134|			return ((_r));     \
  |  |  280|    134|		}                          \
  |  |  281|  4.81k|	}
  ------------------
  247|  4.67k|	isc_buffer_forward(source, rr.length);
  248|  4.67k|	return ISC_R_SUCCESS;
  249|  4.81k|}
rdata.c:towire_nsec3:
  252|  2.12k|towire_nsec3(ARGS_TOWIRE) {
  253|  2.12k|	isc_region_t sr;
  254|       |
  255|  2.12k|	REQUIRE(rdata->type == dns_rdatatype_nsec3);
  ------------------
  |  |  198|  2.12k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.12k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.12k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.12k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  256|  2.12k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.12k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.12k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.12k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.12k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  257|       |
  258|  2.12k|	UNUSED(cctx);
  ------------------
  |  |   69|  2.12k|#define UNUSED(x) (void)(x)
  ------------------
  259|       |
  260|  2.12k|	dns_rdata_toregion(rdata, &sr);
  261|  2.12k|	return mem_tobuffer(target, sr.base, sr.length);
  262|  2.12k|}
rdata.c:totext_nsec3:
  120|  4.19k|totext_nsec3(ARGS_TOTEXT) {
  121|  4.19k|	isc_region_t sr;
  122|  4.19k|	unsigned int i, j;
  123|  4.19k|	unsigned char hash;
  124|  4.19k|	unsigned char flags;
  125|  4.19k|	char buf[sizeof("TYPE65535")];
  126|  4.19k|	uint32_t iterations;
  127|       |
  128|  4.19k|	REQUIRE(rdata->type == dns_rdatatype_nsec3);
  ------------------
  |  |  198|  4.19k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.19k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.19k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  129|  4.19k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  4.19k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.19k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.19k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|       |
  131|  4.19k|	dns_rdata_toregion(rdata, &sr);
  132|       |
  133|       |	/* Hash */
  134|  4.19k|	hash = uint8_fromregion(&sr);
  135|  4.19k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.19k|	do {                              \
  |  |   51|  4.19k|		isc_region_t *_r = (r);   \
  |  |   52|  4.19k|		unsigned int  _l = (l);   \
  |  |   53|  4.19k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.19k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.19k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.19k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.19k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.19k|		_r->base += _l;           \
  |  |   55|  4.19k|		_r->length -= _l;         \
  |  |   56|  4.19k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.19k]
  |  |  ------------------
  ------------------
  136|  4.19k|	snprintf(buf, sizeof(buf), "%u ", hash);
  137|  4.19k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.19k|	{                                  \
  |  |  277|  4.19k|		isc_result_t _r = (x);     \
  |  |  278|  4.19k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.19k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.19k|	}
  ------------------
  138|       |
  139|       |	/* Flags */
  140|  4.19k|	flags = uint8_fromregion(&sr);
  141|  4.19k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.19k|	do {                              \
  |  |   51|  4.19k|		isc_region_t *_r = (r);   \
  |  |   52|  4.19k|		unsigned int  _l = (l);   \
  |  |   53|  4.19k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.19k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.19k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.19k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.19k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.19k|		_r->base += _l;           \
  |  |   55|  4.19k|		_r->length -= _l;         \
  |  |   56|  4.19k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.19k]
  |  |  ------------------
  ------------------
  142|  4.19k|	snprintf(buf, sizeof(buf), "%u ", flags);
  143|  4.19k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.19k|	{                                  \
  |  |  277|  4.19k|		isc_result_t _r = (x);     \
  |  |  278|  4.19k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.19k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.19k|	}
  ------------------
  144|       |
  145|       |	/* Iterations */
  146|  4.19k|	iterations = uint16_fromregion(&sr);
  147|  4.19k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  4.19k|	do {                              \
  |  |   51|  4.19k|		isc_region_t *_r = (r);   \
  |  |   52|  4.19k|		unsigned int  _l = (l);   \
  |  |   53|  4.19k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.19k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.19k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.19k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.19k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.19k|		_r->base += _l;           \
  |  |   55|  4.19k|		_r->length -= _l;         \
  |  |   56|  4.19k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.19k]
  |  |  ------------------
  ------------------
  148|  4.19k|	snprintf(buf, sizeof(buf), "%u ", iterations);
  149|  4.19k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.19k|	{                                  \
  |  |  277|  4.19k|		isc_result_t _r = (x);     \
  |  |  278|  4.19k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.19k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.19k|	}
  ------------------
  150|       |
  151|       |	/* Salt */
  152|  4.19k|	j = uint8_fromregion(&sr);
  153|  4.19k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.19k|	do {                              \
  |  |   51|  4.19k|		isc_region_t *_r = (r);   \
  |  |   52|  4.19k|		unsigned int  _l = (l);   \
  |  |   53|  4.19k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.19k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.19k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.19k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.19k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.19k|		_r->base += _l;           \
  |  |   55|  4.19k|		_r->length -= _l;         \
  |  |   56|  4.19k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.19k]
  |  |  ------------------
  ------------------
  154|  4.19k|	INSIST(j <= sr.length);
  ------------------
  |  |  202|  4.19k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  4.19k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 4.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  4.19k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  155|       |
  156|  4.19k|	if (j != 0) {
  ------------------
  |  Branch (156:6): [True: 1.76k, False: 2.43k]
  ------------------
  157|  1.76k|		i = sr.length;
  158|  1.76k|		sr.length = j;
  159|  1.76k|		RETERR(isc_hex_totext(&sr, 1, "", target));
  ------------------
  |  |  276|  1.76k|	{                                  \
  |  |  277|  1.76k|		isc_result_t _r = (x);     \
  |  |  278|  1.76k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.76k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.76k|	}
  ------------------
  160|  1.76k|		sr.length = i - j;
  161|  2.43k|	} else {
  162|  2.43k|		RETERR(str_totext("-", target));
  ------------------
  |  |  276|  2.43k|	{                                  \
  |  |  277|  2.43k|		isc_result_t _r = (x);     \
  |  |  278|  2.43k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.43k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.43k|	}
  ------------------
  163|  2.43k|	}
  164|       |
  165|  4.19k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  4.19k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (165:6): [True: 0, False: 4.19k]
  ------------------
  166|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  167|      0|	}
  168|  4.19k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  4.19k|	{                                  \
  |  |  277|  4.19k|		isc_result_t _r = (x);     \
  |  |  278|  4.19k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.19k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.19k|	}
  ------------------
  169|       |
  170|       |	/* Next hash */
  171|  4.19k|	j = uint8_fromregion(&sr);
  172|  4.19k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.19k|	do {                              \
  |  |   51|  4.19k|		isc_region_t *_r = (r);   \
  |  |   52|  4.19k|		unsigned int  _l = (l);   \
  |  |   53|  4.19k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.19k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.19k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.19k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.19k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.19k|		_r->base += _l;           \
  |  |   55|  4.19k|		_r->length -= _l;         \
  |  |   56|  4.19k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.19k]
  |  |  ------------------
  ------------------
  173|  4.19k|	INSIST(j <= sr.length);
  ------------------
  |  |  202|  4.19k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  4.19k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 4.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  4.19k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  174|       |
  175|  4.19k|	i = sr.length;
  176|  4.19k|	sr.length = j;
  177|  4.19k|	RETERR(isc_base32hexnp_totext(&sr, 1, "", target));
  ------------------
  |  |  276|  4.19k|	{                                  \
  |  |  277|  4.19k|		isc_result_t _r = (x);     \
  |  |  278|  4.19k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.19k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.19k|	}
  ------------------
  178|  4.19k|	sr.length = i - j;
  179|       |
  180|       |	/*
  181|       |	 * Don't leave a trailing space when there's no typemap present.
  182|       |	 */
  183|  4.19k|	if (((tctx->flags & DNS_STYLEFLAG_MULTILINE) == 0) && (sr.length > 0)) {
  ------------------
  |  |  191|  4.19k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (183:6): [True: 4.19k, False: 0]
  |  Branch (183:56): [True: 1.46k, False: 2.73k]
  ------------------
  184|  1.46k|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.46k|	{                                  \
  |  |  277|  1.46k|		isc_result_t _r = (x);     \
  |  |  278|  1.46k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.46k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.46k|	}
  ------------------
  185|  1.46k|	}
  186|  4.19k|	RETERR(typemap_totext(&sr, tctx, target));
  ------------------
  |  |  276|  4.19k|	{                                  \
  |  |  277|  4.19k|		isc_result_t _r = (x);     \
  |  |  278|  4.19k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.19k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.19k|	}
  ------------------
  187|       |
  188|  4.19k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  4.19k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (188:6): [True: 0, False: 4.19k]
  ------------------
  189|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  190|      0|	}
  191|       |
  192|  4.19k|	return ISC_R_SUCCESS;
  193|  4.19k|}
rdata.c:checkowner_nsec3:
  395|  5.66k|checkowner_nsec3(ARGS_CHECKOWNER) {
  396|  5.66k|	unsigned char owner[NSEC3_MAX_HASH_LENGTH];
  397|  5.66k|	isc_buffer_t buffer;
  398|  5.66k|	dns_label_t label;
  399|       |
  400|  5.66k|	REQUIRE(type == dns_rdatatype_nsec3);
  ------------------
  |  |  198|  5.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.66k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  401|       |
  402|  5.66k|	UNUSED(type);
  ------------------
  |  |   69|  5.66k|#define UNUSED(x) (void)(x)
  ------------------
  403|  5.66k|	UNUSED(rdclass);
  ------------------
  |  |   69|  5.66k|#define UNUSED(x) (void)(x)
  ------------------
  404|  5.66k|	UNUSED(wildcard);
  ------------------
  |  |   69|  5.66k|#define UNUSED(x) (void)(x)
  ------------------
  405|       |
  406|       |	/*
  407|       |	 * First label is a base32hex string without padding.
  408|       |	 */
  409|  5.66k|	dns_name_getlabel(name, 0, &label);
  410|  5.66k|	isc_region_consume(&label, 1);
  ------------------
  |  |   50|  5.66k|	do {                              \
  |  |   51|  5.66k|		isc_region_t *_r = (r);   \
  |  |   52|  5.66k|		unsigned int  _l = (l);   \
  |  |   53|  5.66k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  5.66k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  5.66k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 5.66k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  5.66k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  5.66k|		_r->base += _l;           \
  |  |   55|  5.66k|		_r->length -= _l;         \
  |  |   56|  5.66k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 5.66k]
  |  |  ------------------
  ------------------
  411|  5.66k|	isc_buffer_init(&buffer, owner, sizeof(owner));
  412|  5.66k|	if (isc_base32hexnp_decoderegion(&label, &buffer) == ISC_R_SUCCESS) {
  ------------------
  |  Branch (412:6): [True: 5.64k, False: 18]
  ------------------
  413|  5.64k|		return true;
  414|  5.64k|	}
  415|       |
  416|     18|	return false;
  417|  5.66k|}

rdata.c:fromwire_nsec3param:
  144|  1.18k|fromwire_nsec3param(ARGS_FROMWIRE) {
  145|  1.18k|	isc_region_t sr, rr;
  146|  1.18k|	unsigned int saltlen;
  147|       |
  148|  1.18k|	REQUIRE(type == dns_rdatatype_nsec3param);
  ------------------
  |  |  198|  1.18k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.18k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.18k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  149|       |
  150|  1.18k|	UNUSED(type);
  ------------------
  |  |   69|  1.18k|#define UNUSED(x) (void)(x)
  ------------------
  151|  1.18k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.18k|#define UNUSED(x) (void)(x)
  ------------------
  152|  1.18k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.18k|#define UNUSED(x) (void)(x)
  ------------------
  153|       |
  154|  1.18k|	isc_buffer_activeregion(source, &sr);
  155|  1.18k|	rr = sr;
  156|       |
  157|       |	/* hash(1), flags(1), iterations(2), saltlen(1) */
  158|  1.18k|	if (sr.length < 5U) {
  ------------------
  |  Branch (158:6): [True: 6, False: 1.18k]
  ------------------
  159|      6|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|      6|	{                                  \
  |  |  277|      6|		isc_result_t _r = (x);     \
  |  |  278|      6|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 6, False: 0]
  |  |  ------------------
  |  |  279|      6|			return ((_r));     \
  |  |  280|      6|		}                          \
  |  |  281|      6|	}
  ------------------
  160|      0|	}
  161|  1.18k|	saltlen = sr.base[4];
  162|  1.18k|	isc_region_consume(&sr, 5);
  ------------------
  |  |   50|  1.18k|	do {                              \
  |  |   51|  1.18k|		isc_region_t *_r = (r);   \
  |  |   52|  1.18k|		unsigned int  _l = (l);   \
  |  |   53|  1.18k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.18k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.18k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.18k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.18k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.18k|		_r->base += _l;           \
  |  |   55|  1.18k|		_r->length -= _l;         \
  |  |   56|  1.18k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.18k]
  |  |  ------------------
  ------------------
  163|       |
  164|  1.18k|	if (sr.length != saltlen) {
  ------------------
  |  Branch (164:6): [True: 16, False: 1.16k]
  ------------------
  165|     16|		RETERR(DNS_R_FORMERR);
  ------------------
  |  |  276|     16|	{                                  \
  |  |  277|     16|		isc_result_t _r = (x);     \
  |  |  278|     16|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 16, False: 0]
  |  |  ------------------
  |  |  279|     16|			return ((_r));     \
  |  |  280|     16|		}                          \
  |  |  281|     16|	}
  ------------------
  166|      0|	}
  167|  1.16k|	isc_region_consume(&sr, saltlen);
  ------------------
  |  |   50|  1.16k|	do {                              \
  |  |   51|  1.16k|		isc_region_t *_r = (r);   \
  |  |   52|  1.16k|		unsigned int  _l = (l);   \
  |  |   53|  1.16k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.16k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.16k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.16k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.16k|		_r->base += _l;           \
  |  |   55|  1.16k|		_r->length -= _l;         \
  |  |   56|  1.16k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.16k]
  |  |  ------------------
  ------------------
  168|  1.16k|	RETERR(mem_tobuffer(target, rr.base, rr.length));
  ------------------
  |  |  276|  1.16k|	{                                  \
  |  |  277|  1.16k|		isc_result_t _r = (x);     \
  |  |  278|  1.16k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 79, False: 1.08k]
  |  |  ------------------
  |  |  279|     79|			return ((_r));     \
  |  |  280|     79|		}                          \
  |  |  281|  1.16k|	}
  ------------------
  169|  1.08k|	isc_buffer_forward(source, rr.length);
  170|  1.08k|	return ISC_R_SUCCESS;
  171|  1.16k|}
rdata.c:towire_nsec3param:
  174|    508|towire_nsec3param(ARGS_TOWIRE) {
  175|    508|	isc_region_t sr;
  176|       |
  177|    508|	REQUIRE(rdata->type == dns_rdatatype_nsec3param);
  ------------------
  |  |  198|    508|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    508|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 508, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    508|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  178|    508|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    508|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    508|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 508, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    508|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  179|       |
  180|    508|	UNUSED(cctx);
  ------------------
  |  |   69|    508|#define UNUSED(x) (void)(x)
  ------------------
  181|       |
  182|    508|	dns_rdata_toregion(rdata, &sr);
  183|    508|	return mem_tobuffer(target, sr.base, sr.length);
  184|    508|}
rdata.c:totext_nsec3param:
   94|  1.00k|totext_nsec3param(ARGS_TOTEXT) {
   95|  1.00k|	isc_region_t sr;
   96|  1.00k|	unsigned int i, j;
   97|  1.00k|	unsigned char hash;
   98|  1.00k|	unsigned char flags;
   99|  1.00k|	char buf[sizeof("65535 ")];
  100|  1.00k|	uint32_t iterations;
  101|       |
  102|  1.00k|	REQUIRE(rdata->type == dns_rdatatype_nsec3param);
  ------------------
  |  |  198|  1.00k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.00k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.00k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  103|  1.00k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.00k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.00k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.00k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|       |
  105|  1.00k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.00k|#define UNUSED(x) (void)(x)
  ------------------
  106|       |
  107|  1.00k|	dns_rdata_toregion(rdata, &sr);
  108|       |
  109|  1.00k|	hash = uint8_fromregion(&sr);
  110|  1.00k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.00k|	do {                              \
  |  |   51|  1.00k|		isc_region_t *_r = (r);   \
  |  |   52|  1.00k|		unsigned int  _l = (l);   \
  |  |   53|  1.00k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.00k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.00k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.00k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.00k|		_r->base += _l;           \
  |  |   55|  1.00k|		_r->length -= _l;         \
  |  |   56|  1.00k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.00k]
  |  |  ------------------
  ------------------
  111|       |
  112|  1.00k|	flags = uint8_fromregion(&sr);
  113|  1.00k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.00k|	do {                              \
  |  |   51|  1.00k|		isc_region_t *_r = (r);   \
  |  |   52|  1.00k|		unsigned int  _l = (l);   \
  |  |   53|  1.00k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.00k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.00k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.00k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.00k|		_r->base += _l;           \
  |  |   55|  1.00k|		_r->length -= _l;         \
  |  |   56|  1.00k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.00k]
  |  |  ------------------
  ------------------
  114|       |
  115|  1.00k|	iterations = uint16_fromregion(&sr);
  116|  1.00k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.00k|	do {                              \
  |  |   51|  1.00k|		isc_region_t *_r = (r);   \
  |  |   52|  1.00k|		unsigned int  _l = (l);   \
  |  |   53|  1.00k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.00k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.00k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.00k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.00k|		_r->base += _l;           \
  |  |   55|  1.00k|		_r->length -= _l;         \
  |  |   56|  1.00k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.00k]
  |  |  ------------------
  ------------------
  117|       |
  118|  1.00k|	snprintf(buf, sizeof(buf), "%u ", hash);
  119|  1.00k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.00k|	{                                  \
  |  |  277|  1.00k|		isc_result_t _r = (x);     \
  |  |  278|  1.00k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.00k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.00k|	}
  ------------------
  120|       |
  121|  1.00k|	snprintf(buf, sizeof(buf), "%u ", flags);
  122|  1.00k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.00k|	{                                  \
  |  |  277|  1.00k|		isc_result_t _r = (x);     \
  |  |  278|  1.00k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.00k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.00k|	}
  ------------------
  123|       |
  124|  1.00k|	snprintf(buf, sizeof(buf), "%u ", iterations);
  125|  1.00k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.00k|	{                                  \
  |  |  277|  1.00k|		isc_result_t _r = (x);     \
  |  |  278|  1.00k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.00k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.00k|	}
  ------------------
  126|       |
  127|  1.00k|	j = uint8_fromregion(&sr);
  128|  1.00k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.00k|	do {                              \
  |  |   51|  1.00k|		isc_region_t *_r = (r);   \
  |  |   52|  1.00k|		unsigned int  _l = (l);   \
  |  |   53|  1.00k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.00k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.00k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.00k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.00k|		_r->base += _l;           \
  |  |   55|  1.00k|		_r->length -= _l;         \
  |  |   56|  1.00k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.00k]
  |  |  ------------------
  ------------------
  129|  1.00k|	INSIST(j <= sr.length);
  ------------------
  |  |  202|  1.00k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.00k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.00k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  130|       |
  131|  1.00k|	if (j != 0) {
  ------------------
  |  Branch (131:6): [True: 537, False: 465]
  ------------------
  132|    537|		i = sr.length;
  133|    537|		sr.length = j;
  134|    537|		RETERR(isc_hex_totext(&sr, 1, "", target));
  ------------------
  |  |  276|    537|	{                                  \
  |  |  277|    537|		isc_result_t _r = (x);     \
  |  |  278|    537|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 537]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    537|	}
  ------------------
  135|    537|		sr.length = i - j;
  136|    537|	} else {
  137|    465|		RETERR(str_totext("-", target));
  ------------------
  |  |  276|    465|	{                                  \
  |  |  277|    465|		isc_result_t _r = (x);     \
  |  |  278|    465|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 465]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    465|	}
  ------------------
  138|    465|	}
  139|       |
  140|  1.00k|	return ISC_R_SUCCESS;
  141|  1.00k|}

rdata.c:fromwire_nsec:
   77|  2.47k|fromwire_nsec(ARGS_FROMWIRE) {
   78|  2.47k|	isc_region_t sr;
   79|  2.47k|	dns_name_t name;
   80|       |
   81|  2.47k|	REQUIRE(type == dns_rdatatype_nsec);
  ------------------
  |  |  198|  2.47k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.47k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.47k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.47k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   82|       |
   83|  2.47k|	UNUSED(type);
  ------------------
  |  |   69|  2.47k|#define UNUSED(x) (void)(x)
  ------------------
   84|  2.47k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.47k|#define UNUSED(x) (void)(x)
  ------------------
   85|       |
   86|  2.47k|	dctx = dns_decompress_setpermitted(dctx, false);
   87|       |
   88|  2.47k|	dns_name_init(&name);
   89|  2.47k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  2.47k|	{                                  \
  |  |  277|  2.47k|		isc_result_t _r = (x);     \
  |  |  278|  2.47k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 27, False: 2.45k]
  |  |  ------------------
  |  |  279|     27|			return ((_r));     \
  |  |  280|     27|		}                          \
  |  |  281|  2.47k|	}
  ------------------
   90|       |
   91|  2.45k|	isc_buffer_activeregion(source, &sr);
   92|  2.45k|	RETERR(typemap_test(&sr, false));
  ------------------
  |  |  276|  2.45k|	{                                  \
  |  |  277|  2.45k|		isc_result_t _r = (x);     \
  |  |  278|  2.45k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 34, False: 2.41k]
  |  |  ------------------
  |  |  279|     34|			return ((_r));     \
  |  |  280|     34|		}                          \
  |  |  281|  2.45k|	}
  ------------------
   93|  2.41k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  2.41k|	{                                  \
  |  |  277|  2.41k|		isc_result_t _r = (x);     \
  |  |  278|  2.41k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 32, False: 2.38k]
  |  |  ------------------
  |  |  279|     32|			return ((_r));     \
  |  |  280|     32|		}                          \
  |  |  281|  2.41k|	}
  ------------------
   94|  2.38k|	isc_buffer_forward(source, sr.length);
   95|  2.38k|	return ISC_R_SUCCESS;
   96|  2.41k|}
rdata.c:towire_nsec:
   99|  1.14k|towire_nsec(ARGS_TOWIRE) {
  100|  1.14k|	isc_region_t sr;
  101|  1.14k|	dns_name_t name;
  102|       |
  103|  1.14k|	REQUIRE(rdata->type == dns_rdatatype_nsec);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|  1.14k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.14k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.14k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.14k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  105|       |
  106|  1.14k|	dns_compress_setpermitted(cctx, false);
  107|  1.14k|	dns_name_init(&name);
  108|  1.14k|	dns_rdata_toregion(rdata, &sr);
  109|  1.14k|	dns_name_fromregion(&name, &sr);
  110|  1.14k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  1.14k|	do {                              \
  |  |   51|  1.14k|		isc_region_t *_r = (r);   \
  |  |   52|  1.14k|		unsigned int  _l = (l);   \
  |  |   53|  1.14k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.14k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.14k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.14k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.14k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.14k|		_r->base += _l;           \
  |  |   55|  1.14k|		_r->length -= _l;         \
  |  |   56|  1.14k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.14k]
  |  |  ------------------
  ------------------
  111|  1.14k|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|  1.14k|	{                                  \
  |  |  277|  1.14k|		isc_result_t _r = (x);     \
  |  |  278|  1.14k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 1.13k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  1.14k|	}
  ------------------
  112|       |
  113|  1.13k|	return mem_tobuffer(target, sr.base, sr.length);
  114|  1.14k|}
rdata.c:totext_nsec:
   53|  2.21k|totext_nsec(ARGS_TOTEXT) {
   54|  2.21k|	isc_region_t sr;
   55|  2.21k|	dns_name_t name;
   56|       |
   57|  2.21k|	REQUIRE(rdata->type == dns_rdatatype_nsec);
  ------------------
  |  |  198|  2.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   58|  2.21k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.21k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.21k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.21k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.21k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|       |
   60|  2.21k|	UNUSED(tctx);
  ------------------
  |  |   69|  2.21k|#define UNUSED(x) (void)(x)
  ------------------
   61|       |
   62|  2.21k|	dns_name_init(&name);
   63|  2.21k|	dns_rdata_toregion(rdata, &sr);
   64|  2.21k|	dns_name_fromregion(&name, &sr);
   65|  2.21k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  2.21k|	do {                              \
  |  |   51|  2.21k|		isc_region_t *_r = (r);   \
  |  |   52|  2.21k|		unsigned int  _l = (l);   \
  |  |   53|  2.21k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.21k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.21k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.21k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.21k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.21k|		_r->base += _l;           \
  |  |   55|  2.21k|		_r->length -= _l;         \
  |  |   56|  2.21k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.21k]
  |  |  ------------------
  ------------------
   66|  2.21k|	RETERR(dns_name_totext(&name, 0, target));
  ------------------
  |  |  276|  2.21k|	{                                  \
  |  |  277|  2.21k|		isc_result_t _r = (x);     \
  |  |  278|  2.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.21k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.21k|	}
  ------------------
   67|       |	/*
   68|       |	 * Don't leave a trailing space when there's no typemap present.
   69|       |	 */
   70|  2.21k|	if (sr.length > 0) {
  ------------------
  |  Branch (70:6): [True: 2.21k, False: 0]
  ------------------
   71|  2.21k|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  2.21k|	{                                  \
  |  |  277|  2.21k|		isc_result_t _r = (x);     \
  |  |  278|  2.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.21k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.21k|	}
  ------------------
   72|  2.21k|	}
   73|  2.21k|	return typemap_totext(&sr, NULL, target);
   74|  2.21k|}

rdata.c:fromwire_null:
   42|  4.51k|fromwire_null(ARGS_FROMWIRE) {
   43|  4.51k|	isc_region_t sr;
   44|       |
   45|  4.51k|	REQUIRE(type == dns_rdatatype_null);
  ------------------
  |  |  198|  4.51k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.51k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.51k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.51k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   46|       |
   47|  4.51k|	UNUSED(type);
  ------------------
  |  |   69|  4.51k|#define UNUSED(x) (void)(x)
  ------------------
   48|  4.51k|	UNUSED(rdclass);
  ------------------
  |  |   69|  4.51k|#define UNUSED(x) (void)(x)
  ------------------
   49|  4.51k|	UNUSED(dctx);
  ------------------
  |  |   69|  4.51k|#define UNUSED(x) (void)(x)
  ------------------
   50|       |
   51|  4.51k|	isc_buffer_activeregion(source, &sr);
   52|  4.51k|	isc_buffer_forward(source, sr.length);
   53|  4.51k|	return mem_tobuffer(target, sr.base, sr.length);
   54|  4.51k|}
rdata.c:towire_null:
   57|  2.10k|towire_null(ARGS_TOWIRE) {
   58|  2.10k|	REQUIRE(rdata->type == dns_rdatatype_null);
  ------------------
  |  |  198|  2.10k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.10k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.10k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.10k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|       |
   60|  2.10k|	UNUSED(cctx);
  ------------------
  |  |   69|  2.10k|#define UNUSED(x) (void)(x)
  ------------------
   61|       |
   62|  2.10k|	return mem_tobuffer(target, rdata->data, rdata->length);
   63|  2.10k|}
rdata.c:totext_null:
   35|  4.19k|totext_null(ARGS_TOTEXT) {
   36|  4.19k|	REQUIRE(rdata->type == dns_rdatatype_null);
  ------------------
  |  |  198|  4.19k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.19k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.19k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  4.19k|	return unknown_totext(rdata, tctx, target);
   39|  4.19k|}

rdata.c:fromwire_nxt:
  136|  2.78k|fromwire_nxt(ARGS_FROMWIRE) {
  137|  2.78k|	isc_region_t sr;
  138|  2.78k|	dns_name_t name;
  139|       |
  140|  2.78k|	REQUIRE(type == dns_rdatatype_nxt);
  ------------------
  |  |  198|  2.78k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.78k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.78k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.78k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  141|       |
  142|  2.78k|	UNUSED(type);
  ------------------
  |  |   69|  2.78k|#define UNUSED(x) (void)(x)
  ------------------
  143|  2.78k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.78k|#define UNUSED(x) (void)(x)
  ------------------
  144|       |
  145|  2.78k|	dctx = dns_decompress_setpermitted(dctx, false);
  146|       |
  147|  2.78k|	dns_name_init(&name);
  148|  2.78k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  2.78k|	{                                  \
  |  |  277|  2.78k|		isc_result_t _r = (x);     \
  |  |  278|  2.78k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 94, False: 2.68k]
  |  |  ------------------
  |  |  279|     94|			return ((_r));     \
  |  |  280|     94|		}                          \
  |  |  281|  2.78k|	}
  ------------------
  149|       |
  150|  2.68k|	isc_buffer_activeregion(source, &sr);
  151|  2.68k|	if (sr.length > 0 && ((sr.base[0] & 0x80) != 0 || sr.length > 16 ||
  ------------------
  |  Branch (151:6): [True: 1.81k, False: 875]
  |  Branch (151:24): [True: 1, False: 1.81k]
  |  Branch (151:52): [True: 1, False: 1.81k]
  ------------------
  152|  1.81k|			      sr.base[sr.length - 1] == 0))
  ------------------
  |  Branch (152:10): [True: 2, False: 1.81k]
  ------------------
  153|      4|	{
  154|      4|		return DNS_R_BADBITMAP;
  155|      4|	}
  156|  2.68k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  2.68k|	{                                  \
  |  |  277|  2.68k|		isc_result_t _r = (x);     \
  |  |  278|  2.68k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 76, False: 2.60k]
  |  |  ------------------
  |  |  279|     76|			return ((_r));     \
  |  |  280|     76|		}                          \
  |  |  281|  2.68k|	}
  ------------------
  157|  2.60k|	isc_buffer_forward(source, sr.length);
  158|  2.60k|	return ISC_R_SUCCESS;
  159|  2.68k|}
rdata.c:towire_nxt:
  162|  1.31k|towire_nxt(ARGS_TOWIRE) {
  163|  1.31k|	isc_region_t sr;
  164|  1.31k|	dns_name_t name;
  165|       |
  166|  1.31k|	REQUIRE(rdata->type == dns_rdatatype_nxt);
  ------------------
  |  |  198|  1.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  167|  1.31k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.31k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.31k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  168|       |
  169|  1.31k|	dns_compress_setpermitted(cctx, false);
  170|  1.31k|	dns_name_init(&name);
  171|  1.31k|	dns_rdata_toregion(rdata, &sr);
  172|  1.31k|	dns_name_fromregion(&name, &sr);
  173|  1.31k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  1.31k|	do {                              \
  |  |   51|  1.31k|		isc_region_t *_r = (r);   \
  |  |   52|  1.31k|		unsigned int  _l = (l);   \
  |  |   53|  1.31k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.31k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.31k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.31k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.31k|		_r->base += _l;           \
  |  |   55|  1.31k|		_r->length -= _l;         \
  |  |   56|  1.31k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.31k]
  |  |  ------------------
  ------------------
  174|  1.31k|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|  1.31k|	{                                  \
  |  |  277|  1.31k|		isc_result_t _r = (x);     \
  |  |  278|  1.31k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 1.31k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  1.31k|	}
  ------------------
  175|       |
  176|  1.31k|	return mem_tobuffer(target, sr.base, sr.length);
  177|  1.31k|}
rdata.c:totext_nxt:
   90|  2.55k|totext_nxt(ARGS_TOTEXT) {
   91|  2.55k|	isc_region_t sr;
   92|  2.55k|	unsigned int i, j, opts;
   93|  2.55k|	dns_name_t name;
   94|  2.55k|	dns_name_t prefix;
   95|       |
   96|  2.55k|	REQUIRE(rdata->type == dns_rdatatype_nxt);
  ------------------
  |  |  198|  2.55k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.55k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.55k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.55k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   97|  2.55k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.55k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.55k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.55k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.55k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   98|       |
   99|  2.55k|	dns_name_init(&name);
  100|  2.55k|	dns_name_init(&prefix);
  101|  2.55k|	dns_rdata_toregion(rdata, &sr);
  102|  2.55k|	dns_name_fromregion(&name, &sr);
  103|  2.55k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  2.55k|	do {                              \
  |  |   51|  2.55k|		isc_region_t *_r = (r);   \
  |  |   52|  2.55k|		unsigned int  _l = (l);   \
  |  |   53|  2.55k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.55k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.55k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.55k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.55k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.55k|		_r->base += _l;           \
  |  |   55|  2.55k|		_r->length -= _l;         \
  |  |   56|  2.55k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.55k]
  |  |  ------------------
  ------------------
  104|  2.55k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (104:9): [True: 0, False: 2.55k]
  ------------------
  105|  2.55k|							 : 0;
  106|  2.55k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  2.55k|	{                                  \
  |  |  277|  2.55k|		isc_result_t _r = (x);     \
  |  |  278|  2.55k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.55k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.55k|	}
  ------------------
  107|       |
  108|  10.9k|	for (i = 0; i < sr.length; i++) {
  ------------------
  |  Branch (108:14): [True: 8.36k, False: 2.55k]
  ------------------
  109|  8.36k|		if (sr.base[i] != 0) {
  ------------------
  |  Branch (109:7): [True: 6.67k, False: 1.69k]
  ------------------
  110|  60.0k|			for (j = 0; j < 8; j++) {
  ------------------
  |  Branch (110:16): [True: 53.3k, False: 6.67k]
  ------------------
  111|  53.3k|				if ((sr.base[i] & (0x80 >> j)) != 0) {
  ------------------
  |  Branch (111:9): [True: 20.8k, False: 32.5k]
  ------------------
  112|  20.8k|					{
  113|  20.8k|						dns_rdatatype_t t = i * 8 + j;
  114|  20.8k|						RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  20.8k|	{                                  \
  |  |  277|  20.8k|		isc_result_t _r = (x);     \
  |  |  278|  20.8k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 20.8k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  20.8k|	}
  ------------------
  115|  20.8k|						if (dns_rdatatype_isknown(t)) {
  ------------------
  |  Branch (115:11): [True: 16.6k, False: 4.23k]
  ------------------
  116|  16.6k|							RETERR(dns_rdatatype_totext(
  ------------------
  |  |  276|  16.6k|	{                                  \
  |  |  277|  16.6k|		isc_result_t _r = (x);     \
  |  |  278|  16.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 16.6k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  16.6k|	}
  ------------------
  117|  16.6k|								t, target));
  118|  16.6k|						} else {
  119|  4.23k|							char buf[sizeof("6553"
  120|  4.23k|									"5")];
  121|  4.23k|							snprintf(buf,
  122|  4.23k|								 sizeof(buf),
  123|  4.23k|								 "%u", t);
  124|  4.23k|							RETERR(str_totext(
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  125|  4.23k|								buf, target));
  126|  4.23k|						}
  127|  20.8k|					}
  128|  20.8k|				}
  129|  53.3k|			}
  130|  6.67k|		}
  131|  8.36k|	}
  132|  2.55k|	return ISC_R_SUCCESS;
  133|  2.55k|}

rdata.c:fromwire_openpgpkey:
   70|  1.41k|fromwire_openpgpkey(ARGS_FROMWIRE) {
   71|  1.41k|	isc_region_t sr;
   72|       |
   73|  1.41k|	REQUIRE(type == dns_rdatatype_openpgpkey);
  ------------------
  |  |  198|  1.41k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.41k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.41k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   74|       |
   75|  1.41k|	UNUSED(type);
  ------------------
  |  |   69|  1.41k|#define UNUSED(x) (void)(x)
  ------------------
   76|  1.41k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.41k|#define UNUSED(x) (void)(x)
  ------------------
   77|  1.41k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.41k|#define UNUSED(x) (void)(x)
  ------------------
   78|       |
   79|       |	/*
   80|       |	 * Keyring.
   81|       |	 */
   82|  1.41k|	isc_buffer_activeregion(source, &sr);
   83|  1.41k|	if (sr.length < 1) {
  ------------------
  |  Branch (83:6): [True: 2, False: 1.41k]
  ------------------
   84|      2|		return ISC_R_UNEXPECTEDEND;
   85|      2|	}
   86|  1.41k|	isc_buffer_forward(source, sr.length);
   87|  1.41k|	return mem_tobuffer(target, sr.base, sr.length);
   88|  1.41k|}
rdata.c:towire_openpgpkey:
   91|    487|towire_openpgpkey(ARGS_TOWIRE) {
   92|    487|	isc_region_t sr;
   93|       |
   94|    487|	REQUIRE(rdata->type == dns_rdatatype_openpgpkey);
  ------------------
  |  |  198|    487|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    487|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 487, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    487|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   95|    487|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    487|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    487|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 487, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    487|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   96|       |
   97|    487|	UNUSED(cctx);
  ------------------
  |  |   69|    487|#define UNUSED(x) (void)(x)
  ------------------
   98|       |
   99|    487|	dns_rdata_toregion(rdata, &sr);
  100|    487|	return mem_tobuffer(target, sr.base, sr.length);
  101|    487|}
rdata.c:totext_openpgpkey:
   36|    964|totext_openpgpkey(ARGS_TOTEXT) {
   37|    964|	isc_region_t sr;
   38|       |
   39|    964|	REQUIRE(rdata->type == dns_rdatatype_openpgpkey);
  ------------------
  |  |  198|    964|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    964|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 964, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    964|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|    964|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    964|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    964|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 964, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    964|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|       |
   42|    964|	dns_rdata_toregion(rdata, &sr);
   43|       |
   44|       |	/*
   45|       |	 * Keyring
   46|       |	 */
   47|    964|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    964|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (47:6): [True: 0, False: 964]
  ------------------
   48|      0|		RETERR(str_totext("( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   49|      0|	}
   50|       |
   51|    964|	if ((tctx->flags & DNS_STYLEFLAG_NOCRYPTO) == 0) {
  ------------------
  |  |   95|    964|#define DNS_STYLEFLAG_NOCRYPTO 0x008000000ULL
  ------------------
  |  Branch (51:6): [True: 964, False: 0]
  ------------------
   52|    964|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (52:7): [True: 0, False: 964]
  ------------------
   53|      0|			RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   54|    964|		} else {
   55|    964|			RETERR(isc_base64_totext(&sr, tctx->width - 2,
  ------------------
  |  |  276|    964|	{                                  \
  |  |  277|    964|		isc_result_t _r = (x);     \
  |  |  278|    964|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 964]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    964|	}
  ------------------
   56|    964|						 tctx->linebreak, target));
   57|    964|		}
   58|    964|	} else {
   59|      0|		RETERR(str_totext("[omitted]", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   60|      0|	}
   61|       |
   62|    964|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    964|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (62:6): [True: 0, False: 964]
  ------------------
   63|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   64|      0|	}
   65|       |
   66|    964|	return ISC_R_SUCCESS;
   67|    964|}

rdata.c:compare_opt:
  313|  3.59k|compare_opt(ARGS_COMPARE) {
  314|  3.59k|	isc_region_t r1;
  315|  3.59k|	isc_region_t r2;
  316|       |
  317|  3.59k|	REQUIRE(rdata1->type == rdata2->type);
  ------------------
  |  |  198|  3.59k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.59k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.59k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.59k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  318|  3.59k|	REQUIRE(rdata1->rdclass == rdata2->rdclass);
  ------------------
  |  |  198|  3.59k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.59k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.59k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.59k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  319|  3.59k|	REQUIRE(rdata1->type == dns_rdatatype_opt);
  ------------------
  |  |  198|  3.59k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.59k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.59k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.59k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  320|       |
  321|  3.59k|	dns_rdata_toregion(rdata1, &r1);
  322|  3.59k|	dns_rdata_toregion(rdata2, &r2);
  323|  3.59k|	return isc_region_compare(&r1, &r2);
  324|  3.59k|}
rdata.c:fromwire_opt:
   95|  10.4k|fromwire_opt(ARGS_FROMWIRE) {
   96|  10.4k|	dns_fixedname_t fixed;
   97|  10.4k|	dns_name_t *name;
   98|  10.4k|	isc_buffer_t b;
   99|  10.4k|	isc_region_t sregion;
  100|  10.4k|	isc_region_t tregion;
  101|  10.4k|	isc_result_t result;
  102|  10.4k|	uint16_t length;
  103|  10.4k|	uint16_t opt;
  104|  10.4k|	unsigned int total;
  105|       |
  106|  10.4k|	REQUIRE(type == dns_rdatatype_opt);
  ------------------
  |  |  198|  10.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  10.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  10.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  107|       |
  108|  10.4k|	UNUSED(type);
  ------------------
  |  |   69|  10.4k|#define UNUSED(x) (void)(x)
  ------------------
  109|  10.4k|	UNUSED(rdclass);
  ------------------
  |  |   69|  10.4k|#define UNUSED(x) (void)(x)
  ------------------
  110|       |
  111|  10.4k|	dctx = dns_decompress_setpermitted(dctx, false);
  112|       |
  113|  10.4k|	isc_buffer_activeregion(source, &sregion);
  114|  10.4k|	if (sregion.length == 0) {
  ------------------
  |  Branch (114:6): [True: 5.47k, False: 4.97k]
  ------------------
  115|  5.47k|		return ISC_R_SUCCESS;
  116|  5.47k|	}
  117|  4.97k|	total = 0;
  118|   802k|	while (sregion.length != 0) {
  ------------------
  |  Branch (118:9): [True: 797k, False: 4.79k]
  ------------------
  119|   797k|		if (sregion.length < 4) {
  ------------------
  |  Branch (119:7): [True: 7, False: 797k]
  ------------------
  120|      7|			return ISC_R_UNEXPECTEDEND;
  121|      7|		}
  122|   797k|		opt = uint16_fromregion(&sregion);
  123|   797k|		isc_region_consume(&sregion, 2);
  ------------------
  |  |   50|   797k|	do {                              \
  |  |   51|   797k|		isc_region_t *_r = (r);   \
  |  |   52|   797k|		unsigned int  _l = (l);   \
  |  |   53|   797k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|   797k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|   797k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 797k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|   797k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|   797k|		_r->base += _l;           \
  |  |   55|   797k|		_r->length -= _l;         \
  |  |   56|   797k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 797k]
  |  |  ------------------
  ------------------
  124|   797k|		length = uint16_fromregion(&sregion);
  125|   797k|		isc_region_consume(&sregion, 2);
  ------------------
  |  |   50|   797k|	do {                              \
  |  |   51|   797k|		isc_region_t *_r = (r);   \
  |  |   52|   797k|		unsigned int  _l = (l);   \
  |  |   53|   797k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|   797k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|   797k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 797k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|   797k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|   797k|		_r->base += _l;           \
  |  |   55|   797k|		_r->length -= _l;         \
  |  |   56|   797k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 797k]
  |  |  ------------------
  ------------------
  126|   797k|		total += 4;
  127|   797k|		if (sregion.length < length) {
  ------------------
  |  Branch (127:7): [True: 23, False: 797k]
  ------------------
  128|     23|			return ISC_R_UNEXPECTEDEND;
  129|     23|		}
  130|   797k|		switch (opt) {
  131|  6.48k|		case DNS_OPT_LLQ:
  ------------------
  |  Branch (131:3): [True: 6.48k, False: 791k]
  ------------------
  132|  6.48k|			if (length != 18U) {
  ------------------
  |  Branch (132:8): [True: 6, False: 6.48k]
  ------------------
  133|      6|				return DNS_R_OPTERR;
  134|      6|			}
  135|  6.48k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  6.48k|	do {                              \
  |  |   51|  6.48k|		isc_region_t *_r = (r);   \
  |  |   52|  6.48k|		unsigned int  _l = (l);   \
  |  |   53|  6.48k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.48k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.48k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.48k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.48k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.48k|		_r->base += _l;           \
  |  |   55|  6.48k|		_r->length -= _l;         \
  |  |   56|  6.48k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.48k]
  |  |  ------------------
  ------------------
  136|  6.48k|			break;
  137|  21.0k|		case DNS_OPT_UL:
  ------------------
  |  Branch (137:3): [True: 21.0k, False: 776k]
  ------------------
  138|  21.0k|			if (length != 4U && length != 8U) {
  ------------------
  |  Branch (138:8): [True: 9.98k, False: 11.0k]
  |  Branch (138:24): [True: 7, False: 9.97k]
  ------------------
  139|      7|				return DNS_R_OPTERR;
  140|      7|			}
  141|  21.0k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  21.0k|	do {                              \
  |  |   51|  21.0k|		isc_region_t *_r = (r);   \
  |  |   52|  21.0k|		unsigned int  _l = (l);   \
  |  |   53|  21.0k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  21.0k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  21.0k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 21.0k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  21.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  21.0k|		_r->base += _l;           \
  |  |   55|  21.0k|		_r->length -= _l;         \
  |  |   56|  21.0k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 21.0k]
  |  |  ------------------
  ------------------
  142|  21.0k|			break;
  143|  24.9k|		case DNS_OPT_CLIENT_SUBNET: {
  ------------------
  |  Branch (143:3): [True: 24.9k, False: 772k]
  ------------------
  144|  24.9k|			uint16_t family;
  145|  24.9k|			uint8_t addrlen;
  146|  24.9k|			uint8_t scope;
  147|  24.9k|			uint8_t addrbytes;
  148|       |
  149|  24.9k|			if (length < 4) {
  ------------------
  |  Branch (149:8): [True: 3, False: 24.9k]
  ------------------
  150|      3|				return DNS_R_OPTERR;
  151|      3|			}
  152|  24.9k|			family = uint16_fromregion(&sregion);
  153|  24.9k|			isc_region_consume(&sregion, 2);
  ------------------
  |  |   50|  24.9k|	do {                              \
  |  |   51|  24.9k|		isc_region_t *_r = (r);   \
  |  |   52|  24.9k|		unsigned int  _l = (l);   \
  |  |   53|  24.9k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  24.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  24.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 24.9k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  24.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  24.9k|		_r->base += _l;           \
  |  |   55|  24.9k|		_r->length -= _l;         \
  |  |   56|  24.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 24.9k]
  |  |  ------------------
  ------------------
  154|  24.9k|			addrlen = uint8_fromregion(&sregion);
  155|  24.9k|			isc_region_consume(&sregion, 1);
  ------------------
  |  |   50|  24.9k|	do {                              \
  |  |   51|  24.9k|		isc_region_t *_r = (r);   \
  |  |   52|  24.9k|		unsigned int  _l = (l);   \
  |  |   53|  24.9k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  24.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  24.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 24.9k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  24.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  24.9k|		_r->base += _l;           \
  |  |   55|  24.9k|		_r->length -= _l;         \
  |  |   56|  24.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 24.9k]
  |  |  ------------------
  ------------------
  156|  24.9k|			scope = uint8_fromregion(&sregion);
  157|  24.9k|			isc_region_consume(&sregion, 1);
  ------------------
  |  |   50|  24.9k|	do {                              \
  |  |   51|  24.9k|		isc_region_t *_r = (r);   \
  |  |   52|  24.9k|		unsigned int  _l = (l);   \
  |  |   53|  24.9k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  24.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  24.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 24.9k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  24.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  24.9k|		_r->base += _l;           \
  |  |   55|  24.9k|		_r->length -= _l;         \
  |  |   56|  24.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 24.9k]
  |  |  ------------------
  ------------------
  158|       |
  159|  24.9k|			switch (family) {
  160|  9.61k|			case 0:
  ------------------
  |  Branch (160:4): [True: 9.61k, False: 15.3k]
  ------------------
  161|       |				/*
  162|       |				 * XXXMUKS: In queries and replies, if
  163|       |				 * FAMILY is set to 0, SOURCE
  164|       |				 * PREFIX-LENGTH and SCOPE PREFIX-LENGTH
  165|       |				 * must be 0 and ADDRESS should not be
  166|       |				 * present as the address and prefix
  167|       |				 * lengths don't make sense because the
  168|       |				 * family is unknown.
  169|       |				 */
  170|  9.61k|				if (addrlen != 0U || scope != 0U) {
  ------------------
  |  Branch (170:9): [True: 2, False: 9.61k]
  |  Branch (170:26): [True: 2, False: 9.61k]
  ------------------
  171|      4|					return DNS_R_OPTERR;
  172|      4|				}
  173|  9.61k|				break;
  174|  9.61k|			case 1:
  ------------------
  |  Branch (174:4): [True: 4.49k, False: 20.4k]
  ------------------
  175|  4.49k|				if (addrlen > 32U || scope > 32U) {
  ------------------
  |  Branch (175:9): [True: 3, False: 4.49k]
  |  Branch (175:26): [True: 1, False: 4.48k]
  ------------------
  176|      4|					return DNS_R_OPTERR;
  177|      4|				}
  178|  4.48k|				break;
  179|  10.8k|			case 2:
  ------------------
  |  Branch (179:4): [True: 10.8k, False: 14.1k]
  ------------------
  180|  10.8k|				if (addrlen > 128U || scope > 128U) {
  ------------------
  |  Branch (180:9): [True: 1, False: 10.8k]
  |  Branch (180:27): [True: 1, False: 10.8k]
  ------------------
  181|      2|					return DNS_R_OPTERR;
  182|      2|				}
  183|  10.8k|				break;
  184|  10.8k|			default:
  ------------------
  |  Branch (184:4): [True: 5, False: 24.9k]
  ------------------
  185|      5|				return DNS_R_OPTERR;
  186|  24.9k|			}
  187|  24.9k|			addrbytes = (addrlen + 7) / 8;
  188|  24.9k|			if (addrbytes + 4 != length) {
  ------------------
  |  Branch (188:8): [True: 15, False: 24.9k]
  ------------------
  189|     15|				return DNS_R_OPTERR;
  190|     15|			}
  191|       |
  192|  24.9k|			if (addrbytes != 0U && (addrlen % 8) != 0) {
  ------------------
  |  Branch (192:8): [True: 3.11k, False: 21.8k]
  |  Branch (192:27): [True: 2.93k, False: 181]
  ------------------
  193|  2.93k|				uint8_t bits = ~0U << (8 - (addrlen % 8));
  194|  2.93k|				bits &= sregion.base[addrbytes - 1];
  195|  2.93k|				if (bits != sregion.base[addrbytes - 1]) {
  ------------------
  |  Branch (195:9): [True: 1, False: 2.93k]
  ------------------
  196|      1|					return DNS_R_OPTERR;
  197|      1|				}
  198|  2.93k|			}
  199|  24.9k|			isc_region_consume(&sregion, addrbytes);
  ------------------
  |  |   50|  24.9k|	do {                              \
  |  |   51|  24.9k|		isc_region_t *_r = (r);   \
  |  |   52|  24.9k|		unsigned int  _l = (l);   \
  |  |   53|  24.9k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  24.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  24.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 24.9k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  24.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  24.9k|		_r->base += _l;           \
  |  |   55|  24.9k|		_r->length -= _l;         \
  |  |   56|  24.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 24.9k]
  |  |  ------------------
  ------------------
  200|  24.9k|			break;
  201|  24.9k|		}
  202|  32.1k|		case DNS_OPT_EXPIRE:
  ------------------
  |  Branch (202:3): [True: 32.1k, False: 765k]
  ------------------
  203|       |			/*
  204|       |			 * Request has zero length.  Response is 32 bits.
  205|       |			 */
  206|  32.1k|			if (length != 0 && length != 4) {
  ------------------
  |  Branch (206:8): [True: 21.8k, False: 10.3k]
  |  Branch (206:23): [True: 2, False: 21.8k]
  ------------------
  207|      2|				return DNS_R_OPTERR;
  208|      2|			}
  209|  32.1k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  32.1k|	do {                              \
  |  |   51|  32.1k|		isc_region_t *_r = (r);   \
  |  |   52|  32.1k|		unsigned int  _l = (l);   \
  |  |   53|  32.1k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  32.1k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  32.1k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 32.1k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  32.1k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  32.1k|		_r->base += _l;           \
  |  |   55|  32.1k|		_r->length -= _l;         \
  |  |   56|  32.1k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 32.1k]
  |  |  ------------------
  ------------------
  210|  32.1k|			break;
  211|  1.89k|		case DNS_OPT_COOKIE:
  ------------------
  |  Branch (211:3): [True: 1.89k, False: 795k]
  ------------------
  212|       |			/*
  213|       |			 * Client cookie alone has length 8.
  214|       |			 * Client + server cookie is 8 + [8..32].
  215|       |			 */
  216|  1.89k|			if (length != 8 && (length < 16 || length > 40)) {
  ------------------
  |  Branch (216:8): [True: 500, False: 1.39k]
  |  Branch (216:24): [True: 4, False: 496]
  |  Branch (216:39): [True: 5, False: 491]
  ------------------
  217|      9|				return DNS_R_OPTERR;
  218|      9|			}
  219|  1.88k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  1.88k|	do {                              \
  |  |   51|  1.88k|		isc_region_t *_r = (r);   \
  |  |   52|  1.88k|		unsigned int  _l = (l);   \
  |  |   53|  1.88k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.88k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.88k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.88k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.88k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.88k|		_r->base += _l;           \
  |  |   55|  1.88k|		_r->length -= _l;         \
  |  |   56|  1.88k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.88k]
  |  |  ------------------
  ------------------
  220|  1.88k|			break;
  221|  3.14k|		case DNS_OPT_KEY_TAG:
  ------------------
  |  Branch (221:3): [True: 3.14k, False: 794k]
  ------------------
  222|  3.14k|			if (length == 0 || (length % 2) != 0) {
  ------------------
  |  Branch (222:8): [True: 1, False: 3.13k]
  |  Branch (222:23): [True: 2, False: 3.13k]
  ------------------
  223|      3|				return DNS_R_OPTERR;
  224|      3|			}
  225|  3.13k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  3.13k|	do {                              \
  |  |   51|  3.13k|		isc_region_t *_r = (r);   \
  |  |   52|  3.13k|		unsigned int  _l = (l);   \
  |  |   53|  3.13k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.13k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.13k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.13k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.13k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.13k|		_r->base += _l;           \
  |  |   55|  3.13k|		_r->length -= _l;         \
  |  |   56|  3.13k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.13k]
  |  |  ------------------
  ------------------
  226|  3.13k|			break;
  227|  13.3k|		case DNS_OPT_EDE:
  ------------------
  |  Branch (227:3): [True: 13.3k, False: 784k]
  ------------------
  228|  13.3k|			if (length < 2) {
  ------------------
  |  Branch (228:8): [True: 1, False: 13.3k]
  ------------------
  229|      1|				return DNS_R_OPTERR;
  230|      1|			}
  231|       |			/* UTF-8 Byte Order Mark is not permitted. RFC 5198 */
  232|  13.3k|			if (isc_utf8_bom(sregion.base + 2, length - 2)) {
  ------------------
  |  Branch (232:8): [True: 1, False: 13.3k]
  ------------------
  233|      1|				return DNS_R_OPTERR;
  234|      1|			}
  235|       |			/*
  236|       |			 * The EXTRA-TEXT field is specified as UTF-8, and
  237|       |			 * therefore must be validated for correctness
  238|       |			 * according to RFC 3269 security considerations.
  239|       |			 */
  240|  13.3k|			if (!isc_utf8_valid(sregion.base + 2, length - 2)) {
  ------------------
  |  Branch (240:8): [True: 75, False: 13.2k]
  ------------------
  241|     75|				return DNS_R_OPTERR;
  242|     75|			}
  243|  13.2k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  13.2k|	do {                              \
  |  |   51|  13.2k|		isc_region_t *_r = (r);   \
  |  |   52|  13.2k|		unsigned int  _l = (l);   \
  |  |   53|  13.2k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  13.2k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  13.2k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 13.2k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  13.2k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  13.2k|		_r->base += _l;           \
  |  |   55|  13.2k|		_r->length -= _l;         \
  |  |   56|  13.2k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 13.2k]
  |  |  ------------------
  ------------------
  244|  13.2k|			break;
  245|    759|		case DNS_OPT_CLIENT_TAG:
  ------------------
  |  Branch (245:3): [True: 759, False: 796k]
  ------------------
  246|    759|			FALLTHROUGH;
  ------------------
  |  |  101|    759|#define FALLTHROUGH [[fallthrough]]
  ------------------
  247|  1.74k|		case DNS_OPT_SERVER_TAG:
  ------------------
  |  Branch (247:3): [True: 982, False: 796k]
  ------------------
  248|  1.74k|			if (length != 2) {
  ------------------
  |  Branch (248:8): [True: 5, False: 1.73k]
  ------------------
  249|      5|				return DNS_R_OPTERR;
  250|      5|			}
  251|  1.73k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  1.73k|	do {                              \
  |  |   51|  1.73k|		isc_region_t *_r = (r);   \
  |  |   52|  1.73k|		unsigned int  _l = (l);   \
  |  |   53|  1.73k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.73k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.73k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.73k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.73k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.73k|		_r->base += _l;           \
  |  |   55|  1.73k|		_r->length -= _l;         \
  |  |   56|  1.73k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.73k]
  |  |  ------------------
  ------------------
  252|  1.73k|			break;
  253|  2.93k|		case DNS_OPT_REPORT_CHANNEL:
  ------------------
  |  Branch (253:3): [True: 2.93k, False: 794k]
  ------------------
  254|       |			/* A domain name in wire format. RFC 9567 */
  255|  2.93k|			if (length == 0 || length > DNS_NAME_MAXWIRE) {
  ------------------
  |  |  190|  2.93k|#define DNS_NAME_MAXWIRE   255
  ------------------
  |  Branch (255:8): [True: 1, False: 2.93k]
  |  Branch (255:23): [True: 1, False: 2.93k]
  ------------------
  256|      2|				return DNS_R_OPTERR;
  257|      2|			}
  258|  2.93k|			isc_buffer_init(&b, sregion.base, length);
  259|  2.93k|			isc_buffer_add(&b, length);
  260|  2.93k|			name = dns_fixedname_initname(&fixed);
  261|  2.93k|			result = dns_name_fromwire(name, &b, dctx, NULL);
  262|  2.93k|			if (result != ISC_R_SUCCESS || name->length != length ||
  ------------------
  |  Branch (262:8): [True: 1, False: 2.92k]
  |  Branch (262:35): [True: 1, False: 2.92k]
  ------------------
  263|  2.92k|			    !dns_name_isabsolute(name))
  ------------------
  |  Branch (263:8): [True: 0, False: 2.92k]
  ------------------
  264|      2|			{
  265|      2|				return DNS_R_OPTERR;
  266|      2|			}
  267|  2.92k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  2.92k|	do {                              \
  |  |   51|  2.92k|		isc_region_t *_r = (r);   \
  |  |   52|  2.92k|		unsigned int  _l = (l);   \
  |  |   53|  2.92k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.92k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.92k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.92k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.92k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.92k|		_r->base += _l;           \
  |  |   55|  2.92k|		_r->length -= _l;         \
  |  |   56|  2.92k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.92k]
  |  |  ------------------
  ------------------
  268|  2.92k|			break;
  269|  78.3k|		case DNS_OPT_ZONEVERSION:
  ------------------
  |  Branch (269:3): [True: 78.3k, False: 719k]
  ------------------
  270|  78.3k|			if (length == 0) {
  ------------------
  |  Branch (270:8): [True: 14.8k, False: 63.4k]
  ------------------
  271|       |				/* Request */
  272|  14.8k|				break;
  273|  14.8k|			}
  274|       |			/* Labels and Type */
  275|  63.4k|			if (length < 2) {
  ------------------
  |  Branch (275:8): [True: 1, False: 63.4k]
  ------------------
  276|      1|				return DNS_R_OPTERR;
  277|      1|			}
  278|       |			/* Type 0 (serial), length is 6. */
  279|  63.4k|			if (sregion.base[1] == 0 && length != 6) {
  ------------------
  |  Branch (279:8): [True: 1.00k, False: 62.4k]
  |  Branch (279:32): [True: 1, False: 1.00k]
  ------------------
  280|      1|				return DNS_R_OPTERR;
  281|      1|			}
  282|  63.4k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|  63.4k|	do {                              \
  |  |   51|  63.4k|		isc_region_t *_r = (r);   \
  |  |   52|  63.4k|		unsigned int  _l = (l);   \
  |  |   53|  63.4k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  63.4k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  63.4k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 63.4k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  63.4k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  63.4k|		_r->base += _l;           \
  |  |   55|  63.4k|		_r->length -= _l;         \
  |  |   56|  63.4k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 63.4k]
  |  |  ------------------
  ------------------
  283|  63.4k|			break;
  284|   611k|		default:
  ------------------
  |  Branch (284:3): [True: 611k, False: 186k]
  ------------------
  285|   611k|			isc_region_consume(&sregion, length);
  ------------------
  |  |   50|   611k|	do {                              \
  |  |   51|   611k|		isc_region_t *_r = (r);   \
  |  |   52|   611k|		unsigned int  _l = (l);   \
  |  |   53|   611k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|   611k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|   611k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 611k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|   611k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|   611k|		_r->base += _l;           \
  |  |   55|   611k|		_r->length -= _l;         \
  |  |   56|   611k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 611k]
  |  |  ------------------
  ------------------
  286|   611k|			break;
  287|   797k|		}
  288|   797k|		total += length;
  289|   797k|	}
  290|       |
  291|  4.79k|	isc_buffer_activeregion(source, &sregion);
  292|  4.79k|	isc_buffer_availableregion(target, &tregion);
  293|  4.79k|	if (tregion.length < total) {
  ------------------
  |  Branch (293:6): [True: 593, False: 4.20k]
  ------------------
  294|    593|		return ISC_R_NOSPACE;
  295|    593|	}
  296|  4.20k|	memmove(tregion.base, sregion.base, total);
  297|  4.20k|	isc_buffer_forward(source, total);
  298|  4.20k|	isc_buffer_add(target, total);
  299|       |
  300|  4.20k|	return ISC_R_SUCCESS;
  301|  4.79k|}
rdata.c:towire_opt:
  304|  4.63k|towire_opt(ARGS_TOWIRE) {
  305|  4.63k|	REQUIRE(rdata->type == dns_rdatatype_opt);
  ------------------
  |  |  198|  4.63k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.63k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.63k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.63k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  306|       |
  307|  4.63k|	UNUSED(cctx);
  ------------------
  |  |   69|  4.63k|#define UNUSED(x) (void)(x)
  ------------------
  308|       |
  309|  4.63k|	return mem_tobuffer(target, rdata->data, rdata->length);
  310|  4.63k|}
rdata.c:totext_opt:
   45|  4.76k|totext_opt(ARGS_TOTEXT) {
   46|  4.76k|	isc_region_t r;
   47|  4.76k|	isc_region_t or;
   48|  4.76k|	uint16_t option;
   49|  4.76k|	uint16_t length;
   50|  4.76k|	char buf[sizeof("64000 64000")];
   51|       |
   52|       |	/*
   53|       |	 * OPT records do not have a text format.
   54|       |	 */
   55|       |
   56|  4.76k|	REQUIRE(rdata->type == dns_rdatatype_opt);
  ------------------
  |  |  198|  4.76k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.76k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.76k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|       |
   58|  4.76k|	dns_rdata_toregion(rdata, &r);
   59|  21.7k|	while (r.length > 0) {
  ------------------
  |  Branch (59:9): [True: 16.9k, False: 4.76k]
  ------------------
   60|  16.9k|		option = uint16_fromregion(&r);
   61|  16.9k|		isc_region_consume(&r, 2);
  ------------------
  |  |   50|  16.9k|	do {                              \
  |  |   51|  16.9k|		isc_region_t *_r = (r);   \
  |  |   52|  16.9k|		unsigned int  _l = (l);   \
  |  |   53|  16.9k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  16.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  16.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 16.9k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  16.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  16.9k|		_r->base += _l;           \
  |  |   55|  16.9k|		_r->length -= _l;         \
  |  |   56|  16.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 16.9k]
  |  |  ------------------
  ------------------
   62|  16.9k|		length = uint16_fromregion(&r);
   63|  16.9k|		isc_region_consume(&r, 2);
  ------------------
  |  |   50|  16.9k|	do {                              \
  |  |   51|  16.9k|		isc_region_t *_r = (r);   \
  |  |   52|  16.9k|		unsigned int  _l = (l);   \
  |  |   53|  16.9k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  16.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  16.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 16.9k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  16.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  16.9k|		_r->base += _l;           \
  |  |   55|  16.9k|		_r->length -= _l;         \
  |  |   56|  16.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 16.9k]
  |  |  ------------------
  ------------------
   64|  16.9k|		snprintf(buf, sizeof(buf), "%u %u", option, length);
   65|  16.9k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  16.9k|	{                                  \
  |  |  277|  16.9k|		isc_result_t _r = (x);     \
  |  |  278|  16.9k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 16.9k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  16.9k|	}
  ------------------
   66|  16.9k|		INSIST(r.length >= length);
  ------------------
  |  |  202|  16.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  16.9k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 16.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  16.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
   67|  16.9k|		if (length > 0) {
  ------------------
  |  Branch (67:7): [True: 7.07k, False: 9.92k]
  ------------------
   68|  7.07k|			if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  7.07k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (68:8): [True: 0, False: 7.07k]
  ------------------
   69|      0|				RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   70|      0|			}
   71|  7.07k|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  7.07k|	{                                  \
  |  |  277|  7.07k|		isc_result_t _r = (x);     \
  |  |  278|  7.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 7.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  7.07k|	}
  ------------------
   72|  7.07k|			or = r;
   73|  7.07k|			or.length = length;
   74|  7.07k|			if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (74:8): [True: 0, False: 7.07k]
  ------------------
   75|      0|				RETERR(isc_base64_totext(&or, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   76|  7.07k|			} else {
   77|  7.07k|				RETERR(isc_base64_totext(&or, tctx->width - 2,
  ------------------
  |  |  276|  7.07k|	{                                  \
  |  |  277|  7.07k|		isc_result_t _r = (x);     \
  |  |  278|  7.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 7.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  7.07k|	}
  ------------------
   78|  7.07k|							 tctx->linebreak,
   79|  7.07k|							 target));
   80|  7.07k|			}
   81|  7.07k|			isc_region_consume(&r, length);
  ------------------
  |  |   50|  7.07k|	do {                              \
  |  |   51|  7.07k|		isc_region_t *_r = (r);   \
  |  |   52|  7.07k|		unsigned int  _l = (l);   \
  |  |   53|  7.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  7.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  7.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 7.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  7.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  7.07k|		_r->base += _l;           \
  |  |   55|  7.07k|		_r->length -= _l;         \
  |  |   56|  7.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 7.07k]
  |  |  ------------------
  ------------------
   82|  7.07k|			if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  7.07k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (82:8): [True: 0, False: 7.07k]
  ------------------
   83|      0|				RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   84|      0|			}
   85|  7.07k|		}
   86|  16.9k|		if (r.length > 0) {
  ------------------
  |  Branch (86:7): [True: 15.6k, False: 1.33k]
  ------------------
   87|  15.6k|			RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  15.6k|	{                                  \
  |  |  277|  15.6k|		isc_result_t _r = (x);     \
  |  |  278|  15.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 15.6k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  15.6k|	}
  ------------------
   88|  15.6k|		}
   89|  16.9k|	}
   90|       |
   91|  4.76k|	return ISC_R_SUCCESS;
   92|  4.76k|}

rdata.c:fromwire_ptr:
   81|    767|fromwire_ptr(ARGS_FROMWIRE) {
   82|    767|	dns_name_t name;
   83|       |
   84|    767|	REQUIRE(type == dns_rdatatype_ptr);
  ------------------
  |  |  198|    767|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    767|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 767, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    767|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|       |
   86|    767|	UNUSED(type);
  ------------------
  |  |   69|    767|#define UNUSED(x) (void)(x)
  ------------------
   87|    767|	UNUSED(rdclass);
  ------------------
  |  |   69|    767|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|    767|	dctx = dns_decompress_setpermitted(dctx, true);
   90|       |
   91|    767|	dns_name_init(&name);
   92|    767|	return dns_name_fromwire(&name, source, dctx, target);
   93|    767|}
rdata.c:towire_ptr:
   96|    376|towire_ptr(ARGS_TOWIRE) {
   97|    376|	dns_name_t name;
   98|    376|	isc_region_t region;
   99|       |
  100|    376|	REQUIRE(rdata->type == dns_rdatatype_ptr);
  ------------------
  |  |  198|    376|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    376|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 376, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    376|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|    376|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    376|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    376|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 376, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    376|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  102|       |
  103|    376|	dns_compress_setpermitted(cctx, true);
  104|       |
  105|    376|	dns_name_init(&name);
  106|    376|	dns_rdata_toregion(rdata, &region);
  107|    376|	dns_name_fromregion(&name, &region);
  108|       |
  109|    376|	return dns_name_towire(&name, cctx, target);
  110|    376|}
rdata.c:totext_ptr:
   60|    747|totext_ptr(ARGS_TOTEXT) {
   61|    747|	isc_region_t region;
   62|    747|	dns_name_t name;
   63|    747|	dns_name_t prefix;
   64|    747|	unsigned int opts;
   65|       |
   66|    747|	REQUIRE(rdata->type == dns_rdatatype_ptr);
  ------------------
  |  |  198|    747|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    747|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 747, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    747|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|    747|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    747|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    747|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 747, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    747|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|       |
   69|    747|	dns_name_init(&name);
   70|    747|	dns_name_init(&prefix);
   71|       |
   72|    747|	dns_rdata_toregion(rdata, &region);
   73|    747|	dns_name_fromregion(&name, &region);
   74|       |
   75|    747|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (75:9): [True: 0, False: 747]
  ------------------
   76|    747|							 : 0;
   77|    747|	return dns_name_totext(&prefix, opts, target);
   78|    747|}

rdata.c:compare_resinfo:
   51|    893|compare_resinfo(ARGS_COMPARE) {
   52|    893|	isc_region_t r1;
   53|    893|	isc_region_t r2;
   54|       |
   55|    893|	REQUIRE(rdata1->type == rdata2->type);
  ------------------
  |  |  198|    893|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    893|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 893, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    893|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   56|    893|	REQUIRE(rdata1->rdclass == rdata2->rdclass);
  ------------------
  |  |  198|    893|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    893|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 893, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    893|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|    893|	REQUIRE(rdata1->type == dns_rdatatype_resinfo);
  ------------------
  |  |  198|    893|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    893|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 893, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    893|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   58|       |
   59|    893|	dns_rdata_toregion(rdata1, &r1);
   60|    893|	dns_rdata_toregion(rdata2, &r2);
   61|    893|	return isc_region_compare(&r1, &r2);
   62|    893|}
rdata.c:fromwire_resinfo:
   35|  1.66k|fromwire_resinfo(ARGS_FROMWIRE) {
   36|  1.66k|	REQUIRE(type == dns_rdatatype_resinfo);
  ------------------
  |  |  198|  1.66k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.66k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.66k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.66k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.66k|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.66k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.66k|}
rdata.c:towire_resinfo:
   42|    542|towire_resinfo(ARGS_TOWIRE) {
   43|    542|	REQUIRE(rdata->type == dns_rdatatype_resinfo);
  ------------------
  |  |  198|    542|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    542|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 542, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    542|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    542|	UNUSED(cctx);
  ------------------
  |  |   69|    542|#define UNUSED(x) (void)(x)
  ------------------
   46|       |
   47|    542|	return mem_tobuffer(target, rdata->data, rdata->length);
   48|    542|}
rdata.c:totext_resinfo:
   27|  1.07k|totext_resinfo(ARGS_TOTEXT) {
   28|  1.07k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|  1.07k|	REQUIRE(rdata->type == dns_rdatatype_resinfo);
  ------------------
  |  |  198|  1.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|  1.07k|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|  1.07k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|  1.07k|}

rdata.c:fromwire_rkey:
   35|  1.37k|fromwire_rkey(ARGS_FROMWIRE) {
   36|  1.37k|	REQUIRE(type == dns_rdatatype_rkey);
  ------------------
  |  |  198|  1.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.37k|	return generic_fromwire_key(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.37k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.37k|}
rdata.c:towire_rkey:
   42|    688|towire_rkey(ARGS_TOWIRE) {
   43|    688|	isc_region_t sr;
   44|       |
   45|    688|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    688|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    688|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 688, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    688|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   46|    688|	REQUIRE(rdata->type == dns_rdatatype_rkey);
  ------------------
  |  |  198|    688|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    688|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 688, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    688|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   47|    688|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    688|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    688|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 688, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    688|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   48|       |
   49|    688|	UNUSED(cctx);
  ------------------
  |  |   69|    688|#define UNUSED(x) (void)(x)
  ------------------
   50|       |
   51|    688|	dns_rdata_toregion(rdata, &sr);
   52|    688|	return mem_tobuffer(target, sr.base, sr.length);
   53|    688|}
rdata.c:totext_rkey:
   27|  1.33k|totext_rkey(ARGS_TOTEXT) {
   28|  1.33k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|  1.33k|	REQUIRE(rdata->type == dns_rdatatype_rkey);
  ------------------
  |  |  198|  1.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|  1.33k|	return generic_totext_key(CALL_TOTEXT);
  ------------------
  |  |   85|  1.33k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|  1.33k|}

rdata.c:fromwire_rp:
  100|  2.61k|fromwire_rp(ARGS_FROMWIRE) {
  101|  2.61k|	dns_name_t rmail;
  102|  2.61k|	dns_name_t email;
  103|       |
  104|  2.61k|	REQUIRE(type == dns_rdatatype_rp);
  ------------------
  |  |  198|  2.61k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.61k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.61k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.61k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  105|       |
  106|  2.61k|	UNUSED(type);
  ------------------
  |  |   69|  2.61k|#define UNUSED(x) (void)(x)
  ------------------
  107|  2.61k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.61k|#define UNUSED(x) (void)(x)
  ------------------
  108|       |
  109|  2.61k|	dctx = dns_decompress_setpermitted(dctx, false);
  110|       |
  111|  2.61k|	dns_name_init(&rmail);
  112|  2.61k|	dns_name_init(&email);
  113|       |
  114|  2.61k|	RETERR(dns_name_fromwire(&rmail, source, dctx, target));
  ------------------
  |  |  276|  2.61k|	{                                  \
  |  |  277|  2.61k|		isc_result_t _r = (x);     \
  |  |  278|  2.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 327, False: 2.28k]
  |  |  ------------------
  |  |  279|    327|			return ((_r));     \
  |  |  280|    327|		}                          \
  |  |  281|  2.61k|	}
  ------------------
  115|  2.28k|	return dns_name_fromwire(&email, source, dctx, target);
  116|  2.61k|}
rdata.c:towire_rp:
  119|  1.05k|towire_rp(ARGS_TOWIRE) {
  120|  1.05k|	isc_region_t region;
  121|  1.05k|	dns_name_t rmail;
  122|  1.05k|	dns_name_t email;
  123|       |
  124|  1.05k|	REQUIRE(rdata->type == dns_rdatatype_rp);
  ------------------
  |  |  198|  1.05k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.05k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.05k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.05k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  125|  1.05k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.05k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.05k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.05k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.05k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  126|       |
  127|  1.05k|	dns_compress_setpermitted(cctx, false);
  128|  1.05k|	dns_name_init(&rmail);
  129|  1.05k|	dns_name_init(&email);
  130|       |
  131|  1.05k|	dns_rdata_toregion(rdata, &region);
  132|       |
  133|  1.05k|	dns_name_fromregion(&rmail, &region);
  134|  1.05k|	isc_region_consume(&region, rmail.length);
  ------------------
  |  |   50|  1.05k|	do {                              \
  |  |   51|  1.05k|		isc_region_t *_r = (r);   \
  |  |   52|  1.05k|		unsigned int  _l = (l);   \
  |  |   53|  1.05k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.05k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.05k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.05k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.05k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.05k|		_r->base += _l;           \
  |  |   55|  1.05k|		_r->length -= _l;         \
  |  |   56|  1.05k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.05k]
  |  |  ------------------
  ------------------
  135|       |
  136|  1.05k|	RETERR(dns_name_towire(&rmail, cctx, target));
  ------------------
  |  |  276|  1.05k|	{                                  \
  |  |  277|  1.05k|		isc_result_t _r = (x);     \
  |  |  278|  1.05k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 1.05k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  1.05k|	}
  ------------------
  137|       |
  138|  1.05k|	dns_name_fromregion(&rmail, &region);
  139|  1.05k|	isc_region_consume(&region, rmail.length);
  ------------------
  |  |   50|  1.05k|	do {                              \
  |  |   51|  1.05k|		isc_region_t *_r = (r);   \
  |  |   52|  1.05k|		unsigned int  _l = (l);   \
  |  |   53|  1.05k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.05k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.05k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.05k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.05k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.05k|		_r->base += _l;           \
  |  |   55|  1.05k|		_r->length -= _l;         \
  |  |   56|  1.05k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.05k]
  |  |  ------------------
  ------------------
  140|       |
  141|  1.05k|	return dns_name_towire(&rmail, cctx, target);
  142|  1.05k|}
rdata.c:totext_rp:
   64|  2.10k|totext_rp(ARGS_TOTEXT) {
   65|  2.10k|	isc_region_t region;
   66|  2.10k|	dns_name_t rmail;
   67|  2.10k|	dns_name_t email;
   68|  2.10k|	dns_name_t prefix;
   69|  2.10k|	unsigned int opts;
   70|       |
   71|  2.10k|	REQUIRE(rdata->type == dns_rdatatype_rp);
  ------------------
  |  |  198|  2.10k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.10k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.10k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.10k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|  2.10k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.10k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.10k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.10k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.10k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   73|       |
   74|  2.10k|	dns_name_init(&rmail);
   75|  2.10k|	dns_name_init(&email);
   76|  2.10k|	dns_name_init(&prefix);
   77|       |
   78|  2.10k|	dns_rdata_toregion(rdata, &region);
   79|       |
   80|  2.10k|	dns_name_fromregion(&rmail, &region);
   81|  2.10k|	isc_region_consume(&region, rmail.length);
  ------------------
  |  |   50|  2.10k|	do {                              \
  |  |   51|  2.10k|		isc_region_t *_r = (r);   \
  |  |   52|  2.10k|		unsigned int  _l = (l);   \
  |  |   53|  2.10k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.10k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.10k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.10k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.10k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.10k|		_r->base += _l;           \
  |  |   55|  2.10k|		_r->length -= _l;         \
  |  |   56|  2.10k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.10k]
  |  |  ------------------
  ------------------
   82|       |
   83|  2.10k|	dns_name_fromregion(&email, &region);
   84|  2.10k|	isc_region_consume(&region, email.length);
  ------------------
  |  |   50|  2.10k|	do {                              \
  |  |   51|  2.10k|		isc_region_t *_r = (r);   \
  |  |   52|  2.10k|		unsigned int  _l = (l);   \
  |  |   53|  2.10k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.10k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.10k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.10k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.10k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.10k|		_r->base += _l;           \
  |  |   55|  2.10k|		_r->length -= _l;         \
  |  |   56|  2.10k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.10k]
  |  |  ------------------
  ------------------
   85|       |
   86|  2.10k|	opts = name_prefix(&rmail, tctx->origin, &prefix)
  ------------------
  |  Branch (86:9): [True: 0, False: 2.10k]
  ------------------
   87|  2.10k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
   88|  2.10k|		       : 0;
   89|  2.10k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  2.10k|	{                                  \
  |  |  277|  2.10k|		isc_result_t _r = (x);     \
  |  |  278|  2.10k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.10k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.10k|	}
  ------------------
   90|       |
   91|  2.10k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  2.10k|	{                                  \
  |  |  277|  2.10k|		isc_result_t _r = (x);     \
  |  |  278|  2.10k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.10k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.10k|	}
  ------------------
   92|       |
   93|  2.10k|	opts = name_prefix(&email, tctx->origin, &prefix)
  ------------------
  |  Branch (93:9): [True: 0, False: 2.10k]
  ------------------
   94|  2.10k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
   95|  2.10k|		       : 0;
   96|  2.10k|	return dns_name_totext(&prefix, opts, target);
   97|  2.10k|}

rdata.c:fromwire_rrsig:
  294|  5.55k|fromwire_rrsig(ARGS_FROMWIRE) {
  295|  5.55k|	isc_region_t sr;
  296|  5.55k|	dns_name_t name;
  297|  5.55k|	unsigned char algorithm;
  298|       |
  299|  5.55k|	REQUIRE(type == dns_rdatatype_rrsig);
  ------------------
  |  |  198|  5.55k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.55k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.55k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.55k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  300|       |
  301|  5.55k|	UNUSED(type);
  ------------------
  |  |   69|  5.55k|#define UNUSED(x) (void)(x)
  ------------------
  302|  5.55k|	UNUSED(rdclass);
  ------------------
  |  |   69|  5.55k|#define UNUSED(x) (void)(x)
  ------------------
  303|       |
  304|  5.55k|	dctx = dns_decompress_setpermitted(dctx, false);
  305|       |
  306|  5.55k|	isc_buffer_activeregion(source, &sr);
  307|       |	/*
  308|       |	 * type covered: 2
  309|       |	 * algorithm: 1
  310|       |	 * labels: 1
  311|       |	 * original ttl: 4
  312|       |	 * signature expiration: 4
  313|       |	 * time signed: 4
  314|       |	 * key footprint: 2
  315|       |	 */
  316|  5.55k|	if (sr.length < 18) {
  ------------------
  |  Branch (316:6): [True: 6, False: 5.54k]
  ------------------
  317|      6|		return ISC_R_UNEXPECTEDEND;
  318|      6|	}
  319|       |
  320|  5.54k|	algorithm = sr.base[2];
  321|       |
  322|  5.54k|	isc_buffer_forward(source, 18);
  323|  5.54k|	RETERR(mem_tobuffer(target, sr.base, 18));
  ------------------
  |  |  276|  5.54k|	{                                  \
  |  |  277|  5.54k|		isc_result_t _r = (x);     \
  |  |  278|  5.54k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 237, False: 5.31k]
  |  |  ------------------
  |  |  279|    237|			return ((_r));     \
  |  |  280|    237|		}                          \
  |  |  281|  5.54k|	}
  ------------------
  324|       |
  325|       |	/*
  326|       |	 * Signer.
  327|       |	 */
  328|  5.31k|	dns_name_init(&name);
  329|  5.31k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  5.31k|	{                                  \
  |  |  277|  5.31k|		isc_result_t _r = (x);     \
  |  |  278|  5.31k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 204, False: 5.10k]
  |  |  ------------------
  |  |  279|    204|			return ((_r));     \
  |  |  280|    204|		}                          \
  |  |  281|  5.31k|	}
  ------------------
  330|       |
  331|       |	/*
  332|       |	 * Sig.
  333|       |	 */
  334|  5.10k|	isc_buffer_activeregion(source, &sr);
  335|  5.10k|	if (sr.length < 1) {
  ------------------
  |  Branch (335:6): [True: 6, False: 5.10k]
  ------------------
  336|      6|		return DNS_R_FORMERR;
  337|      6|	}
  338|       |
  339|  5.10k|	if (algorithm == DNS_KEYALG_PRIVATEDNS ||
  ------------------
  |  Branch (339:6): [True: 485, False: 4.61k]
  ------------------
  340|  4.61k|	    algorithm == DNS_KEYALG_PRIVATEOID)
  ------------------
  |  Branch (340:6): [True: 686, False: 3.93k]
  ------------------
  341|  1.17k|	{
  342|  1.17k|		isc_buffer_t b = *source;
  343|  1.17k|		RETERR(check_private(&b, algorithm));
  ------------------
  |  |  276|  1.17k|	{                                  \
  |  |  277|  1.17k|		isc_result_t _r = (x);     \
  |  |  278|  1.17k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 19, False: 1.15k]
  |  |  ------------------
  |  |  279|     19|			return ((_r));     \
  |  |  280|     19|		}                          \
  |  |  281|  1.17k|	}
  ------------------
  344|  1.15k|	}
  345|       |
  346|  5.08k|	isc_buffer_forward(source, sr.length);
  347|  5.08k|	return mem_tobuffer(target, sr.base, sr.length);
  348|  5.10k|}
rdata.c:towire_rrsig:
  351|  2.07k|towire_rrsig(ARGS_TOWIRE) {
  352|  2.07k|	isc_region_t sr;
  353|  2.07k|	dns_name_t name;
  354|       |
  355|  2.07k|	REQUIRE(rdata->type == dns_rdatatype_rrsig);
  ------------------
  |  |  198|  2.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  356|  2.07k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  357|       |
  358|  2.07k|	dns_compress_setpermitted(cctx, false);
  359|  2.07k|	dns_rdata_toregion(rdata, &sr);
  360|       |	/*
  361|       |	 * type covered: 2
  362|       |	 * algorithm: 1
  363|       |	 * labels: 1
  364|       |	 * original ttl: 4
  365|       |	 * signature expiration: 4
  366|       |	 * time signed: 4
  367|       |	 * key footprint: 2
  368|       |	 */
  369|  2.07k|	RETERR(mem_tobuffer(target, sr.base, 18));
  ------------------
  |  |  276|  2.07k|	{                                  \
  |  |  277|  2.07k|		isc_result_t _r = (x);     \
  |  |  278|  2.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 3, False: 2.07k]
  |  |  ------------------
  |  |  279|      3|			return ((_r));     \
  |  |  280|      3|		}                          \
  |  |  281|  2.07k|	}
  ------------------
  370|  2.07k|	isc_region_consume(&sr, 18);
  ------------------
  |  |   50|  2.07k|	do {                              \
  |  |   51|  2.07k|		isc_region_t *_r = (r);   \
  |  |   52|  2.07k|		unsigned int  _l = (l);   \
  |  |   53|  2.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.07k|		_r->base += _l;           \
  |  |   55|  2.07k|		_r->length -= _l;         \
  |  |   56|  2.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.07k]
  |  |  ------------------
  ------------------
  371|       |
  372|       |	/*
  373|       |	 * Signer.
  374|       |	 */
  375|  2.07k|	dns_name_init(&name);
  376|  2.07k|	dns_name_fromregion(&name, &sr);
  377|  2.07k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  2.07k|	do {                              \
  |  |   51|  2.07k|		isc_region_t *_r = (r);   \
  |  |   52|  2.07k|		unsigned int  _l = (l);   \
  |  |   53|  2.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.07k|		_r->base += _l;           \
  |  |   55|  2.07k|		_r->length -= _l;         \
  |  |   56|  2.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.07k]
  |  |  ------------------
  ------------------
  378|  2.07k|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|  2.07k|	{                                  \
  |  |  277|  2.07k|		isc_result_t _r = (x);     \
  |  |  278|  2.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 2, False: 2.06k]
  |  |  ------------------
  |  |  279|      2|			return ((_r));     \
  |  |  280|      2|		}                          \
  |  |  281|  2.07k|	}
  ------------------
  379|       |
  380|       |	/*
  381|       |	 * Signature.
  382|       |	 */
  383|  2.06k|	return mem_tobuffer(target, sr.base, sr.length);
  384|  2.07k|}
rdata.c:totext_rrsig:
  177|  4.07k|totext_rrsig(ARGS_TOTEXT) {
  178|  4.07k|	isc_region_t sr;
  179|  4.07k|	char buf[sizeof("4294967295")]; /* Also TYPE65000. */
  180|  4.07k|	dns_rdatatype_t covered;
  181|  4.07k|	unsigned long ttl;
  182|  4.07k|	unsigned long when;
  183|  4.07k|	unsigned long exp;
  184|  4.07k|	unsigned long foot;
  185|  4.07k|	dns_name_t name;
  186|       |
  187|  4.07k|	REQUIRE(rdata->type == dns_rdatatype_rrsig);
  ------------------
  |  |  198|  4.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  188|  4.07k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  4.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  189|       |
  190|  4.07k|	dns_rdata_toregion(rdata, &sr);
  191|       |
  192|       |	/*
  193|       |	 * Type covered.
  194|       |	 */
  195|  4.07k|	covered = uint16_fromregion(&sr);
  196|  4.07k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  4.07k|	do {                              \
  |  |   51|  4.07k|		isc_region_t *_r = (r);   \
  |  |   52|  4.07k|		unsigned int  _l = (l);   \
  |  |   53|  4.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.07k|		_r->base += _l;           \
  |  |   55|  4.07k|		_r->length -= _l;         \
  |  |   56|  4.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.07k]
  |  |  ------------------
  ------------------
  197|       |	/*
  198|       |	 * XXXAG We should have something like dns_rdatatype_isknown()
  199|       |	 * that does the right thing with type 0.
  200|       |	 */
  201|  4.07k|	if (dns_rdatatype_isknown(covered) && covered != 0) {
  ------------------
  |  Branch (201:6): [True: 2.12k, False: 1.95k]
  |  Branch (201:40): [True: 2.12k, False: 0]
  ------------------
  202|  2.12k|		RETERR(dns_rdatatype_totext(covered, target));
  ------------------
  |  |  276|  2.12k|	{                                  \
  |  |  277|  2.12k|		isc_result_t _r = (x);     \
  |  |  278|  2.12k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.12k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.12k|	}
  ------------------
  203|  2.12k|	} else {
  204|  1.95k|		snprintf(buf, sizeof(buf), "TYPE%u", covered);
  205|  1.95k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.95k|	{                                  \
  |  |  277|  1.95k|		isc_result_t _r = (x);     \
  |  |  278|  1.95k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.95k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.95k|	}
  ------------------
  206|  1.95k|	}
  207|  4.07k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  208|       |
  209|       |	/*
  210|       |	 * Algorithm.
  211|       |	 */
  212|  4.07k|	snprintf(buf, sizeof(buf), "%u", sr.base[0]);
  213|  4.07k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.07k|	do {                              \
  |  |   51|  4.07k|		isc_region_t *_r = (r);   \
  |  |   52|  4.07k|		unsigned int  _l = (l);   \
  |  |   53|  4.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.07k|		_r->base += _l;           \
  |  |   55|  4.07k|		_r->length -= _l;         \
  |  |   56|  4.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.07k]
  |  |  ------------------
  ------------------
  214|  4.07k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  215|  4.07k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  216|       |
  217|       |	/*
  218|       |	 * Labels.
  219|       |	 */
  220|  4.07k|	snprintf(buf, sizeof(buf), "%u", sr.base[0]);
  221|  4.07k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.07k|	do {                              \
  |  |   51|  4.07k|		isc_region_t *_r = (r);   \
  |  |   52|  4.07k|		unsigned int  _l = (l);   \
  |  |   53|  4.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.07k|		_r->base += _l;           \
  |  |   55|  4.07k|		_r->length -= _l;         \
  |  |   56|  4.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.07k]
  |  |  ------------------
  ------------------
  222|  4.07k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  223|  4.07k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  224|       |
  225|       |	/*
  226|       |	 * Ttl.
  227|       |	 */
  228|  4.07k|	ttl = uint32_fromregion(&sr);
  229|  4.07k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  4.07k|	do {                              \
  |  |   51|  4.07k|		isc_region_t *_r = (r);   \
  |  |   52|  4.07k|		unsigned int  _l = (l);   \
  |  |   53|  4.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.07k|		_r->base += _l;           \
  |  |   55|  4.07k|		_r->length -= _l;         \
  |  |   56|  4.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.07k]
  |  |  ------------------
  ------------------
  230|  4.07k|	snprintf(buf, sizeof(buf), "%lu", ttl);
  231|  4.07k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  232|       |
  233|  4.07k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  4.07k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (233:6): [True: 0, False: 4.07k]
  ------------------
  234|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  235|      0|	}
  236|  4.07k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  237|       |
  238|       |	/*
  239|       |	 * Sig exp.
  240|       |	 */
  241|  4.07k|	exp = uint32_fromregion(&sr);
  242|  4.07k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  4.07k|	do {                              \
  |  |   51|  4.07k|		isc_region_t *_r = (r);   \
  |  |   52|  4.07k|		unsigned int  _l = (l);   \
  |  |   53|  4.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.07k|		_r->base += _l;           \
  |  |   55|  4.07k|		_r->length -= _l;         \
  |  |   56|  4.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.07k]
  |  |  ------------------
  ------------------
  243|  4.07k|	RETERR(dns_time32_totext(exp, target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  244|  4.07k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  245|       |
  246|       |	/*
  247|       |	 * Time signed.
  248|       |	 */
  249|  4.07k|	when = uint32_fromregion(&sr);
  250|  4.07k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  4.07k|	do {                              \
  |  |   51|  4.07k|		isc_region_t *_r = (r);   \
  |  |   52|  4.07k|		unsigned int  _l = (l);   \
  |  |   53|  4.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.07k|		_r->base += _l;           \
  |  |   55|  4.07k|		_r->length -= _l;         \
  |  |   56|  4.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.07k]
  |  |  ------------------
  ------------------
  251|  4.07k|	RETERR(dns_time32_totext(when, target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  252|  4.07k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  253|       |
  254|       |	/*
  255|       |	 * Footprint.
  256|       |	 */
  257|  4.07k|	foot = uint16_fromregion(&sr);
  258|  4.07k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  4.07k|	do {                              \
  |  |   51|  4.07k|		isc_region_t *_r = (r);   \
  |  |   52|  4.07k|		unsigned int  _l = (l);   \
  |  |   53|  4.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.07k|		_r->base += _l;           \
  |  |   55|  4.07k|		_r->length -= _l;         \
  |  |   56|  4.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.07k]
  |  |  ------------------
  ------------------
  259|  4.07k|	snprintf(buf, sizeof(buf), "%lu", foot);
  260|  4.07k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  261|  4.07k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  262|       |
  263|       |	/*
  264|       |	 * Signer.
  265|       |	 */
  266|  4.07k|	dns_name_init(&name);
  267|  4.07k|	dns_name_fromregion(&name, &sr);
  268|  4.07k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  4.07k|	do {                              \
  |  |   51|  4.07k|		isc_region_t *_r = (r);   \
  |  |   52|  4.07k|		unsigned int  _l = (l);   \
  |  |   53|  4.07k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.07k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.07k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.07k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.07k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.07k|		_r->base += _l;           \
  |  |   55|  4.07k|		_r->length -= _l;         \
  |  |   56|  4.07k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.07k]
  |  |  ------------------
  ------------------
  269|  4.07k|	RETERR(dns_name_totext(&name, 0, target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  270|       |
  271|       |	/*
  272|       |	 * Sig.
  273|       |	 */
  274|  4.07k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  275|  4.07k|	if ((tctx->flags & DNS_STYLEFLAG_NOCRYPTO) == 0) {
  ------------------
  |  |   95|  4.07k|#define DNS_STYLEFLAG_NOCRYPTO 0x008000000ULL
  ------------------
  |  Branch (275:6): [True: 4.07k, False: 0]
  ------------------
  276|  4.07k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (276:7): [True: 0, False: 4.07k]
  ------------------
  277|      0|			RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  278|  4.07k|		} else {
  279|  4.07k|			RETERR(isc_base64_totext(&sr, tctx->width - 2,
  ------------------
  |  |  276|  4.07k|	{                                  \
  |  |  277|  4.07k|		isc_result_t _r = (x);     \
  |  |  278|  4.07k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.07k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.07k|	}
  ------------------
  280|  4.07k|						 tctx->linebreak, target));
  281|  4.07k|		}
  282|  4.07k|	} else {
  283|      0|		RETERR(str_totext("[omitted]", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  284|      0|	}
  285|       |
  286|  4.07k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  4.07k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (286:6): [True: 0, False: 4.07k]
  ------------------
  287|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  288|      0|	}
  289|       |
  290|  4.07k|	return ISC_R_SUCCESS;
  291|  4.07k|}
rdata.c:covers_rrsig:
  622|  4.86k|covers_rrsig(dns_rdata_t *rdata) {
  623|  4.86k|	dns_rdatatype_t type;
  624|  4.86k|	isc_region_t r;
  625|       |
  626|  4.86k|	REQUIRE(rdata->type == dns_rdatatype_rrsig);
  ------------------
  |  |  198|  4.86k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.86k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.86k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.86k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  627|       |
  628|  4.86k|	dns_rdata_toregion(rdata, &r);
  629|  4.86k|	type = uint16_fromregion(&r);
  630|       |
  631|  4.86k|	return type;
  632|  4.86k|}

rdata.c:fromwire_rt:
   94|  1.45k|fromwire_rt(ARGS_FROMWIRE) {
   95|  1.45k|	dns_name_t name;
   96|  1.45k|	isc_region_t sregion;
   97|  1.45k|	isc_region_t tregion;
   98|       |
   99|  1.45k|	REQUIRE(type == dns_rdatatype_rt);
  ------------------
  |  |  198|  1.45k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.45k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.45k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.45k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|       |
  101|  1.45k|	UNUSED(type);
  ------------------
  |  |   69|  1.45k|#define UNUSED(x) (void)(x)
  ------------------
  102|  1.45k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.45k|#define UNUSED(x) (void)(x)
  ------------------
  103|       |
  104|  1.45k|	dctx = dns_decompress_setpermitted(dctx, false);
  105|       |
  106|  1.45k|	dns_name_init(&name);
  107|       |
  108|  1.45k|	isc_buffer_activeregion(source, &sregion);
  109|  1.45k|	isc_buffer_availableregion(target, &tregion);
  110|  1.45k|	if (tregion.length < 2) {
  ------------------
  |  Branch (110:6): [True: 221, False: 1.23k]
  ------------------
  111|    221|		return ISC_R_NOSPACE;
  112|    221|	}
  113|  1.23k|	if (sregion.length < 2) {
  ------------------
  |  Branch (113:6): [True: 6, False: 1.23k]
  ------------------
  114|      6|		return ISC_R_UNEXPECTEDEND;
  115|      6|	}
  116|  1.23k|	memmove(tregion.base, sregion.base, 2);
  117|  1.23k|	isc_buffer_forward(source, 2);
  118|  1.23k|	isc_buffer_add(target, 2);
  119|  1.23k|	return dns_name_fromwire(&name, source, dctx, target);
  120|  1.23k|}
rdata.c:towire_rt:
  123|    503|towire_rt(ARGS_TOWIRE) {
  124|    503|	dns_name_t name;
  125|    503|	isc_region_t region;
  126|    503|	isc_region_t tr;
  127|       |
  128|    503|	REQUIRE(rdata->type == dns_rdatatype_rt);
  ------------------
  |  |  198|    503|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    503|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 503, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    503|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  129|    503|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    503|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    503|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 503, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    503|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|       |
  131|    503|	dns_compress_setpermitted(cctx, false);
  132|    503|	isc_buffer_availableregion(target, &tr);
  133|    503|	dns_rdata_toregion(rdata, &region);
  134|    503|	if (tr.length < 2) {
  ------------------
  |  Branch (134:6): [True: 1, False: 502]
  ------------------
  135|      1|		return ISC_R_NOSPACE;
  136|      1|	}
  137|    502|	memmove(tr.base, region.base, 2);
  138|    502|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    502|	do {                              \
  |  |   51|    502|		isc_region_t *_r = (r);   \
  |  |   52|    502|		unsigned int  _l = (l);   \
  |  |   53|    502|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    502|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    502|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 502, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    502|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    502|		_r->base += _l;           \
  |  |   55|    502|		_r->length -= _l;         \
  |  |   56|    502|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 502]
  |  |  ------------------
  ------------------
  139|    502|	isc_buffer_add(target, 2);
  140|       |
  141|    502|	dns_name_init(&name);
  142|    502|	dns_name_fromregion(&name, &region);
  143|       |
  144|    502|	return dns_name_towire(&name, cctx, target);
  145|    503|}
rdata.c:totext_rt:
   67|  1.00k|totext_rt(ARGS_TOTEXT) {
   68|  1.00k|	isc_region_t region;
   69|  1.00k|	dns_name_t name;
   70|  1.00k|	dns_name_t prefix;
   71|  1.00k|	unsigned int opts;
   72|  1.00k|	char buf[sizeof("64000")];
   73|  1.00k|	unsigned short num;
   74|       |
   75|  1.00k|	REQUIRE(rdata->type == dns_rdatatype_rt);
  ------------------
  |  |  198|  1.00k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.00k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.00k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   76|  1.00k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.00k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.00k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.00k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   77|       |
   78|  1.00k|	dns_name_init(&name);
   79|  1.00k|	dns_name_init(&prefix);
   80|       |
   81|  1.00k|	dns_rdata_toregion(rdata, &region);
   82|  1.00k|	num = uint16_fromregion(&region);
   83|  1.00k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.00k|	do {                              \
  |  |   51|  1.00k|		isc_region_t *_r = (r);   \
  |  |   52|  1.00k|		unsigned int  _l = (l);   \
  |  |   53|  1.00k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.00k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.00k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.00k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.00k|		_r->base += _l;           \
  |  |   55|  1.00k|		_r->length -= _l;         \
  |  |   56|  1.00k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.00k]
  |  |  ------------------
  ------------------
   84|  1.00k|	snprintf(buf, sizeof(buf), "%u", num);
   85|  1.00k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.00k|	{                                  \
  |  |  277|  1.00k|		isc_result_t _r = (x);     \
  |  |  278|  1.00k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.00k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.00k|	}
  ------------------
   86|  1.00k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.00k|	{                                  \
  |  |  277|  1.00k|		isc_result_t _r = (x);     \
  |  |  278|  1.00k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.00k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.00k|	}
  ------------------
   87|  1.00k|	dns_name_fromregion(&name, &region);
   88|  1.00k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (88:9): [True: 0, False: 1.00k]
  ------------------
   89|  1.00k|							 : 0;
   90|  1.00k|	return dns_name_totext(&prefix, opts, target);
   91|  1.00k|}

rdata.c:fromwire_sig:
  258|  5.35k|fromwire_sig(ARGS_FROMWIRE) {
  259|  5.35k|	isc_region_t sr;
  260|  5.35k|	dns_name_t name;
  261|  5.35k|	unsigned char algorithm;
  262|       |
  263|  5.35k|	REQUIRE(type == dns_rdatatype_sig);
  ------------------
  |  |  198|  5.35k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.35k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.35k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.35k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  264|       |
  265|  5.35k|	UNUSED(type);
  ------------------
  |  |   69|  5.35k|#define UNUSED(x) (void)(x)
  ------------------
  266|  5.35k|	UNUSED(rdclass);
  ------------------
  |  |   69|  5.35k|#define UNUSED(x) (void)(x)
  ------------------
  267|       |
  268|  5.35k|	dctx = dns_decompress_setpermitted(dctx, false);
  269|       |
  270|  5.35k|	isc_buffer_activeregion(source, &sr);
  271|       |	/*
  272|       |	 * type covered: 2
  273|       |	 * algorithm: 1
  274|       |	 * labels: 1
  275|       |	 * original ttl: 4
  276|       |	 * signature expiration: 4
  277|       |	 * time signed: 4
  278|       |	 * key footprint: 2
  279|       |	 */
  280|  5.35k|	if (sr.length < 18) {
  ------------------
  |  Branch (280:6): [True: 6, False: 5.34k]
  ------------------
  281|      6|		return ISC_R_UNEXPECTEDEND;
  282|      6|	}
  283|       |
  284|  5.34k|	algorithm = sr.base[2];
  285|       |
  286|  5.34k|	isc_buffer_forward(source, 18);
  287|  5.34k|	RETERR(mem_tobuffer(target, sr.base, 18));
  ------------------
  |  |  276|  5.34k|	{                                  \
  |  |  277|  5.34k|		isc_result_t _r = (x);     \
  |  |  278|  5.34k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 97, False: 5.25k]
  |  |  ------------------
  |  |  279|     97|			return ((_r));     \
  |  |  280|     97|		}                          \
  |  |  281|  5.34k|	}
  ------------------
  288|       |
  289|       |	/*
  290|       |	 * Signer.
  291|       |	 */
  292|  5.25k|	dns_name_init(&name);
  293|  5.25k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  5.25k|	{                                  \
  |  |  277|  5.25k|		isc_result_t _r = (x);     \
  |  |  278|  5.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 210, False: 5.04k]
  |  |  ------------------
  |  |  279|    210|			return ((_r));     \
  |  |  280|    210|		}                          \
  |  |  281|  5.25k|	}
  ------------------
  294|       |
  295|       |	/*
  296|       |	 * Sig.
  297|       |	 */
  298|  5.04k|	isc_buffer_activeregion(source, &sr);
  299|  5.04k|	if (sr.length == 0) {
  ------------------
  |  Branch (299:6): [True: 10, False: 5.03k]
  ------------------
  300|     10|		return ISC_R_UNEXPECTEDEND;
  301|     10|	}
  302|       |
  303|  5.03k|	if (algorithm == DNS_KEYALG_PRIVATEDNS ||
  ------------------
  |  Branch (303:6): [True: 371, False: 4.65k]
  ------------------
  304|  4.65k|	    algorithm == DNS_KEYALG_PRIVATEOID)
  ------------------
  |  Branch (304:6): [True: 82, False: 4.57k]
  ------------------
  305|    453|	{
  306|    453|		isc_buffer_t b = *source;
  307|    453|		RETERR(check_private(&b, algorithm));
  ------------------
  |  |  276|    453|	{                                  \
  |  |  277|    453|		isc_result_t _r = (x);     \
  |  |  278|    453|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 15, False: 438]
  |  |  ------------------
  |  |  279|     15|			return ((_r));     \
  |  |  280|     15|		}                          \
  |  |  281|    453|	}
  ------------------
  308|    438|	}
  309|       |
  310|  5.01k|	isc_buffer_forward(source, sr.length);
  311|  5.01k|	return mem_tobuffer(target, sr.base, sr.length);
  312|  5.03k|}
rdata.c:towire_sig:
  315|  2.09k|towire_sig(ARGS_TOWIRE) {
  316|  2.09k|	isc_region_t sr;
  317|  2.09k|	dns_name_t name;
  318|       |
  319|  2.09k|	REQUIRE(rdata->type == dns_rdatatype_sig);
  ------------------
  |  |  198|  2.09k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.09k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.09k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.09k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  320|  2.09k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.09k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.09k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.09k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.09k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  321|       |
  322|  2.09k|	dns_compress_setpermitted(cctx, false);
  323|  2.09k|	dns_rdata_toregion(rdata, &sr);
  324|       |	/*
  325|       |	 * type covered: 2
  326|       |	 * algorithm: 1
  327|       |	 * labels: 1
  328|       |	 * original ttl: 4
  329|       |	 * signature expiration: 4
  330|       |	 * time signed: 4
  331|       |	 * key footprint: 2
  332|       |	 */
  333|  2.09k|	RETERR(mem_tobuffer(target, sr.base, 18));
  ------------------
  |  |  276|  2.09k|	{                                  \
  |  |  277|  2.09k|		isc_result_t _r = (x);     \
  |  |  278|  2.09k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.09k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.09k|	}
  ------------------
  334|  2.09k|	isc_region_consume(&sr, 18);
  ------------------
  |  |   50|  2.09k|	do {                              \
  |  |   51|  2.09k|		isc_region_t *_r = (r);   \
  |  |   52|  2.09k|		unsigned int  _l = (l);   \
  |  |   53|  2.09k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.09k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.09k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.09k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.09k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.09k|		_r->base += _l;           \
  |  |   55|  2.09k|		_r->length -= _l;         \
  |  |   56|  2.09k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.09k]
  |  |  ------------------
  ------------------
  335|       |
  336|       |	/*
  337|       |	 * Signer.
  338|       |	 */
  339|  2.09k|	dns_name_init(&name);
  340|  2.09k|	dns_name_fromregion(&name, &sr);
  341|  2.09k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  2.09k|	do {                              \
  |  |   51|  2.09k|		isc_region_t *_r = (r);   \
  |  |   52|  2.09k|		unsigned int  _l = (l);   \
  |  |   53|  2.09k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.09k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.09k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.09k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.09k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.09k|		_r->base += _l;           \
  |  |   55|  2.09k|		_r->length -= _l;         \
  |  |   56|  2.09k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.09k]
  |  |  ------------------
  ------------------
  342|  2.09k|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|  2.09k|	{                                  \
  |  |  277|  2.09k|		isc_result_t _r = (x);     \
  |  |  278|  2.09k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.09k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.09k|	}
  ------------------
  343|       |
  344|       |	/*
  345|       |	 * Signature.
  346|       |	 */
  347|  2.09k|	return mem_tobuffer(target, sr.base, sr.length);
  348|  2.09k|}
rdata.c:totext_sig:
  141|  4.23k|totext_sig(ARGS_TOTEXT) {
  142|  4.23k|	isc_region_t sr;
  143|  4.23k|	char buf[sizeof("4294967295")];
  144|  4.23k|	dns_rdatatype_t covered;
  145|  4.23k|	unsigned long ttl;
  146|  4.23k|	unsigned long when;
  147|  4.23k|	unsigned long exp;
  148|  4.23k|	unsigned long foot;
  149|  4.23k|	dns_name_t name;
  150|  4.23k|	dns_name_t prefix;
  151|  4.23k|	unsigned int opts;
  152|       |
  153|  4.23k|	REQUIRE(rdata->type == dns_rdatatype_sig);
  ------------------
  |  |  198|  4.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.23k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  154|  4.23k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  4.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.23k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  155|       |
  156|  4.23k|	dns_rdata_toregion(rdata, &sr);
  157|       |
  158|       |	/*
  159|       |	 * Type covered.
  160|       |	 */
  161|  4.23k|	covered = uint16_fromregion(&sr);
  162|  4.23k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  4.23k|	do {                              \
  |  |   51|  4.23k|		isc_region_t *_r = (r);   \
  |  |   52|  4.23k|		unsigned int  _l = (l);   \
  |  |   53|  4.23k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.23k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.23k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.23k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.23k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.23k|		_r->base += _l;           \
  |  |   55|  4.23k|		_r->length -= _l;         \
  |  |   56|  4.23k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.23k]
  |  |  ------------------
  ------------------
  163|       |	/*
  164|       |	 * XXXAG We should have something like dns_rdatatype_isknown()
  165|       |	 * that does the right thing with type 0.
  166|       |	 */
  167|  4.23k|	if (dns_rdatatype_isknown(covered) && covered != 0) {
  ------------------
  |  Branch (167:6): [True: 1.39k, False: 2.83k]
  |  Branch (167:40): [True: 1.39k, False: 0]
  ------------------
  168|  1.39k|		RETERR(dns_rdatatype_totext(covered, target));
  ------------------
  |  |  276|  1.39k|	{                                  \
  |  |  277|  1.39k|		isc_result_t _r = (x);     \
  |  |  278|  1.39k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.39k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.39k|	}
  ------------------
  169|  2.83k|	} else {
  170|  2.83k|		snprintf(buf, sizeof(buf), "%u", covered);
  171|  2.83k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.83k|	{                                  \
  |  |  277|  2.83k|		isc_result_t _r = (x);     \
  |  |  278|  2.83k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.83k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.83k|	}
  ------------------
  172|  2.83k|	}
  173|  4.23k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  174|       |
  175|       |	/*
  176|       |	 * Algorithm.
  177|       |	 */
  178|  4.23k|	snprintf(buf, sizeof(buf), "%u", sr.base[0]);
  179|  4.23k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.23k|	do {                              \
  |  |   51|  4.23k|		isc_region_t *_r = (r);   \
  |  |   52|  4.23k|		unsigned int  _l = (l);   \
  |  |   53|  4.23k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.23k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.23k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.23k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.23k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.23k|		_r->base += _l;           \
  |  |   55|  4.23k|		_r->length -= _l;         \
  |  |   56|  4.23k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.23k]
  |  |  ------------------
  ------------------
  180|  4.23k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  181|  4.23k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  182|       |
  183|       |	/*
  184|       |	 * Labels.
  185|       |	 */
  186|  4.23k|	snprintf(buf, sizeof(buf), "%u", sr.base[0]);
  187|  4.23k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  4.23k|	do {                              \
  |  |   51|  4.23k|		isc_region_t *_r = (r);   \
  |  |   52|  4.23k|		unsigned int  _l = (l);   \
  |  |   53|  4.23k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.23k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.23k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.23k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.23k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.23k|		_r->base += _l;           \
  |  |   55|  4.23k|		_r->length -= _l;         \
  |  |   56|  4.23k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.23k]
  |  |  ------------------
  ------------------
  188|  4.23k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  189|  4.23k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  190|       |
  191|       |	/*
  192|       |	 * Ttl.
  193|       |	 */
  194|  4.23k|	ttl = uint32_fromregion(&sr);
  195|  4.23k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  4.23k|	do {                              \
  |  |   51|  4.23k|		isc_region_t *_r = (r);   \
  |  |   52|  4.23k|		unsigned int  _l = (l);   \
  |  |   53|  4.23k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.23k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.23k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.23k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.23k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.23k|		_r->base += _l;           \
  |  |   55|  4.23k|		_r->length -= _l;         \
  |  |   56|  4.23k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.23k]
  |  |  ------------------
  ------------------
  196|  4.23k|	snprintf(buf, sizeof(buf), "%lu", ttl);
  197|  4.23k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  198|  4.23k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  199|       |
  200|       |	/*
  201|       |	 * Sig exp.
  202|       |	 */
  203|  4.23k|	exp = uint32_fromregion(&sr);
  204|  4.23k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  4.23k|	do {                              \
  |  |   51|  4.23k|		isc_region_t *_r = (r);   \
  |  |   52|  4.23k|		unsigned int  _l = (l);   \
  |  |   53|  4.23k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.23k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.23k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.23k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.23k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.23k|		_r->base += _l;           \
  |  |   55|  4.23k|		_r->length -= _l;         \
  |  |   56|  4.23k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.23k]
  |  |  ------------------
  ------------------
  205|  4.23k|	RETERR(dns_time32_totext(exp, target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  206|       |
  207|  4.23k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  4.23k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (207:6): [True: 0, False: 4.23k]
  ------------------
  208|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  209|      0|	}
  210|  4.23k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  211|       |
  212|       |	/*
  213|       |	 * Time signed.
  214|       |	 */
  215|  4.23k|	when = uint32_fromregion(&sr);
  216|  4.23k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  4.23k|	do {                              \
  |  |   51|  4.23k|		isc_region_t *_r = (r);   \
  |  |   52|  4.23k|		unsigned int  _l = (l);   \
  |  |   53|  4.23k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.23k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.23k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.23k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.23k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.23k|		_r->base += _l;           \
  |  |   55|  4.23k|		_r->length -= _l;         \
  |  |   56|  4.23k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.23k]
  |  |  ------------------
  ------------------
  217|  4.23k|	RETERR(dns_time32_totext(when, target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  218|  4.23k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  219|       |
  220|       |	/*
  221|       |	 * Footprint.
  222|       |	 */
  223|  4.23k|	foot = uint16_fromregion(&sr);
  224|  4.23k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  4.23k|	do {                              \
  |  |   51|  4.23k|		isc_region_t *_r = (r);   \
  |  |   52|  4.23k|		unsigned int  _l = (l);   \
  |  |   53|  4.23k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.23k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.23k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.23k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.23k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.23k|		_r->base += _l;           \
  |  |   55|  4.23k|		_r->length -= _l;         \
  |  |   56|  4.23k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.23k]
  |  |  ------------------
  ------------------
  225|  4.23k|	snprintf(buf, sizeof(buf), "%lu", foot);
  226|  4.23k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  227|  4.23k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  228|       |
  229|       |	/*
  230|       |	 * Signer.
  231|       |	 */
  232|  4.23k|	dns_name_init(&name);
  233|  4.23k|	dns_name_init(&prefix);
  234|  4.23k|	dns_name_fromregion(&name, &sr);
  235|  4.23k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  4.23k|	do {                              \
  |  |   51|  4.23k|		isc_region_t *_r = (r);   \
  |  |   52|  4.23k|		unsigned int  _l = (l);   \
  |  |   53|  4.23k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.23k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.23k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.23k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.23k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.23k|		_r->base += _l;           \
  |  |   55|  4.23k|		_r->length -= _l;         \
  |  |   56|  4.23k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.23k]
  |  |  ------------------
  ------------------
  236|  4.23k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (236:9): [True: 0, False: 4.23k]
  ------------------
  237|  4.23k|							 : 0;
  238|  4.23k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  239|       |
  240|       |	/*
  241|       |	 * Sig.
  242|       |	 */
  243|  4.23k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  244|  4.23k|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (244:6): [True: 0, False: 4.23k]
  ------------------
  245|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  246|  4.23k|	} else {
  247|  4.23k|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|  4.23k|	{                                  \
  |  |  277|  4.23k|		isc_result_t _r = (x);     \
  |  |  278|  4.23k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.23k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.23k|	}
  ------------------
  248|  4.23k|					 target));
  249|  4.23k|	}
  250|  4.23k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  4.23k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (250:6): [True: 0, False: 4.23k]
  ------------------
  251|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  252|      0|	}
  253|       |
  254|  4.23k|	return ISC_R_SUCCESS;
  255|  4.23k|}
rdata.c:covers_sig:
  586|  4.74k|covers_sig(dns_rdata_t *rdata) {
  587|  4.74k|	dns_rdatatype_t type;
  588|  4.74k|	isc_region_t r;
  589|       |
  590|  4.74k|	REQUIRE(rdata->type == dns_rdatatype_sig);
  ------------------
  |  |  198|  4.74k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.74k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.74k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.74k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  591|       |
  592|  4.74k|	dns_rdata_toregion(rdata, &r);
  593|  4.74k|	type = uint16_fromregion(&r);
  594|       |
  595|  4.74k|	return type;
  596|  4.74k|}

rdata.c:fromwire_sink:
  107|  1.87k|fromwire_sink(ARGS_FROMWIRE) {
  108|  1.87k|	isc_region_t sr;
  109|       |
  110|  1.87k|	REQUIRE(type == dns_rdatatype_sink);
  ------------------
  |  |  198|  1.87k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.87k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.87k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.87k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  111|       |
  112|  1.87k|	UNUSED(type);
  ------------------
  |  |   69|  1.87k|#define UNUSED(x) (void)(x)
  ------------------
  113|  1.87k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.87k|#define UNUSED(x) (void)(x)
  ------------------
  114|  1.87k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.87k|#define UNUSED(x) (void)(x)
  ------------------
  115|       |
  116|  1.87k|	isc_buffer_activeregion(source, &sr);
  117|  1.87k|	if (sr.length < 3) {
  ------------------
  |  Branch (117:6): [True: 4, False: 1.86k]
  ------------------
  118|      4|		return ISC_R_UNEXPECTEDEND;
  119|      4|	}
  120|       |
  121|  1.86k|	RETERR(mem_tobuffer(target, sr.base, sr.length));
  ------------------
  |  |  276|  1.86k|	{                                  \
  |  |  277|  1.86k|		isc_result_t _r = (x);     \
  |  |  278|  1.86k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 235, False: 1.63k]
  |  |  ------------------
  |  |  279|    235|			return ((_r));     \
  |  |  280|    235|		}                          \
  |  |  281|  1.86k|	}
  ------------------
  122|  1.63k|	isc_buffer_forward(source, sr.length);
  123|  1.63k|	return ISC_R_SUCCESS;
  124|  1.86k|}
rdata.c:towire_sink:
  127|    697|towire_sink(ARGS_TOWIRE) {
  128|    697|	REQUIRE(rdata->type == dns_rdatatype_sink);
  ------------------
  |  |  198|    697|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    697|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 697, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    697|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  129|    697|	REQUIRE(rdata->length >= 3);
  ------------------
  |  |  198|    697|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    697|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 697, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    697|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|       |
  131|    697|	UNUSED(cctx);
  ------------------
  |  |   69|    697|#define UNUSED(x) (void)(x)
  ------------------
  132|       |
  133|    697|	return mem_tobuffer(target, rdata->data, rdata->length);
  134|    697|}
rdata.c:totext_sink:
   61|  1.37k|totext_sink(ARGS_TOTEXT) {
   62|  1.37k|	isc_region_t sr;
   63|  1.37k|	char buf[sizeof("255 255 255")];
   64|  1.37k|	uint8_t meaning, coding, subcoding;
   65|       |
   66|  1.37k|	REQUIRE(rdata->type == dns_rdatatype_sink);
  ------------------
  |  |  198|  1.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   67|  1.37k|	REQUIRE(rdata->length >= 3);
  ------------------
  |  |  198|  1.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|       |
   69|  1.37k|	dns_rdata_toregion(rdata, &sr);
   70|       |
   71|       |	/* Meaning, Coding and Subcoding */
   72|  1.37k|	meaning = uint8_fromregion(&sr);
   73|  1.37k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.37k|	do {                              \
  |  |   51|  1.37k|		isc_region_t *_r = (r);   \
  |  |   52|  1.37k|		unsigned int  _l = (l);   \
  |  |   53|  1.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.37k|		_r->base += _l;           \
  |  |   55|  1.37k|		_r->length -= _l;         \
  |  |   56|  1.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.37k]
  |  |  ------------------
  ------------------
   74|  1.37k|	coding = uint8_fromregion(&sr);
   75|  1.37k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.37k|	do {                              \
  |  |   51|  1.37k|		isc_region_t *_r = (r);   \
  |  |   52|  1.37k|		unsigned int  _l = (l);   \
  |  |   53|  1.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.37k|		_r->base += _l;           \
  |  |   55|  1.37k|		_r->length -= _l;         \
  |  |   56|  1.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.37k]
  |  |  ------------------
  ------------------
   76|  1.37k|	subcoding = uint8_fromregion(&sr);
   77|  1.37k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.37k|	do {                              \
  |  |   51|  1.37k|		isc_region_t *_r = (r);   \
  |  |   52|  1.37k|		unsigned int  _l = (l);   \
  |  |   53|  1.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.37k|		_r->base += _l;           \
  |  |   55|  1.37k|		_r->length -= _l;         \
  |  |   56|  1.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.37k]
  |  |  ------------------
  ------------------
   78|  1.37k|	snprintf(buf, sizeof(buf), "%u %u %u", meaning, coding, subcoding);
   79|  1.37k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.37k|	{                                  \
  |  |  277|  1.37k|		isc_result_t _r = (x);     \
  |  |  278|  1.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.37k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.37k|	}
  ------------------
   80|       |
   81|  1.37k|	if (sr.length == 0U) {
  ------------------
  |  Branch (81:6): [True: 471, False: 907]
  ------------------
   82|    471|		return ISC_R_SUCCESS;
   83|    471|	}
   84|       |
   85|       |	/* data */
   86|    907|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    907|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (86:6): [True: 0, False: 907]
  ------------------
   87|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   88|      0|	}
   89|       |
   90|    907|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|    907|	{                                  \
  |  |  277|    907|		isc_result_t _r = (x);     \
  |  |  278|    907|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 907]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    907|	}
  ------------------
   91|       |
   92|    907|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (92:6): [True: 0, False: 907]
  ------------------
   93|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   94|    907|	} else {
   95|    907|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    907|	{                                  \
  |  |  277|    907|		isc_result_t _r = (x);     \
  |  |  278|    907|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 907]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    907|	}
  ------------------
   96|    907|					 target));
   97|    907|	}
   98|       |
   99|    907|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    907|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (99:6): [True: 0, False: 907]
  ------------------
  100|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  101|      0|	}
  102|       |
  103|    907|	return ISC_R_SUCCESS;
  104|    907|}

rdata.c:fromwire_smimea:
   35|  1.16k|fromwire_smimea(ARGS_FROMWIRE) {
   36|  1.16k|	REQUIRE(type == dns_rdatatype_smimea);
  ------------------
  |  |  198|  1.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.16k|	return generic_fromwire_tlsa(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.16k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.16k|}
rdata.c:towire_smimea:
   42|    535|towire_smimea(ARGS_TOWIRE) {
   43|    535|	isc_region_t sr;
   44|       |
   45|    535|	REQUIRE(rdata->type == dns_rdatatype_smimea);
  ------------------
  |  |  198|    535|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    535|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 535, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    535|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   46|    535|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    535|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    535|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 535, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    535|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   47|       |
   48|    535|	UNUSED(cctx);
  ------------------
  |  |   69|    535|#define UNUSED(x) (void)(x)
  ------------------
   49|       |
   50|    535|	dns_rdata_toregion(rdata, &sr);
   51|    535|	return mem_tobuffer(target, sr.base, sr.length);
   52|    535|}
rdata.c:totext_smimea:
   27|  1.00k|totext_smimea(ARGS_TOTEXT) {
   28|  1.00k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.00k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.00k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.00k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|  1.00k|	REQUIRE(rdata->type == dns_rdatatype_smimea);
  ------------------
  |  |  198|  1.00k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.00k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.00k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.00k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|  1.00k|	return generic_totext_tlsa(CALL_TOTEXT);
  ------------------
  |  |   85|  1.00k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|  1.00k|}

rdata.c:compare_soa:
  234|  3.13k|compare_soa(ARGS_COMPARE) {
  235|  3.13k|	isc_region_t region1;
  236|  3.13k|	isc_region_t region2;
  237|  3.13k|	dns_name_t name1;
  238|  3.13k|	dns_name_t name2;
  239|  3.13k|	int order;
  240|       |
  241|  3.13k|	REQUIRE(rdata1->type == rdata2->type);
  ------------------
  |  |  198|  3.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  242|  3.13k|	REQUIRE(rdata1->rdclass == rdata2->rdclass);
  ------------------
  |  |  198|  3.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  243|  3.13k|	REQUIRE(rdata1->type == dns_rdatatype_soa);
  ------------------
  |  |  198|  3.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  244|  3.13k|	REQUIRE(rdata1->length != 0);
  ------------------
  |  |  198|  3.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  245|  3.13k|	REQUIRE(rdata2->length != 0);
  ------------------
  |  |  198|  3.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  246|       |
  247|  3.13k|	dns_name_init(&name1);
  248|  3.13k|	dns_name_init(&name2);
  249|       |
  250|  3.13k|	dns_rdata_toregion(rdata1, &region1);
  251|  3.13k|	dns_rdata_toregion(rdata2, &region2);
  252|       |
  253|  3.13k|	dns_name_fromregion(&name1, &region1);
  254|  3.13k|	dns_name_fromregion(&name2, &region2);
  255|       |
  256|  3.13k|	order = dns_name_rdatacompare(&name1, &name2);
  257|  3.13k|	if (order != 0) {
  ------------------
  |  Branch (257:6): [True: 705, False: 2.43k]
  ------------------
  258|    705|		return order;
  259|    705|	}
  260|       |
  261|  2.43k|	isc_region_consume(&region1, name_length(&name1));
  ------------------
  |  |   50|  2.43k|	do {                              \
  |  |   51|  2.43k|		isc_region_t *_r = (r);   \
  |  |   52|  2.43k|		unsigned int  _l = (l);   \
  |  |   53|  2.43k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.43k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.43k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.43k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.43k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.43k|		_r->base += _l;           \
  |  |   55|  2.43k|		_r->length -= _l;         \
  |  |   56|  2.43k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.43k]
  |  |  ------------------
  ------------------
  262|  2.43k|	isc_region_consume(&region2, name_length(&name2));
  ------------------
  |  |   50|  2.43k|	do {                              \
  |  |   51|  2.43k|		isc_region_t *_r = (r);   \
  |  |   52|  2.43k|		unsigned int  _l = (l);   \
  |  |   53|  2.43k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.43k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.43k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.43k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.43k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.43k|		_r->base += _l;           \
  |  |   55|  2.43k|		_r->length -= _l;         \
  |  |   56|  2.43k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.43k]
  |  |  ------------------
  ------------------
  263|       |
  264|  2.43k|	dns_name_init(&name1);
  265|  2.43k|	dns_name_init(&name2);
  266|       |
  267|  2.43k|	dns_name_fromregion(&name1, &region1);
  268|  2.43k|	dns_name_fromregion(&name2, &region2);
  269|       |
  270|  2.43k|	order = dns_name_rdatacompare(&name1, &name2);
  271|  2.43k|	if (order != 0) {
  ------------------
  |  Branch (271:6): [True: 783, False: 1.64k]
  ------------------
  272|    783|		return order;
  273|    783|	}
  274|       |
  275|  1.64k|	isc_region_consume(&region1, name_length(&name1));
  ------------------
  |  |   50|  1.64k|	do {                              \
  |  |   51|  1.64k|		isc_region_t *_r = (r);   \
  |  |   52|  1.64k|		unsigned int  _l = (l);   \
  |  |   53|  1.64k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.64k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.64k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.64k|		_r->base += _l;           \
  |  |   55|  1.64k|		_r->length -= _l;         \
  |  |   56|  1.64k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.64k]
  |  |  ------------------
  ------------------
  276|  1.64k|	isc_region_consume(&region2, name_length(&name2));
  ------------------
  |  |   50|  1.64k|	do {                              \
  |  |   51|  1.64k|		isc_region_t *_r = (r);   \
  |  |   52|  1.64k|		unsigned int  _l = (l);   \
  |  |   53|  1.64k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.64k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.64k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.64k|		_r->base += _l;           \
  |  |   55|  1.64k|		_r->length -= _l;         \
  |  |   56|  1.64k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.64k]
  |  |  ------------------
  ------------------
  277|       |
  278|  1.64k|	return isc_region_compare(&region1, &region2);
  279|  2.43k|}
rdata.c:fromwire_soa:
  162|  5.44k|fromwire_soa(ARGS_FROMWIRE) {
  163|  5.44k|	dns_name_t mname;
  164|  5.44k|	dns_name_t rname;
  165|  5.44k|	isc_region_t sregion;
  166|  5.44k|	isc_region_t tregion;
  167|       |
  168|  5.44k|	REQUIRE(type == dns_rdatatype_soa);
  ------------------
  |  |  198|  5.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  169|       |
  170|  5.44k|	UNUSED(type);
  ------------------
  |  |   69|  5.44k|#define UNUSED(x) (void)(x)
  ------------------
  171|  5.44k|	UNUSED(rdclass);
  ------------------
  |  |   69|  5.44k|#define UNUSED(x) (void)(x)
  ------------------
  172|       |
  173|  5.44k|	dctx = dns_decompress_setpermitted(dctx, true);
  174|       |
  175|  5.44k|	dns_name_init(&mname);
  176|  5.44k|	dns_name_init(&rname);
  177|       |
  178|  5.44k|	RETERR(dns_name_fromwire(&mname, source, dctx, target));
  ------------------
  |  |  276|  5.44k|	{                                  \
  |  |  277|  5.44k|		isc_result_t _r = (x);     \
  |  |  278|  5.44k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 267, False: 5.18k]
  |  |  ------------------
  |  |  279|    267|			return ((_r));     \
  |  |  280|    267|		}                          \
  |  |  281|  5.44k|	}
  ------------------
  179|  5.18k|	RETERR(dns_name_fromwire(&rname, source, dctx, target));
  ------------------
  |  |  276|  5.18k|	{                                  \
  |  |  277|  5.18k|		isc_result_t _r = (x);     \
  |  |  278|  5.18k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 404, False: 4.77k]
  |  |  ------------------
  |  |  279|    404|			return ((_r));     \
  |  |  280|    404|		}                          \
  |  |  281|  5.18k|	}
  ------------------
  180|       |
  181|  4.77k|	isc_buffer_activeregion(source, &sregion);
  182|  4.77k|	isc_buffer_availableregion(target, &tregion);
  183|       |
  184|  4.77k|	if (sregion.length < 20) {
  ------------------
  |  Branch (184:6): [True: 6, False: 4.77k]
  ------------------
  185|      6|		return ISC_R_UNEXPECTEDEND;
  186|      6|	}
  187|  4.77k|	if (tregion.length < 20) {
  ------------------
  |  Branch (187:6): [True: 301, False: 4.47k]
  ------------------
  188|    301|		return ISC_R_NOSPACE;
  189|    301|	}
  190|       |
  191|  4.47k|	memmove(tregion.base, sregion.base, 20);
  192|  4.47k|	isc_buffer_forward(source, 20);
  193|  4.47k|	isc_buffer_add(target, 20);
  194|       |
  195|  4.47k|	return ISC_R_SUCCESS;
  196|  4.77k|}
rdata.c:towire_soa:
  199|  2.33k|towire_soa(ARGS_TOWIRE) {
  200|  2.33k|	isc_region_t sregion;
  201|  2.33k|	isc_region_t tregion;
  202|  2.33k|	dns_name_t mname;
  203|  2.33k|	dns_name_t rname;
  204|       |
  205|  2.33k|	REQUIRE(rdata->type == dns_rdatatype_soa);
  ------------------
  |  |  198|  2.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  206|  2.33k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  207|       |
  208|  2.33k|	dns_compress_setpermitted(cctx, true);
  209|       |
  210|  2.33k|	dns_name_init(&mname);
  211|  2.33k|	dns_name_init(&rname);
  212|       |
  213|  2.33k|	dns_rdata_toregion(rdata, &sregion);
  214|       |
  215|  2.33k|	dns_name_fromregion(&mname, &sregion);
  216|  2.33k|	isc_region_consume(&sregion, name_length(&mname));
  ------------------
  |  |   50|  2.33k|	do {                              \
  |  |   51|  2.33k|		isc_region_t *_r = (r);   \
  |  |   52|  2.33k|		unsigned int  _l = (l);   \
  |  |   53|  2.33k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.33k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.33k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.33k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.33k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.33k|		_r->base += _l;           \
  |  |   55|  2.33k|		_r->length -= _l;         \
  |  |   56|  2.33k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.33k]
  |  |  ------------------
  ------------------
  217|  2.33k|	RETERR(dns_name_towire(&mname, cctx, target));
  ------------------
  |  |  276|  2.33k|	{                                  \
  |  |  277|  2.33k|		isc_result_t _r = (x);     \
  |  |  278|  2.33k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.33k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.33k|	}
  ------------------
  218|       |
  219|  2.33k|	dns_name_fromregion(&rname, &sregion);
  220|  2.33k|	isc_region_consume(&sregion, name_length(&rname));
  ------------------
  |  |   50|  2.33k|	do {                              \
  |  |   51|  2.33k|		isc_region_t *_r = (r);   \
  |  |   52|  2.33k|		unsigned int  _l = (l);   \
  |  |   53|  2.33k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.33k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.33k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.33k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.33k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.33k|		_r->base += _l;           \
  |  |   55|  2.33k|		_r->length -= _l;         \
  |  |   56|  2.33k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.33k]
  |  |  ------------------
  ------------------
  221|  2.33k|	RETERR(dns_name_towire(&rname, cctx, target));
  ------------------
  |  |  276|  2.33k|	{                                  \
  |  |  277|  2.33k|		isc_result_t _r = (x);     \
  |  |  278|  2.33k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.32k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.33k|	}
  ------------------
  222|       |
  223|  2.32k|	isc_buffer_availableregion(target, &tregion);
  224|  2.32k|	if (tregion.length < 20) {
  ------------------
  |  Branch (224:6): [True: 1, False: 2.32k]
  ------------------
  225|      1|		return ISC_R_NOSPACE;
  226|      1|	}
  227|       |
  228|  2.32k|	memmove(tregion.base, sregion.base, 20);
  229|  2.32k|	isc_buffer_add(target, 20);
  230|  2.32k|	return ISC_R_SUCCESS;
  231|  2.32k|}
rdata.c:totext_soa:
   84|  4.33k|totext_soa(ARGS_TOTEXT) {
   85|  4.33k|	isc_region_t dregion;
   86|  4.33k|	dns_name_t mname;
   87|  4.33k|	dns_name_t rname;
   88|  4.33k|	dns_name_t prefix;
   89|  4.33k|	unsigned int opts;
   90|  4.33k|	int i;
   91|  4.33k|	bool multiline;
   92|  4.33k|	bool comm;
   93|       |
   94|  4.33k|	REQUIRE(rdata->type == dns_rdatatype_soa);
  ------------------
  |  |  198|  4.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   95|  4.33k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  4.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  4.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   96|       |
   97|  4.33k|	multiline = ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0);
  ------------------
  |  |  191|  4.33k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
   98|  4.33k|	if (multiline) {
  ------------------
  |  Branch (98:6): [True: 0, False: 4.33k]
  ------------------
   99|      0|		comm = ((tctx->flags & DNS_STYLEFLAG_RRCOMMENT) != 0);
  ------------------
  |  |  195|      0|#define DNS_STYLEFLAG_RRCOMMENT 0x00000004ULL
  ------------------
  100|  4.33k|	} else {
  101|  4.33k|		comm = false;
  102|  4.33k|	}
  103|       |
  104|  4.33k|	dns_name_init(&mname);
  105|  4.33k|	dns_name_init(&rname);
  106|  4.33k|	dns_name_init(&prefix);
  107|       |
  108|  4.33k|	dns_rdata_toregion(rdata, &dregion);
  109|       |
  110|  4.33k|	dns_name_fromregion(&mname, &dregion);
  111|  4.33k|	isc_region_consume(&dregion, name_length(&mname));
  ------------------
  |  |   50|  4.33k|	do {                              \
  |  |   51|  4.33k|		isc_region_t *_r = (r);   \
  |  |   52|  4.33k|		unsigned int  _l = (l);   \
  |  |   53|  4.33k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.33k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.33k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.33k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.33k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.33k|		_r->base += _l;           \
  |  |   55|  4.33k|		_r->length -= _l;         \
  |  |   56|  4.33k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.33k]
  |  |  ------------------
  ------------------
  112|       |
  113|  4.33k|	dns_name_fromregion(&rname, &dregion);
  114|  4.33k|	isc_region_consume(&dregion, name_length(&rname));
  ------------------
  |  |   50|  4.33k|	do {                              \
  |  |   51|  4.33k|		isc_region_t *_r = (r);   \
  |  |   52|  4.33k|		unsigned int  _l = (l);   \
  |  |   53|  4.33k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  4.33k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  4.33k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4.33k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  4.33k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  4.33k|		_r->base += _l;           \
  |  |   55|  4.33k|		_r->length -= _l;         \
  |  |   56|  4.33k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 4.33k]
  |  |  ------------------
  ------------------
  115|       |
  116|  4.33k|	opts = name_prefix(&mname, tctx->origin, &prefix)
  ------------------
  |  Branch (116:9): [True: 0, False: 4.33k]
  ------------------
  117|  4.33k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  118|  4.33k|		       : 0;
  119|  4.33k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  4.33k|	{                                  \
  |  |  277|  4.33k|		isc_result_t _r = (x);     \
  |  |  278|  4.33k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.33k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.33k|	}
  ------------------
  120|       |
  121|  4.33k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  4.33k|	{                                  \
  |  |  277|  4.33k|		isc_result_t _r = (x);     \
  |  |  278|  4.33k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.33k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.33k|	}
  ------------------
  122|       |
  123|  4.33k|	opts = name_prefix(&rname, tctx->origin, &prefix)
  ------------------
  |  Branch (123:9): [True: 0, False: 4.33k]
  ------------------
  124|  4.33k|		       ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  125|  4.33k|		       : 0;
  126|  4.33k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  4.33k|	{                                  \
  |  |  277|  4.33k|		isc_result_t _r = (x);     \
  |  |  278|  4.33k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.33k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.33k|	}
  ------------------
  127|       |
  128|  4.33k|	if (multiline) {
  ------------------
  |  Branch (128:6): [True: 0, False: 4.33k]
  ------------------
  129|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  130|      0|	}
  131|  4.33k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  4.33k|	{                                  \
  |  |  277|  4.33k|		isc_result_t _r = (x);     \
  |  |  278|  4.33k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 4.33k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  4.33k|	}
  ------------------
  132|       |
  133|  26.0k|	for (i = 0; i < 5; i++) {
  ------------------
  |  Branch (133:14): [True: 21.6k, False: 4.33k]
  ------------------
  134|  21.6k|		char buf[sizeof("0123456789 ; ")];
  135|  21.6k|		unsigned long num;
  136|  21.6k|		num = uint32_fromregion(&dregion);
  137|  21.6k|		isc_region_consume(&dregion, 4);
  ------------------
  |  |   50|  21.6k|	do {                              \
  |  |   51|  21.6k|		isc_region_t *_r = (r);   \
  |  |   52|  21.6k|		unsigned int  _l = (l);   \
  |  |   53|  21.6k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  21.6k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  21.6k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 21.6k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  21.6k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  21.6k|		_r->base += _l;           \
  |  |   55|  21.6k|		_r->length -= _l;         \
  |  |   56|  21.6k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 21.6k]
  |  |  ------------------
  ------------------
  138|  21.6k|		snprintf(buf, sizeof(buf), comm ? "%-10lu ; " : "%lu", num);
  ------------------
  |  Branch (138:30): [True: 0, False: 21.6k]
  ------------------
  139|  21.6k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  21.6k|	{                                  \
  |  |  277|  21.6k|		isc_result_t _r = (x);     \
  |  |  278|  21.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 21.6k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  21.6k|	}
  ------------------
  140|  21.6k|		if (comm) {
  ------------------
  |  Branch (140:7): [True: 0, False: 21.6k]
  ------------------
  141|      0|			RETERR(str_totext(soa_fieldnames[i], target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  142|       |			/* Print times in week/day/hour/minute/second form */
  143|      0|			if (i >= 1) {
  ------------------
  |  Branch (143:8): [True: 0, False: 0]
  ------------------
  144|      0|				RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  145|      0|				RETERR(dns_ttl_totext(num, true, true, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  146|      0|				RETERR(str_totext(")", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  147|      0|			}
  148|      0|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  149|  21.6k|		} else if (i < 4) {
  ------------------
  |  Branch (149:14): [True: 17.3k, False: 4.33k]
  ------------------
  150|  17.3k|			RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  17.3k|	{                                  \
  |  |  277|  17.3k|		isc_result_t _r = (x);     \
  |  |  278|  17.3k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.3k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.3k|	}
  ------------------
  151|  17.3k|		}
  152|  21.6k|	}
  153|       |
  154|  4.33k|	if (multiline) {
  ------------------
  |  Branch (154:6): [True: 0, False: 4.33k]
  ------------------
  155|      0|		RETERR(str_totext(")", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  156|      0|	}
  157|       |
  158|  4.33k|	return ISC_R_SUCCESS;
  159|  4.33k|}

rdata.c:fromwire_spf:
   35|  1.01k|fromwire_spf(ARGS_FROMWIRE) {
   36|  1.01k|	REQUIRE(type == dns_rdatatype_spf);
  ------------------
  |  |  198|  1.01k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.01k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.01k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.01k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.01k|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.01k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.01k|}
rdata.c:towire_spf:
   42|    438|towire_spf(ARGS_TOWIRE) {
   43|    438|	REQUIRE(rdata->type == dns_rdatatype_spf);
  ------------------
  |  |  198|    438|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    438|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 438, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    438|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    438|	UNUSED(cctx);
  ------------------
  |  |   69|    438|#define UNUSED(x) (void)(x)
  ------------------
   46|       |
   47|    438|	return mem_tobuffer(target, rdata->data, rdata->length);
   48|    438|}
rdata.c:totext_spf:
   27|    865|totext_spf(ARGS_TOTEXT) {
   28|    865|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    865|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    865|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 865, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    865|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|    865|	REQUIRE(rdata->type == dns_rdatatype_spf);
  ------------------
  |  |  198|    865|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    865|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 865, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    865|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|    865|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|    865|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|    865|}

rdata.c:fromwire_sshfp:
  127|  2.11k|fromwire_sshfp(ARGS_FROMWIRE) {
  128|  2.11k|	isc_region_t sr;
  129|       |
  130|  2.11k|	REQUIRE(type == dns_rdatatype_sshfp);
  ------------------
  |  |  198|  2.11k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.11k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.11k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.11k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  131|       |
  132|  2.11k|	UNUSED(type);
  ------------------
  |  |   69|  2.11k|#define UNUSED(x) (void)(x)
  ------------------
  133|  2.11k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.11k|#define UNUSED(x) (void)(x)
  ------------------
  134|  2.11k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.11k|#define UNUSED(x) (void)(x)
  ------------------
  135|       |
  136|  2.11k|	isc_buffer_activeregion(source, &sr);
  137|  2.11k|	if (sr.length < 2) {
  ------------------
  |  Branch (137:6): [True: 5, False: 2.10k]
  ------------------
  138|      5|		return ISC_R_UNEXPECTEDEND;
  139|      5|	}
  140|       |
  141|  2.10k|	if ((sr.base[1] == 1 && sr.length != ISC_SHA1_DIGESTLENGTH + 2) ||
  ------------------
  |  |   50|    212|#define ISC_SHA1_DIGESTLENGTH	20
  ------------------
  |  Branch (141:7): [True: 212, False: 1.89k]
  |  Branch (141:26): [True: 2, False: 210]
  ------------------
  142|  2.10k|	    (sr.base[1] == 2 && sr.length != ISC_SHA256_DIGESTLENGTH + 2))
  ------------------
  |  |   54|    338|#define ISC_SHA256_DIGESTLENGTH 32
  ------------------
  |  Branch (142:7): [True: 338, False: 1.76k]
  |  Branch (142:26): [True: 2, False: 336]
  ------------------
  143|      4|	{
  144|      4|		return DNS_R_FORMERR;
  145|      4|	}
  146|       |
  147|  2.10k|	isc_buffer_forward(source, sr.length);
  148|  2.10k|	return mem_tobuffer(target, sr.base, sr.length);
  149|  2.10k|}
rdata.c:towire_sshfp:
  152|    925|towire_sshfp(ARGS_TOWIRE) {
  153|    925|	isc_region_t sr;
  154|       |
  155|    925|	REQUIRE(rdata->type == dns_rdatatype_sshfp);
  ------------------
  |  |  198|    925|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    925|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 925, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    925|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  156|    925|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    925|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    925|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 925, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    925|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  157|       |
  158|    925|	UNUSED(cctx);
  ------------------
  |  |   69|    925|#define UNUSED(x) (void)(x)
  ------------------
  159|       |
  160|    925|	dns_rdata_toregion(rdata, &sr);
  161|    925|	return mem_tobuffer(target, sr.base, sr.length);
  162|    925|}
rdata.c:totext_sshfp:
   75|  1.83k|totext_sshfp(ARGS_TOTEXT) {
   76|  1.83k|	isc_region_t sr;
   77|  1.83k|	char buf[sizeof("64000 ")];
   78|  1.83k|	unsigned int n;
   79|       |
   80|  1.83k|	REQUIRE(rdata->type == dns_rdatatype_sshfp);
  ------------------
  |  |  198|  1.83k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.83k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.83k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.83k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   81|  1.83k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.83k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.83k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.83k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.83k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   82|       |
   83|  1.83k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.83k|#define UNUSED(x) (void)(x)
  ------------------
   84|       |
   85|  1.83k|	dns_rdata_toregion(rdata, &sr);
   86|       |
   87|       |	/*
   88|       |	 * Algorithm.
   89|       |	 */
   90|  1.83k|	n = uint8_fromregion(&sr);
   91|  1.83k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.83k|	do {                              \
  |  |   51|  1.83k|		isc_region_t *_r = (r);   \
  |  |   52|  1.83k|		unsigned int  _l = (l);   \
  |  |   53|  1.83k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.83k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.83k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.83k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.83k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.83k|		_r->base += _l;           \
  |  |   55|  1.83k|		_r->length -= _l;         \
  |  |   56|  1.83k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.83k]
  |  |  ------------------
  ------------------
   92|  1.83k|	snprintf(buf, sizeof(buf), "%u ", n);
   93|  1.83k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.83k|	{                                  \
  |  |  277|  1.83k|		isc_result_t _r = (x);     \
  |  |  278|  1.83k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.83k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.83k|	}
  ------------------
   94|       |
   95|       |	/*
   96|       |	 * Digest type.
   97|       |	 */
   98|  1.83k|	n = uint8_fromregion(&sr);
   99|  1.83k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.83k|	do {                              \
  |  |   51|  1.83k|		isc_region_t *_r = (r);   \
  |  |   52|  1.83k|		unsigned int  _l = (l);   \
  |  |   53|  1.83k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.83k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.83k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.83k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.83k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.83k|		_r->base += _l;           \
  |  |   55|  1.83k|		_r->length -= _l;         \
  |  |   56|  1.83k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.83k]
  |  |  ------------------
  ------------------
  100|  1.83k|	snprintf(buf, sizeof(buf), "%u", n);
  101|  1.83k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.83k|	{                                  \
  |  |  277|  1.83k|		isc_result_t _r = (x);     \
  |  |  278|  1.83k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.83k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.83k|	}
  ------------------
  102|       |
  103|  1.83k|	if (sr.length == 0U) {
  ------------------
  |  Branch (103:6): [True: 1.03k, False: 804]
  ------------------
  104|  1.03k|		return ISC_R_SUCCESS;
  105|  1.03k|	}
  106|       |
  107|       |	/*
  108|       |	 * Digest.
  109|       |	 */
  110|    804|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    804|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (110:6): [True: 0, False: 804]
  ------------------
  111|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  112|      0|	}
  113|    804|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|    804|	{                                  \
  |  |  277|    804|		isc_result_t _r = (x);     \
  |  |  278|    804|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 804]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    804|	}
  ------------------
  114|    804|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (114:6): [True: 0, False: 804]
  ------------------
  115|      0|		RETERR(isc_hex_totext(&sr, 0, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  116|    804|	} else {
  117|    804|		RETERR(isc_hex_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    804|	{                                  \
  |  |  277|    804|		isc_result_t _r = (x);     \
  |  |  278|    804|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 804]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    804|	}
  ------------------
  118|    804|				      target));
  119|    804|	}
  120|    804|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    804|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (120:6): [True: 0, False: 804]
  ------------------
  121|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  122|      0|	}
  123|    804|	return ISC_R_SUCCESS;
  124|    804|}

rdata.c:fromwire_ta:
   36|    722|fromwire_ta(ARGS_FROMWIRE) {
   37|    722|	REQUIRE(type == dns_rdatatype_ta);
  ------------------
  |  |  198|    722|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    722|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 722, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    722|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   38|       |
   39|    722|	return generic_fromwire_ds(CALL_FROMWIRE);
  ------------------
  |  |   91|    722|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   40|    722|}
rdata.c:towire_ta:
   43|    344|towire_ta(ARGS_TOWIRE) {
   44|    344|	isc_region_t sr;
   45|       |
   46|    344|	REQUIRE(rdata->type == dns_rdatatype_ta);
  ------------------
  |  |  198|    344|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    344|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 344, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    344|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   47|    344|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    344|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    344|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 344, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    344|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   48|       |
   49|    344|	UNUSED(cctx);
  ------------------
  |  |   69|    344|#define UNUSED(x) (void)(x)
  ------------------
   50|       |
   51|    344|	dns_rdata_toregion(rdata, &sr);
   52|    344|	return mem_tobuffer(target, sr.base, sr.length);
   53|    344|}
rdata.c:totext_ta:
   29|    683|totext_ta(ARGS_TOTEXT) {
   30|    683|	REQUIRE(rdata->type == dns_rdatatype_ta);
  ------------------
  |  |  198|    683|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    683|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 683, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    683|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   31|       |
   32|    683|	return generic_totext_ds(CALL_TOTEXT);
  ------------------
  |  |   85|    683|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   33|    683|}

rdata.c:fromwire_talink:
   81|  3.34k|fromwire_talink(ARGS_FROMWIRE) {
   82|  3.34k|	dns_name_t prev;
   83|  3.34k|	dns_name_t next;
   84|       |
   85|  3.34k|	REQUIRE(type == dns_rdatatype_talink);
  ------------------
  |  |  198|  3.34k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.34k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.34k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.34k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|  3.34k|	UNUSED(type);
  ------------------
  |  |   69|  3.34k|#define UNUSED(x) (void)(x)
  ------------------
   88|  3.34k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.34k|#define UNUSED(x) (void)(x)
  ------------------
   89|       |
   90|  3.34k|	dctx = dns_decompress_setpermitted(dctx, false);
   91|       |
   92|  3.34k|	dns_name_init(&prev);
   93|  3.34k|	dns_name_init(&next);
   94|       |
   95|  3.34k|	RETERR(dns_name_fromwire(&prev, source, dctx, target));
  ------------------
  |  |  276|  3.34k|	{                                  \
  |  |  277|  3.34k|		isc_result_t _r = (x);     \
  |  |  278|  3.34k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 271, False: 3.07k]
  |  |  ------------------
  |  |  279|    271|			return ((_r));     \
  |  |  280|    271|		}                          \
  |  |  281|  3.34k|	}
  ------------------
   96|  3.07k|	return dns_name_fromwire(&next, source, dctx, target);
   97|  3.34k|}
rdata.c:towire_talink:
  100|  1.37k|towire_talink(ARGS_TOWIRE) {
  101|  1.37k|	isc_region_t sregion;
  102|  1.37k|	dns_name_t prev;
  103|  1.37k|	dns_name_t next;
  104|       |
  105|  1.37k|	REQUIRE(rdata->type == dns_rdatatype_talink);
  ------------------
  |  |  198|  1.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  106|  1.37k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  107|       |
  108|  1.37k|	dns_compress_setpermitted(cctx, false);
  109|       |
  110|  1.37k|	dns_name_init(&prev);
  111|  1.37k|	dns_name_init(&next);
  112|       |
  113|  1.37k|	dns_rdata_toregion(rdata, &sregion);
  114|       |
  115|  1.37k|	dns_name_fromregion(&prev, &sregion);
  116|  1.37k|	isc_region_consume(&sregion, name_length(&prev));
  ------------------
  |  |   50|  1.37k|	do {                              \
  |  |   51|  1.37k|		isc_region_t *_r = (r);   \
  |  |   52|  1.37k|		unsigned int  _l = (l);   \
  |  |   53|  1.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.37k|		_r->base += _l;           \
  |  |   55|  1.37k|		_r->length -= _l;         \
  |  |   56|  1.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.37k]
  |  |  ------------------
  ------------------
  117|  1.37k|	RETERR(dns_name_towire(&prev, cctx, target));
  ------------------
  |  |  276|  1.37k|	{                                  \
  |  |  277|  1.37k|		isc_result_t _r = (x);     \
  |  |  278|  1.37k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 1.37k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  1.37k|	}
  ------------------
  118|       |
  119|  1.37k|	dns_name_fromregion(&next, &sregion);
  120|  1.37k|	isc_region_consume(&sregion, name_length(&next));
  ------------------
  |  |   50|  1.37k|	do {                              \
  |  |   51|  1.37k|		isc_region_t *_r = (r);   \
  |  |   52|  1.37k|		unsigned int  _l = (l);   \
  |  |   53|  1.37k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.37k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.37k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.37k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.37k|		_r->base += _l;           \
  |  |   55|  1.37k|		_r->length -= _l;         \
  |  |   56|  1.37k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.37k]
  |  |  ------------------
  ------------------
  121|  1.37k|	return dns_name_towire(&next, cctx, target);
  122|  1.37k|}
rdata.c:totext_talink:
   47|  2.73k|totext_talink(ARGS_TOTEXT) {
   48|  2.73k|	isc_region_t dregion;
   49|  2.73k|	dns_name_t prev;
   50|  2.73k|	dns_name_t next;
   51|  2.73k|	dns_name_t prefix;
   52|  2.73k|	unsigned int opts;
   53|       |
   54|  2.73k|	REQUIRE(rdata->type == dns_rdatatype_talink);
  ------------------
  |  |  198|  2.73k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.73k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.73k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.73k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   55|  2.73k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.73k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.73k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.73k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.73k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   56|       |
   57|  2.73k|	dns_name_init(&prev);
   58|  2.73k|	dns_name_init(&next);
   59|  2.73k|	dns_name_init(&prefix);
   60|       |
   61|  2.73k|	dns_rdata_toregion(rdata, &dregion);
   62|       |
   63|  2.73k|	dns_name_fromregion(&prev, &dregion);
   64|  2.73k|	isc_region_consume(&dregion, name_length(&prev));
  ------------------
  |  |   50|  2.73k|	do {                              \
  |  |   51|  2.73k|		isc_region_t *_r = (r);   \
  |  |   52|  2.73k|		unsigned int  _l = (l);   \
  |  |   53|  2.73k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.73k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.73k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.73k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.73k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.73k|		_r->base += _l;           \
  |  |   55|  2.73k|		_r->length -= _l;         \
  |  |   56|  2.73k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.73k]
  |  |  ------------------
  ------------------
   65|       |
   66|  2.73k|	dns_name_fromregion(&next, &dregion);
   67|  2.73k|	isc_region_consume(&dregion, name_length(&next));
  ------------------
  |  |   50|  2.73k|	do {                              \
  |  |   51|  2.73k|		isc_region_t *_r = (r);   \
  |  |   52|  2.73k|		unsigned int  _l = (l);   \
  |  |   53|  2.73k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.73k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.73k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.73k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.73k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.73k|		_r->base += _l;           \
  |  |   55|  2.73k|		_r->length -= _l;         \
  |  |   56|  2.73k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.73k]
  |  |  ------------------
  ------------------
   68|       |
   69|  2.73k|	opts = name_prefix(&prev, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (69:9): [True: 0, False: 2.73k]
  ------------------
   70|  2.73k|							 : 0;
   71|  2.73k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  2.73k|	{                                  \
  |  |  277|  2.73k|		isc_result_t _r = (x);     \
  |  |  278|  2.73k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.73k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.73k|	}
  ------------------
   72|       |
   73|  2.73k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  2.73k|	{                                  \
  |  |  277|  2.73k|		isc_result_t _r = (x);     \
  |  |  278|  2.73k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.73k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.73k|	}
  ------------------
   74|       |
   75|  2.73k|	opts = name_prefix(&next, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (75:9): [True: 0, False: 2.73k]
  ------------------
   76|  2.73k|							 : 0;
   77|  2.73k|	return dns_name_totext(&prefix, opts, target);
   78|  2.73k|}

rdata.c:fromwire_tkey:
  246|  3.32k|fromwire_tkey(ARGS_FROMWIRE) {
  247|  3.32k|	isc_region_t sr;
  248|  3.32k|	unsigned long n;
  249|  3.32k|	dns_name_t name;
  250|       |
  251|  3.32k|	REQUIRE(type == dns_rdatatype_tkey);
  ------------------
  |  |  198|  3.32k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.32k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.32k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.32k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  252|       |
  253|  3.32k|	UNUSED(type);
  ------------------
  |  |   69|  3.32k|#define UNUSED(x) (void)(x)
  ------------------
  254|  3.32k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.32k|#define UNUSED(x) (void)(x)
  ------------------
  255|       |
  256|  3.32k|	dctx = dns_decompress_setpermitted(dctx, false);
  257|       |
  258|       |	/*
  259|       |	 * Algorithm.
  260|       |	 */
  261|  3.32k|	dns_name_init(&name);
  262|  3.32k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  3.32k|	{                                  \
  |  |  277|  3.32k|		isc_result_t _r = (x);     \
  |  |  278|  3.32k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 201, False: 3.12k]
  |  |  ------------------
  |  |  279|    201|			return ((_r));     \
  |  |  280|    201|		}                          \
  |  |  281|  3.32k|	}
  ------------------
  263|       |
  264|       |	/*
  265|       |	 * Inception: 4
  266|       |	 * Expiration: 4
  267|       |	 * Mode: 2
  268|       |	 * Error: 2
  269|       |	 */
  270|  3.12k|	isc_buffer_activeregion(source, &sr);
  271|  3.12k|	if (sr.length < 12) {
  ------------------
  |  Branch (271:6): [True: 12, False: 3.11k]
  ------------------
  272|     12|		return ISC_R_UNEXPECTEDEND;
  273|     12|	}
  274|  3.11k|	RETERR(mem_tobuffer(target, sr.base, 12));
  ------------------
  |  |  276|  3.11k|	{                                  \
  |  |  277|  3.11k|		isc_result_t _r = (x);     \
  |  |  278|  3.11k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 205, False: 2.90k]
  |  |  ------------------
  |  |  279|    205|			return ((_r));     \
  |  |  280|    205|		}                          \
  |  |  281|  3.11k|	}
  ------------------
  275|  2.90k|	isc_region_consume(&sr, 12);
  ------------------
  |  |   50|  2.90k|	do {                              \
  |  |   51|  2.90k|		isc_region_t *_r = (r);   \
  |  |   52|  2.90k|		unsigned int  _l = (l);   \
  |  |   53|  2.90k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.90k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.90k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.90k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.90k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.90k|		_r->base += _l;           \
  |  |   55|  2.90k|		_r->length -= _l;         \
  |  |   56|  2.90k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.90k]
  |  |  ------------------
  ------------------
  276|  2.90k|	isc_buffer_forward(source, 12);
  277|       |
  278|       |	/*
  279|       |	 * Key Length + Key Data.
  280|       |	 */
  281|  2.90k|	if (sr.length < 2) {
  ------------------
  |  Branch (281:6): [True: 4, False: 2.90k]
  ------------------
  282|      4|		return ISC_R_UNEXPECTEDEND;
  283|      4|	}
  284|  2.90k|	n = uint16_fromregion(&sr);
  285|  2.90k|	if (sr.length < n + 2) {
  ------------------
  |  Branch (285:6): [True: 15, False: 2.88k]
  ------------------
  286|     15|		return ISC_R_UNEXPECTEDEND;
  287|     15|	}
  288|  2.88k|	RETERR(mem_tobuffer(target, sr.base, n + 2));
  ------------------
  |  |  276|  2.88k|	{                                  \
  |  |  277|  2.88k|		isc_result_t _r = (x);     \
  |  |  278|  2.88k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 203, False: 2.68k]
  |  |  ------------------
  |  |  279|    203|			return ((_r));     \
  |  |  280|    203|		}                          \
  |  |  281|  2.88k|	}
  ------------------
  289|  2.68k|	isc_region_consume(&sr, n + 2);
  ------------------
  |  |   50|  2.68k|	do {                              \
  |  |   51|  2.68k|		isc_region_t *_r = (r);   \
  |  |   52|  2.68k|		unsigned int  _l = (l);   \
  |  |   53|  2.68k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.68k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.68k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.68k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.68k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.68k|		_r->base += _l;           \
  |  |   55|  2.68k|		_r->length -= _l;         \
  |  |   56|  2.68k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.68k]
  |  |  ------------------
  ------------------
  290|  2.68k|	isc_buffer_forward(source, n + 2);
  291|       |
  292|       |	/*
  293|       |	 * Other Length + Other Data.
  294|       |	 */
  295|  2.68k|	if (sr.length < 2) {
  ------------------
  |  Branch (295:6): [True: 5, False: 2.68k]
  ------------------
  296|      5|		return ISC_R_UNEXPECTEDEND;
  297|      5|	}
  298|  2.68k|	n = uint16_fromregion(&sr);
  299|  2.68k|	if (sr.length < n + 2) {
  ------------------
  |  Branch (299:6): [True: 9, False: 2.67k]
  ------------------
  300|      9|		return ISC_R_UNEXPECTEDEND;
  301|      9|	}
  302|  2.67k|	isc_buffer_forward(source, n + 2);
  303|  2.67k|	return mem_tobuffer(target, sr.base, n + 2);
  304|  2.68k|}
rdata.c:towire_tkey:
  307|  1.01k|towire_tkey(ARGS_TOWIRE) {
  308|  1.01k|	isc_region_t sr;
  309|  1.01k|	dns_name_t name;
  310|       |
  311|  1.01k|	REQUIRE(rdata->type == dns_rdatatype_tkey);
  ------------------
  |  |  198|  1.01k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.01k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.01k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.01k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  312|  1.01k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.01k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.01k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.01k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.01k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  313|       |
  314|  1.01k|	dns_compress_setpermitted(cctx, false);
  315|       |	/*
  316|       |	 * Algorithm.
  317|       |	 */
  318|  1.01k|	dns_rdata_toregion(rdata, &sr);
  319|  1.01k|	dns_name_init(&name);
  320|  1.01k|	dns_name_fromregion(&name, &sr);
  321|  1.01k|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|  1.01k|	{                                  \
  |  |  277|  1.01k|		isc_result_t _r = (x);     \
  |  |  278|  1.01k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 1.01k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  1.01k|	}
  ------------------
  322|  1.01k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  1.01k|	do {                              \
  |  |   51|  1.01k|		isc_region_t *_r = (r);   \
  |  |   52|  1.01k|		unsigned int  _l = (l);   \
  |  |   53|  1.01k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.01k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.01k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.01k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.01k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.01k|		_r->base += _l;           \
  |  |   55|  1.01k|		_r->length -= _l;         \
  |  |   56|  1.01k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.01k]
  |  |  ------------------
  ------------------
  323|       |
  324|  1.01k|	return mem_tobuffer(target, sr.base, sr.length);
  325|  1.01k|}
rdata.c:totext_tkey:
  121|  1.97k|totext_tkey(ARGS_TOTEXT) {
  122|  1.97k|	isc_region_t sr, dr;
  123|  1.97k|	char buf[sizeof("4294967295 ")];
  124|  1.97k|	unsigned long n;
  125|  1.97k|	dns_name_t name;
  126|  1.97k|	dns_name_t prefix;
  127|  1.97k|	unsigned int opts;
  128|       |
  129|  1.97k|	REQUIRE(rdata->type == dns_rdatatype_tkey);
  ------------------
  |  |  198|  1.97k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.97k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.97k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|  1.97k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.97k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.97k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.97k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  131|       |
  132|  1.97k|	dns_rdata_toregion(rdata, &sr);
  133|       |
  134|       |	/*
  135|       |	 * Algorithm.
  136|       |	 */
  137|  1.97k|	dns_name_init(&name);
  138|  1.97k|	dns_name_init(&prefix);
  139|  1.97k|	dns_name_fromregion(&name, &sr);
  140|  1.97k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (140:9): [True: 0, False: 1.97k]
  ------------------
  141|  1.97k|							 : 0;
  142|  1.97k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  1.97k|	{                                  \
  |  |  277|  1.97k|		isc_result_t _r = (x);     \
  |  |  278|  1.97k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.97k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.97k|	}
  ------------------
  143|  1.97k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.97k|	{                                  \
  |  |  277|  1.97k|		isc_result_t _r = (x);     \
  |  |  278|  1.97k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.97k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.97k|	}
  ------------------
  144|  1.97k|	isc_region_consume(&sr, name_length(&name));
  ------------------
  |  |   50|  1.97k|	do {                              \
  |  |   51|  1.97k|		isc_region_t *_r = (r);   \
  |  |   52|  1.97k|		unsigned int  _l = (l);   \
  |  |   53|  1.97k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.97k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.97k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.97k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.97k|		_r->base += _l;           \
  |  |   55|  1.97k|		_r->length -= _l;         \
  |  |   56|  1.97k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.97k]
  |  |  ------------------
  ------------------
  145|       |
  146|       |	/*
  147|       |	 * Inception.
  148|       |	 */
  149|  1.97k|	n = uint32_fromregion(&sr);
  150|  1.97k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  1.97k|	do {                              \
  |  |   51|  1.97k|		isc_region_t *_r = (r);   \
  |  |   52|  1.97k|		unsigned int  _l = (l);   \
  |  |   53|  1.97k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.97k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.97k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.97k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.97k|		_r->base += _l;           \
  |  |   55|  1.97k|		_r->length -= _l;         \
  |  |   56|  1.97k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.97k]
  |  |  ------------------
  ------------------
  151|  1.97k|	snprintf(buf, sizeof(buf), "%lu ", n);
  152|  1.97k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.97k|	{                                  \
  |  |  277|  1.97k|		isc_result_t _r = (x);     \
  |  |  278|  1.97k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.97k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.97k|	}
  ------------------
  153|       |
  154|       |	/*
  155|       |	 * Expiration.
  156|       |	 */
  157|  1.97k|	n = uint32_fromregion(&sr);
  158|  1.97k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  1.97k|	do {                              \
  |  |   51|  1.97k|		isc_region_t *_r = (r);   \
  |  |   52|  1.97k|		unsigned int  _l = (l);   \
  |  |   53|  1.97k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.97k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.97k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.97k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.97k|		_r->base += _l;           \
  |  |   55|  1.97k|		_r->length -= _l;         \
  |  |   56|  1.97k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.97k]
  |  |  ------------------
  ------------------
  159|  1.97k|	snprintf(buf, sizeof(buf), "%lu ", n);
  160|  1.97k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.97k|	{                                  \
  |  |  277|  1.97k|		isc_result_t _r = (x);     \
  |  |  278|  1.97k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.97k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.97k|	}
  ------------------
  161|       |
  162|       |	/*
  163|       |	 * Mode.
  164|       |	 */
  165|  1.97k|	n = uint16_fromregion(&sr);
  166|  1.97k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.97k|	do {                              \
  |  |   51|  1.97k|		isc_region_t *_r = (r);   \
  |  |   52|  1.97k|		unsigned int  _l = (l);   \
  |  |   53|  1.97k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.97k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.97k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.97k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.97k|		_r->base += _l;           \
  |  |   55|  1.97k|		_r->length -= _l;         \
  |  |   56|  1.97k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.97k]
  |  |  ------------------
  ------------------
  167|  1.97k|	snprintf(buf, sizeof(buf), "%lu ", n);
  168|  1.97k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.97k|	{                                  \
  |  |  277|  1.97k|		isc_result_t _r = (x);     \
  |  |  278|  1.97k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.97k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.97k|	}
  ------------------
  169|       |
  170|       |	/*
  171|       |	 * Error.
  172|       |	 */
  173|  1.97k|	n = uint16_fromregion(&sr);
  174|  1.97k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.97k|	do {                              \
  |  |   51|  1.97k|		isc_region_t *_r = (r);   \
  |  |   52|  1.97k|		unsigned int  _l = (l);   \
  |  |   53|  1.97k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.97k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.97k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.97k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.97k|		_r->base += _l;           \
  |  |   55|  1.97k|		_r->length -= _l;         \
  |  |   56|  1.97k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.97k]
  |  |  ------------------
  ------------------
  175|  1.97k|	if (dns_tsigrcode_totext((dns_rcode_t)n, target) == ISC_R_SUCCESS) {
  ------------------
  |  Branch (175:6): [True: 1.97k, False: 0]
  ------------------
  176|  1.97k|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.97k|	{                                  \
  |  |  277|  1.97k|		isc_result_t _r = (x);     \
  |  |  278|  1.97k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.97k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.97k|	}
  ------------------
  177|  1.97k|	} else {
  178|      0|		snprintf(buf, sizeof(buf), "%lu ", n);
  179|      0|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  180|      0|	}
  181|       |
  182|       |	/*
  183|       |	 * Key Size.
  184|       |	 */
  185|  1.97k|	n = uint16_fromregion(&sr);
  186|  1.97k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.97k|	do {                              \
  |  |   51|  1.97k|		isc_region_t *_r = (r);   \
  |  |   52|  1.97k|		unsigned int  _l = (l);   \
  |  |   53|  1.97k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.97k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.97k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.97k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.97k|		_r->base += _l;           \
  |  |   55|  1.97k|		_r->length -= _l;         \
  |  |   56|  1.97k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.97k]
  |  |  ------------------
  ------------------
  187|  1.97k|	snprintf(buf, sizeof(buf), "%lu", n);
  188|  1.97k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.97k|	{                                  \
  |  |  277|  1.97k|		isc_result_t _r = (x);     \
  |  |  278|  1.97k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.97k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.97k|	}
  ------------------
  189|       |
  190|       |	/*
  191|       |	 * Key Data.
  192|       |	 */
  193|  1.97k|	REQUIRE(n <= sr.length);
  ------------------
  |  |  198|  1.97k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.97k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.97k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  194|  1.97k|	dr = sr;
  195|  1.97k|	dr.length = n;
  196|  1.97k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.97k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (196:6): [True: 0, False: 1.97k]
  ------------------
  197|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  198|      0|	}
  199|  1.97k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  1.97k|	{                                  \
  |  |  277|  1.97k|		isc_result_t _r = (x);     \
  |  |  278|  1.97k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.97k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.97k|	}
  ------------------
  200|  1.97k|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (200:6): [True: 0, False: 1.97k]
  ------------------
  201|      0|		RETERR(isc_base64_totext(&dr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  202|  1.97k|	} else {
  203|  1.97k|		RETERR(isc_base64_totext(&dr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|  1.97k|	{                                  \
  |  |  277|  1.97k|		isc_result_t _r = (x);     \
  |  |  278|  1.97k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.97k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.97k|	}
  ------------------
  204|  1.97k|					 target));
  205|  1.97k|	}
  206|  1.97k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.97k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (206:6): [True: 0, False: 1.97k]
  ------------------
  207|      0|		RETERR(str_totext(" ) ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  208|  1.97k|	} else {
  209|  1.97k|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.97k|	{                                  \
  |  |  277|  1.97k|		isc_result_t _r = (x);     \
  |  |  278|  1.97k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.97k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.97k|	}
  ------------------
  210|  1.97k|	}
  211|  1.97k|	isc_region_consume(&sr, n);
  ------------------
  |  |   50|  1.97k|	do {                              \
  |  |   51|  1.97k|		isc_region_t *_r = (r);   \
  |  |   52|  1.97k|		unsigned int  _l = (l);   \
  |  |   53|  1.97k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.97k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.97k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.97k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.97k|		_r->base += _l;           \
  |  |   55|  1.97k|		_r->length -= _l;         \
  |  |   56|  1.97k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.97k]
  |  |  ------------------
  ------------------
  212|       |
  213|       |	/*
  214|       |	 * Other Size.
  215|       |	 */
  216|  1.97k|	n = uint16_fromregion(&sr);
  217|  1.97k|	isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  1.97k|	do {                              \
  |  |   51|  1.97k|		isc_region_t *_r = (r);   \
  |  |   52|  1.97k|		unsigned int  _l = (l);   \
  |  |   53|  1.97k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.97k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.97k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.97k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.97k|		_r->base += _l;           \
  |  |   55|  1.97k|		_r->length -= _l;         \
  |  |   56|  1.97k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.97k]
  |  |  ------------------
  ------------------
  218|  1.97k|	snprintf(buf, sizeof(buf), "%lu", n);
  219|  1.97k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.97k|	{                                  \
  |  |  277|  1.97k|		isc_result_t _r = (x);     \
  |  |  278|  1.97k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.97k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.97k|	}
  ------------------
  220|       |
  221|       |	/*
  222|       |	 * Other Data.
  223|       |	 */
  224|  1.97k|	REQUIRE(n <= sr.length);
  ------------------
  |  |  198|  1.97k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.97k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.97k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.97k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  225|  1.97k|	if (n != 0U) {
  ------------------
  |  Branch (225:6): [True: 1.26k, False: 710]
  ------------------
  226|  1.26k|		dr = sr;
  227|  1.26k|		dr.length = n;
  228|  1.26k|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.26k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (228:7): [True: 0, False: 1.26k]
  ------------------
  229|      0|			RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  230|      0|		}
  231|  1.26k|		RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  1.26k|	{                                  \
  |  |  277|  1.26k|		isc_result_t _r = (x);     \
  |  |  278|  1.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.26k|	}
  ------------------
  232|  1.26k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (232:7): [True: 0, False: 1.26k]
  ------------------
  233|      0|			RETERR(isc_base64_totext(&dr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  234|  1.26k|		} else {
  235|  1.26k|			RETERR(isc_base64_totext(&dr, tctx->width - 2,
  ------------------
  |  |  276|  1.26k|	{                                  \
  |  |  277|  1.26k|		isc_result_t _r = (x);     \
  |  |  278|  1.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.26k|	}
  ------------------
  236|  1.26k|						 tctx->linebreak, target));
  237|  1.26k|		}
  238|  1.26k|		if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.26k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (238:7): [True: 0, False: 1.26k]
  ------------------
  239|      0|			RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  240|      0|		}
  241|  1.26k|	}
  242|  1.97k|	return ISC_R_SUCCESS;
  243|  1.97k|}

rdata.c:fromwire_tlsa:
  156|  1.69k|fromwire_tlsa(ARGS_FROMWIRE) {
  157|  1.69k|	REQUIRE(type == dns_rdatatype_tlsa);
  ------------------
  |  |  198|  1.69k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.69k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.69k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.69k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  158|       |
  159|  1.69k|	return generic_fromwire_tlsa(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.69k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
  160|  1.69k|}
rdata.c:generic_fromwire_tlsa:
  123|  2.86k|generic_fromwire_tlsa(ARGS_FROMWIRE) {
  124|  2.86k|	isc_region_t sr;
  125|       |
  126|  2.86k|	UNUSED(type);
  ------------------
  |  |   69|  2.86k|#define UNUSED(x) (void)(x)
  ------------------
  127|  2.86k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.86k|#define UNUSED(x) (void)(x)
  ------------------
  128|  2.86k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.86k|#define UNUSED(x) (void)(x)
  ------------------
  129|       |
  130|  2.86k|	isc_buffer_activeregion(source, &sr);
  131|       |
  132|       |	/* Usage(1), Selector(1), Type(1), Data(1+) */
  133|  2.86k|	if (sr.length < 4) {
  ------------------
  |  Branch (133:6): [True: 7, False: 2.85k]
  ------------------
  134|      7|		return ISC_R_UNEXPECTEDEND;
  135|      7|	}
  136|       |
  137|  2.85k|	isc_buffer_forward(source, sr.length);
  138|  2.85k|	return mem_tobuffer(target, sr.base, sr.length);
  139|  2.86k|}
rdata.c:towire_tlsa:
  163|    644|towire_tlsa(ARGS_TOWIRE) {
  164|    644|	isc_region_t sr;
  165|       |
  166|    644|	REQUIRE(rdata->type == dns_rdatatype_tlsa);
  ------------------
  |  |  198|    644|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    644|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 644, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    644|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  167|    644|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    644|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    644|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 644, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    644|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  168|       |
  169|    644|	UNUSED(cctx);
  ------------------
  |  |   69|    644|#define UNUSED(x) (void)(x)
  ------------------
  170|       |
  171|    644|	dns_rdata_toregion(rdata, &sr);
  172|    644|	return mem_tobuffer(target, sr.base, sr.length);
  173|    644|}
rdata.c:totext_tlsa:
  149|  1.25k|totext_tlsa(ARGS_TOTEXT) {
  150|  1.25k|	REQUIRE(rdata->type == dns_rdatatype_tlsa);
  ------------------
  |  |  198|  1.25k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.25k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.25k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.25k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  151|       |
  152|  1.25k|	return generic_totext_tlsa(CALL_TOTEXT);
  ------------------
  |  |   85|  1.25k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
  153|  1.25k|}
rdata.c:generic_totext_tlsa:
   68|  2.25k|generic_totext_tlsa(ARGS_TOTEXT) {
   69|  2.25k|	isc_region_t sr;
   70|  2.25k|	char buf[sizeof("64000 ")];
   71|  2.25k|	unsigned int n;
   72|       |
   73|  2.25k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.25k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.25k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.25k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   74|       |
   75|  2.25k|	UNUSED(tctx);
  ------------------
  |  |   69|  2.25k|#define UNUSED(x) (void)(x)
  ------------------
   76|       |
   77|  2.25k|	dns_rdata_toregion(rdata, &sr);
   78|       |
   79|       |	/*
   80|       |	 * Certificate Usage.
   81|       |	 */
   82|  2.25k|	n = uint8_fromregion(&sr);
   83|  2.25k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.25k|	do {                              \
  |  |   51|  2.25k|		isc_region_t *_r = (r);   \
  |  |   52|  2.25k|		unsigned int  _l = (l);   \
  |  |   53|  2.25k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.25k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.25k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.25k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.25k|		_r->base += _l;           \
  |  |   55|  2.25k|		_r->length -= _l;         \
  |  |   56|  2.25k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.25k]
  |  |  ------------------
  ------------------
   84|  2.25k|	snprintf(buf, sizeof(buf), "%u ", n);
   85|  2.25k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.25k|	{                                  \
  |  |  277|  2.25k|		isc_result_t _r = (x);     \
  |  |  278|  2.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.25k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.25k|	}
  ------------------
   86|       |
   87|       |	/*
   88|       |	 * Selector.
   89|       |	 */
   90|  2.25k|	n = uint8_fromregion(&sr);
   91|  2.25k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.25k|	do {                              \
  |  |   51|  2.25k|		isc_region_t *_r = (r);   \
  |  |   52|  2.25k|		unsigned int  _l = (l);   \
  |  |   53|  2.25k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.25k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.25k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.25k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.25k|		_r->base += _l;           \
  |  |   55|  2.25k|		_r->length -= _l;         \
  |  |   56|  2.25k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.25k]
  |  |  ------------------
  ------------------
   92|  2.25k|	snprintf(buf, sizeof(buf), "%u ", n);
   93|  2.25k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.25k|	{                                  \
  |  |  277|  2.25k|		isc_result_t _r = (x);     \
  |  |  278|  2.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.25k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.25k|	}
  ------------------
   94|       |
   95|       |	/*
   96|       |	 * Matching type.
   97|       |	 */
   98|  2.25k|	n = uint8_fromregion(&sr);
   99|  2.25k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.25k|	do {                              \
  |  |   51|  2.25k|		isc_region_t *_r = (r);   \
  |  |   52|  2.25k|		unsigned int  _l = (l);   \
  |  |   53|  2.25k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.25k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.25k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.25k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.25k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.25k|		_r->base += _l;           \
  |  |   55|  2.25k|		_r->length -= _l;         \
  |  |   56|  2.25k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.25k]
  |  |  ------------------
  ------------------
  100|  2.25k|	snprintf(buf, sizeof(buf), "%u", n);
  101|  2.25k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  2.25k|	{                                  \
  |  |  277|  2.25k|		isc_result_t _r = (x);     \
  |  |  278|  2.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.25k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.25k|	}
  ------------------
  102|       |
  103|       |	/*
  104|       |	 * Certificate Association Data.
  105|       |	 */
  106|  2.25k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.25k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (106:6): [True: 0, False: 2.25k]
  ------------------
  107|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  108|      0|	}
  109|  2.25k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  2.25k|	{                                  \
  |  |  277|  2.25k|		isc_result_t _r = (x);     \
  |  |  278|  2.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.25k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.25k|	}
  ------------------
  110|  2.25k|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (110:6): [True: 0, False: 2.25k]
  ------------------
  111|      0|		RETERR(isc_hex_totext(&sr, 0, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  112|  2.25k|	} else {
  113|  2.25k|		RETERR(isc_hex_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|  2.25k|	{                                  \
  |  |  277|  2.25k|		isc_result_t _r = (x);     \
  |  |  278|  2.25k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.25k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.25k|	}
  ------------------
  114|  2.25k|				      target));
  115|  2.25k|	}
  116|  2.25k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  2.25k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (116:6): [True: 0, False: 2.25k]
  ------------------
  117|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  118|      0|	}
  119|  2.25k|	return ISC_R_SUCCESS;
  120|  2.25k|}

rdata.c:fromwire_txt:
  100|  1.33k|fromwire_txt(ARGS_FROMWIRE) {
  101|  1.33k|	REQUIRE(type == dns_rdatatype_txt);
  ------------------
  |  |  198|  1.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  102|       |
  103|  1.33k|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.33k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
  104|  1.33k|}
rdata.c:generic_fromwire_txt:
   73|  7.61k|generic_fromwire_txt(ARGS_FROMWIRE) {
   74|  7.61k|	UNUSED(type);
  ------------------
  |  |   69|  7.61k|#define UNUSED(x) (void)(x)
  ------------------
   75|  7.61k|	UNUSED(dctx);
  ------------------
  |  |   69|  7.61k|#define UNUSED(x) (void)(x)
  ------------------
   76|  7.61k|	UNUSED(rdclass);
  ------------------
  |  |   69|  7.61k|#define UNUSED(x) (void)(x)
  ------------------
   77|       |
   78|  48.1k|	do {
   79|  48.1k|		RETERR(txt_fromwire(source, target));
  ------------------
  |  |  276|  48.1k|	{                                  \
  |  |  277|  48.1k|		isc_result_t _r = (x);     \
  |  |  278|  48.1k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 895, False: 47.3k]
  |  |  ------------------
  |  |  279|    895|			return ((_r));     \
  |  |  280|    895|		}                          \
  |  |  281|  48.1k|	}
  ------------------
   80|  47.3k|	} while (!buffer_empty(source));
  ------------------
  |  Branch (80:11): [True: 40.5k, False: 6.71k]
  ------------------
   81|  6.71k|	return ISC_R_SUCCESS;
   82|  7.61k|}
rdata.c:towire_txt:
  107|    606|towire_txt(ARGS_TOWIRE) {
  108|    606|	REQUIRE(rdata->type == dns_rdatatype_txt);
  ------------------
  |  |  198|    606|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    606|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 606, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    606|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  109|       |
  110|    606|	UNUSED(cctx);
  ------------------
  |  |   69|    606|#define UNUSED(x) (void)(x)
  ------------------
  111|       |
  112|    606|	return mem_tobuffer(target, rdata->data, rdata->length);
  113|    606|}
rdata.c:totext_txt:
   92|  1.19k|totext_txt(ARGS_TOTEXT) {
   93|  1.19k|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|  1.19k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.19k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.19k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   94|  1.19k|	REQUIRE(rdata->type == dns_rdatatype_txt);
  ------------------
  |  |  198|  1.19k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.19k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.19k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   95|       |
   96|  1.19k|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|  1.19k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   97|  1.19k|}
rdata.c:generic_totext_txt:
   55|  5.71k|generic_totext_txt(ARGS_TOTEXT) {
   56|  5.71k|	isc_region_t region;
   57|       |
   58|  5.71k|	UNUSED(tctx);
  ------------------
  |  |   69|  5.71k|#define UNUSED(x) (void)(x)
  ------------------
   59|       |
   60|  5.71k|	dns_rdata_toregion(rdata, &region);
   61|       |
   62|  40.8k|	while (region.length > 0) {
  ------------------
  |  Branch (62:9): [True: 35.1k, False: 5.71k]
  ------------------
   63|  35.1k|		RETERR(txt_totext(&region, true, target));
  ------------------
  |  |  276|  35.1k|	{                                  \
  |  |  277|  35.1k|		isc_result_t _r = (x);     \
  |  |  278|  35.1k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 35.1k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  35.1k|	}
  ------------------
   64|  35.1k|		if (region.length > 0) {
  ------------------
  |  Branch (64:7): [True: 29.4k, False: 5.71k]
  ------------------
   65|  29.4k|			RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  29.4k|	{                                  \
  |  |  277|  29.4k|		isc_result_t _r = (x);     \
  |  |  278|  29.4k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 29.4k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  29.4k|	}
  ------------------
   66|  29.4k|		}
   67|  35.1k|	}
   68|       |
   69|  5.71k|	return ISC_R_SUCCESS;
   70|  5.71k|}

rdata.c:fromwire_uri:
  100|  1.84k|fromwire_uri(ARGS_FROMWIRE) {
  101|  1.84k|	isc_region_t region;
  102|       |
  103|  1.84k|	REQUIRE(type == dns_rdatatype_uri);
  ------------------
  |  |  198|  1.84k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.84k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.84k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.84k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|       |
  105|  1.84k|	UNUSED(type);
  ------------------
  |  |   69|  1.84k|#define UNUSED(x) (void)(x)
  ------------------
  106|  1.84k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.84k|#define UNUSED(x) (void)(x)
  ------------------
  107|  1.84k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.84k|#define UNUSED(x) (void)(x)
  ------------------
  108|       |
  109|       |	/*
  110|       |	 * Priority, weight
  111|       |	 */
  112|  1.84k|	isc_buffer_activeregion(source, &region);
  113|  1.84k|	if (region.length < 4) {
  ------------------
  |  Branch (113:6): [True: 6, False: 1.83k]
  ------------------
  114|      6|		return ISC_R_UNEXPECTEDEND;
  115|      6|	}
  116|       |
  117|       |	/*
  118|       |	 * Priority, weight and target URI
  119|       |	 */
  120|  1.83k|	isc_buffer_forward(source, region.length);
  121|  1.83k|	return mem_tobuffer(target, region.base, region.length);
  122|  1.84k|}
rdata.c:towire_uri:
  125|    806|towire_uri(ARGS_TOWIRE) {
  126|    806|	isc_region_t region;
  127|       |
  128|    806|	REQUIRE(rdata->type == dns_rdatatype_uri);
  ------------------
  |  |  198|    806|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    806|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 806, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    806|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  129|    806|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    806|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    806|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 806, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    806|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  130|       |
  131|    806|	UNUSED(cctx);
  ------------------
  |  |   69|    806|#define UNUSED(x) (void)(x)
  ------------------
  132|       |
  133|    806|	dns_rdata_toregion(rdata, &region);
  134|    806|	return mem_tobuffer(target, region.base, region.length);
  135|    806|}
rdata.c:totext_uri:
   64|  1.53k|totext_uri(ARGS_TOTEXT) {
   65|  1.53k|	isc_region_t region;
   66|  1.53k|	unsigned short priority, weight;
   67|  1.53k|	char buf[sizeof("65000 ")];
   68|       |
   69|  1.53k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.53k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.53k|	REQUIRE(rdata->type == dns_rdatatype_uri);
  ------------------
  |  |  198|  1.53k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.53k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.53k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.53k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|  1.53k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.53k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.53k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.53k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.53k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   73|       |
   74|  1.53k|	dns_rdata_toregion(rdata, &region);
   75|       |
   76|       |	/*
   77|       |	 * Priority
   78|       |	 */
   79|  1.53k|	priority = uint16_fromregion(&region);
   80|  1.53k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.53k|	do {                              \
  |  |   51|  1.53k|		isc_region_t *_r = (r);   \
  |  |   52|  1.53k|		unsigned int  _l = (l);   \
  |  |   53|  1.53k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.53k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.53k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.53k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.53k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.53k|		_r->base += _l;           \
  |  |   55|  1.53k|		_r->length -= _l;         \
  |  |   56|  1.53k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.53k]
  |  |  ------------------
  ------------------
   81|  1.53k|	snprintf(buf, sizeof(buf), "%u ", priority);
   82|  1.53k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.53k|	{                                  \
  |  |  277|  1.53k|		isc_result_t _r = (x);     \
  |  |  278|  1.53k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.53k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.53k|	}
  ------------------
   83|       |
   84|       |	/*
   85|       |	 * Weight
   86|       |	 */
   87|  1.53k|	weight = uint16_fromregion(&region);
   88|  1.53k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.53k|	do {                              \
  |  |   51|  1.53k|		isc_region_t *_r = (r);   \
  |  |   52|  1.53k|		unsigned int  _l = (l);   \
  |  |   53|  1.53k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.53k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.53k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.53k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.53k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.53k|		_r->base += _l;           \
  |  |   55|  1.53k|		_r->length -= _l;         \
  |  |   56|  1.53k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.53k]
  |  |  ------------------
  ------------------
   89|  1.53k|	snprintf(buf, sizeof(buf), "%u ", weight);
   90|  1.53k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.53k|	{                                  \
  |  |  277|  1.53k|		isc_result_t _r = (x);     \
  |  |  278|  1.53k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.53k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.53k|	}
  ------------------
   91|       |
   92|       |	/*
   93|       |	 * Target URI
   94|       |	 */
   95|  1.53k|	RETERR(multitxt_totext(&region, target));
  ------------------
  |  |  276|  1.53k|	{                                  \
  |  |  277|  1.53k|		isc_result_t _r = (x);     \
  |  |  278|  1.53k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.53k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.53k|	}
  ------------------
   96|  1.53k|	return ISC_R_SUCCESS;
   97|  1.53k|}

rdata.c:fromwire_wallet:
   35|  1.19k|fromwire_wallet(ARGS_FROMWIRE) {
   36|  1.19k|	REQUIRE(type == dns_rdatatype_wallet);
  ------------------
  |  |  198|  1.19k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.19k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.19k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.19k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|       |
   38|  1.19k|	return generic_fromwire_txt(CALL_FROMWIRE);
  ------------------
  |  |   91|  1.19k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   39|  1.19k|}
rdata.c:towire_wallet:
   42|    409|towire_wallet(ARGS_TOWIRE) {
   43|    409|	REQUIRE(rdata->type == dns_rdatatype_wallet);
  ------------------
  |  |  198|    409|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    409|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 409, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    409|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    409|	UNUSED(cctx);
  ------------------
  |  |   69|    409|#define UNUSED(x) (void)(x)
  ------------------
   46|       |
   47|    409|	return mem_tobuffer(target, rdata->data, rdata->length);
   48|    409|}
rdata.c:totext_wallet:
   27|    796|totext_wallet(ARGS_TOTEXT) {
   28|    796|	REQUIRE(rdata != NULL);
  ------------------
  |  |  198|    796|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    796|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 796, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    796|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|    796|	REQUIRE(rdata->type == dns_rdatatype_wallet);
  ------------------
  |  |  198|    796|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    796|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 796, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    796|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|       |
   31|    796|	return generic_totext_txt(CALL_TOTEXT);
  ------------------
  |  |   85|    796|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   32|    796|}

rdata.c:fromwire_x25:
   63|    823|fromwire_x25(ARGS_FROMWIRE) {
   64|    823|	isc_region_t sr;
   65|    823|	unsigned int i;
   66|       |
   67|    823|	REQUIRE(type == dns_rdatatype_x25);
  ------------------
  |  |  198|    823|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    823|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 823, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    823|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|       |
   69|    823|	UNUSED(type);
  ------------------
  |  |   69|    823|#define UNUSED(x) (void)(x)
  ------------------
   70|    823|	UNUSED(dctx);
  ------------------
  |  |   69|    823|#define UNUSED(x) (void)(x)
  ------------------
   71|    823|	UNUSED(rdclass);
  ------------------
  |  |   69|    823|#define UNUSED(x) (void)(x)
  ------------------
   72|       |
   73|    823|	isc_buffer_activeregion(source, &sr);
   74|    823|	if (sr.length < 5 || sr.base[0] != (sr.length - 1)) {
  ------------------
  |  Branch (74:6): [True: 10, False: 813]
  |  Branch (74:23): [True: 16, False: 797]
  ------------------
   75|     26|		return DNS_R_FORMERR;
   76|     26|	}
   77|  4.12k|	for (i = 1; i < sr.length; i++) {
  ------------------
  |  Branch (77:14): [True: 3.33k, False: 787]
  ------------------
   78|  3.33k|		if (sr.base[i] < 0x30 || sr.base[i] > 0x39) {
  ------------------
  |  Branch (78:7): [True: 5, False: 3.33k]
  |  Branch (78:28): [True: 5, False: 3.32k]
  ------------------
   79|     10|			return DNS_R_FORMERR;
   80|     10|		}
   81|  3.33k|	}
   82|    787|	return txt_fromwire(source, target);
   83|    797|}
rdata.c:towire_x25:
   86|    428|towire_x25(ARGS_TOWIRE) {
   87|    428|	UNUSED(cctx);
  ------------------
  |  |   69|    428|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|    428|	REQUIRE(rdata->type == dns_rdatatype_x25);
  ------------------
  |  |  198|    428|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    428|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 428, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    428|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   90|    428|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    428|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    428|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 428, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    428|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   91|       |
   92|    428|	return mem_tobuffer(target, rdata->data, rdata->length);
   93|    428|}
rdata.c:totext_x25:
   50|    767|totext_x25(ARGS_TOTEXT) {
   51|    767|	isc_region_t region;
   52|       |
   53|    767|	UNUSED(tctx);
  ------------------
  |  |   69|    767|#define UNUSED(x) (void)(x)
  ------------------
   54|       |
   55|    767|	REQUIRE(rdata->type == dns_rdatatype_x25);
  ------------------
  |  |  198|    767|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    767|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 767, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    767|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   56|    767|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    767|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    767|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 767, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    767|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|       |
   58|    767|	dns_rdata_toregion(rdata, &region);
   59|       |	return txt_totext(&region, true, target);
   60|    767|}

rdata.c:fromwire_zonemd:
  144|  1.89k|fromwire_zonemd(ARGS_FROMWIRE) {
  145|  1.89k|	isc_region_t sr;
  146|  1.89k|	size_t digestlen = 0;
  147|       |
  148|  1.89k|	UNUSED(type);
  ------------------
  |  |   69|  1.89k|#define UNUSED(x) (void)(x)
  ------------------
  149|  1.89k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.89k|#define UNUSED(x) (void)(x)
  ------------------
  150|  1.89k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.89k|#define UNUSED(x) (void)(x)
  ------------------
  151|       |
  152|  1.89k|	isc_buffer_activeregion(source, &sr);
  153|       |
  154|       |	/*
  155|       |	 * If we do not recognize the digest type, ensure that the digest
  156|       |	 * meets minimum length (12).
  157|       |	 *
  158|       |	 * If we do recognize the digest type, ensure that the digest is of the
  159|       |	 * correct length.
  160|       |	 */
  161|  1.89k|	if (sr.length < 18) {
  ------------------
  |  Branch (161:6): [True: 9, False: 1.88k]
  ------------------
  162|      9|		return ISC_R_UNEXPECTEDEND;
  163|      9|	}
  164|       |
  165|  1.88k|	switch (sr.base[5]) {
  166|    236|	case DNS_ZONEMD_DIGEST_SHA384:
  ------------------
  |  | 1722|    236|#define DNS_ZONEMD_DIGEST_SHA384 (1)
  ------------------
  |  Branch (166:2): [True: 236, False: 1.64k]
  ------------------
  167|    236|		digestlen = ISC_SHA384_DIGESTLENGTH;
  ------------------
  |  |   56|    236|#define ISC_SHA384_DIGESTLENGTH 48
  ------------------
  168|    236|		break;
  169|    204|	case DNS_ZONEMD_DIGEST_SHA512:
  ------------------
  |  | 1723|    204|#define DNS_ZONEMD_DIGEST_SHA512 (2)
  ------------------
  |  Branch (169:2): [True: 204, False: 1.67k]
  ------------------
  170|    204|		digestlen = ISC_SHA512_DIGESTLENGTH;
  ------------------
  |  |   58|    204|#define ISC_SHA512_DIGESTLENGTH 64
  ------------------
  171|    204|		break;
  172|  1.44k|	default:
  ------------------
  |  Branch (172:2): [True: 1.44k, False: 440]
  ------------------
  173|  1.44k|		break;
  174|  1.88k|	}
  175|       |
  176|  1.88k|	if (digestlen != 0 && sr.length < 6 + digestlen) {
  ------------------
  |  Branch (176:6): [True: 440, False: 1.44k]
  |  Branch (176:24): [True: 7, False: 433]
  ------------------
  177|      7|		return ISC_R_UNEXPECTEDEND;
  178|      7|	}
  179|       |
  180|       |	/*
  181|       |	 * Only specify the number of octets to consume if we recognize the
  182|       |	 * digest type.
  183|       |	 *
  184|       |	 * If there is extra data, dns_rdata_fromwire() will detect that.
  185|       |	 */
  186|  1.87k|	if (digestlen != 0) {
  ------------------
  |  Branch (186:6): [True: 433, False: 1.44k]
  ------------------
  187|    433|		sr.length = 6 + digestlen;
  188|    433|	}
  189|       |
  190|  1.87k|	isc_buffer_forward(source, sr.length);
  191|  1.87k|	return mem_tobuffer(target, sr.base, sr.length);
  192|  1.88k|}
rdata.c:towire_zonemd:
  195|    636|towire_zonemd(ARGS_TOWIRE) {
  196|    636|	isc_region_t sr;
  197|       |
  198|    636|	REQUIRE(rdata->type == dns_rdatatype_zonemd);
  ------------------
  |  |  198|    636|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    636|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 636, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    636|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  199|    636|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    636|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    636|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 636, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    636|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  200|       |
  201|    636|	UNUSED(cctx);
  ------------------
  |  |   69|    636|#define UNUSED(x) (void)(x)
  ------------------
  202|       |
  203|    636|	dns_rdata_toregion(rdata, &sr);
  204|    636|	return mem_tobuffer(target, sr.base, sr.length);
  205|    636|}
rdata.c:totext_zonemd:
   81|  1.26k|totext_zonemd(ARGS_TOTEXT) {
   82|  1.26k|	isc_region_t sr;
   83|  1.26k|	char buf[sizeof("0123456789")];
   84|  1.26k|	unsigned long num;
   85|       |
   86|  1.26k|	REQUIRE(rdata->length > 6);
  ------------------
  |  |  198|  1.26k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.26k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.26k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.26k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   87|       |
   88|  1.26k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.26k|#define UNUSED(x) (void)(x)
  ------------------
   89|       |
   90|  1.26k|	dns_rdata_toregion(rdata, &sr);
   91|       |
   92|       |	/*
   93|       |	 * Zone Serial.
   94|       |	 */
   95|  1.26k|	num = uint32_fromregion(&sr);
   96|  1.26k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  1.26k|	do {                              \
  |  |   51|  1.26k|		isc_region_t *_r = (r);   \
  |  |   52|  1.26k|		unsigned int  _l = (l);   \
  |  |   53|  1.26k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.26k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.26k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.26k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.26k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.26k|		_r->base += _l;           \
  |  |   55|  1.26k|		_r->length -= _l;         \
  |  |   56|  1.26k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.26k]
  |  |  ------------------
  ------------------
   97|  1.26k|	snprintf(buf, sizeof(buf), "%lu", num);
   98|  1.26k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.26k|	{                                  \
  |  |  277|  1.26k|		isc_result_t _r = (x);     \
  |  |  278|  1.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.26k|	}
  ------------------
   99|       |
  100|  1.26k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.26k|	{                                  \
  |  |  277|  1.26k|		isc_result_t _r = (x);     \
  |  |  278|  1.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.26k|	}
  ------------------
  101|       |
  102|       |	/*
  103|       |	 * Digest scheme.
  104|       |	 */
  105|  1.26k|	num = uint8_fromregion(&sr);
  106|  1.26k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.26k|	do {                              \
  |  |   51|  1.26k|		isc_region_t *_r = (r);   \
  |  |   52|  1.26k|		unsigned int  _l = (l);   \
  |  |   53|  1.26k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.26k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.26k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.26k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.26k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.26k|		_r->base += _l;           \
  |  |   55|  1.26k|		_r->length -= _l;         \
  |  |   56|  1.26k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.26k]
  |  |  ------------------
  ------------------
  107|  1.26k|	snprintf(buf, sizeof(buf), "%lu", num);
  108|  1.26k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.26k|	{                                  \
  |  |  277|  1.26k|		isc_result_t _r = (x);     \
  |  |  278|  1.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.26k|	}
  ------------------
  109|       |
  110|  1.26k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.26k|	{                                  \
  |  |  277|  1.26k|		isc_result_t _r = (x);     \
  |  |  278|  1.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.26k|	}
  ------------------
  111|       |
  112|       |	/*
  113|       |	 * Digest type.
  114|       |	 */
  115|  1.26k|	num = uint8_fromregion(&sr);
  116|  1.26k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.26k|	do {                              \
  |  |   51|  1.26k|		isc_region_t *_r = (r);   \
  |  |   52|  1.26k|		unsigned int  _l = (l);   \
  |  |   53|  1.26k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.26k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.26k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.26k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.26k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.26k|		_r->base += _l;           \
  |  |   55|  1.26k|		_r->length -= _l;         \
  |  |   56|  1.26k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.26k]
  |  |  ------------------
  ------------------
  117|  1.26k|	snprintf(buf, sizeof(buf), "%lu", num);
  118|  1.26k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.26k|	{                                  \
  |  |  277|  1.26k|		isc_result_t _r = (x);     \
  |  |  278|  1.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.26k|	}
  ------------------
  119|       |
  120|       |	/*
  121|       |	 * Digest.
  122|       |	 */
  123|  1.26k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.26k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (123:6): [True: 0, False: 1.26k]
  ------------------
  124|      0|		RETERR(str_totext(" (", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  125|      0|	}
  126|  1.26k|	RETERR(str_totext(tctx->linebreak, target));
  ------------------
  |  |  276|  1.26k|	{                                  \
  |  |  277|  1.26k|		isc_result_t _r = (x);     \
  |  |  278|  1.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.26k|	}
  ------------------
  127|  1.26k|	if ((tctx->flags & DNS_STYLEFLAG_NOCRYPTO) == 0) {
  ------------------
  |  |   95|  1.26k|#define DNS_STYLEFLAG_NOCRYPTO 0x008000000ULL
  ------------------
  |  Branch (127:6): [True: 1.26k, False: 0]
  ------------------
  128|  1.26k|		if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (128:7): [True: 0, False: 1.26k]
  ------------------
  129|      0|			RETERR(isc_hex_totext(&sr, 0, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  130|  1.26k|		} else {
  131|  1.26k|			RETERR(isc_hex_totext(&sr, tctx->width - 2,
  ------------------
  |  |  276|  1.26k|	{                                  \
  |  |  277|  1.26k|		isc_result_t _r = (x);     \
  |  |  278|  1.26k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.26k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.26k|	}
  ------------------
  132|  1.26k|					      tctx->linebreak, target));
  133|  1.26k|		}
  134|  1.26k|	} else {
  135|      0|		RETERR(str_totext("[omitted]", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  136|      0|	}
  137|  1.26k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  1.26k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (137:6): [True: 0, False: 1.26k]
  ------------------
  138|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
  139|      0|	}
  140|  1.26k|	return ISC_R_SUCCESS;
  141|  1.26k|}

rdata.c:fromwire_hs_a:
   65|  1.24k|fromwire_hs_a(ARGS_FROMWIRE) {
   66|  1.24k|	isc_region_t sregion;
   67|  1.24k|	isc_region_t tregion;
   68|       |
   69|  1.24k|	REQUIRE(type == dns_rdatatype_a);
  ------------------
  |  |  198|  1.24k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.24k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.24k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.24k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   70|  1.24k|	REQUIRE(rdclass == dns_rdataclass_hs);
  ------------------
  |  |  198|  1.24k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.24k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.24k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.24k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   71|       |
   72|  1.24k|	UNUSED(type);
  ------------------
  |  |   69|  1.24k|#define UNUSED(x) (void)(x)
  ------------------
   73|  1.24k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.24k|#define UNUSED(x) (void)(x)
  ------------------
   74|  1.24k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.24k|#define UNUSED(x) (void)(x)
  ------------------
   75|       |
   76|  1.24k|	isc_buffer_activeregion(source, &sregion);
   77|  1.24k|	isc_buffer_availableregion(target, &tregion);
   78|  1.24k|	if (sregion.length < 4) {
  ------------------
  |  Branch (78:6): [True: 5, False: 1.24k]
  ------------------
   79|      5|		return ISC_R_UNEXPECTEDEND;
   80|      5|	}
   81|  1.24k|	if (tregion.length < 4) {
  ------------------
  |  Branch (81:6): [True: 195, False: 1.04k]
  ------------------
   82|    195|		return ISC_R_NOSPACE;
   83|    195|	}
   84|       |
   85|  1.04k|	memmove(tregion.base, sregion.base, 4);
   86|  1.04k|	isc_buffer_forward(source, 4);
   87|  1.04k|	isc_buffer_add(target, 4);
   88|  1.04k|	return ISC_R_SUCCESS;
   89|  1.24k|}
rdata.c:towire_hs_a:
   92|    381|towire_hs_a(ARGS_TOWIRE) {
   93|    381|	isc_region_t region;
   94|       |
   95|    381|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|    381|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    381|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 381, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    381|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   96|    381|	REQUIRE(rdata->rdclass == dns_rdataclass_hs);
  ------------------
  |  |  198|    381|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    381|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 381, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    381|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   97|    381|	REQUIRE(rdata->length == 4);
  ------------------
  |  |  198|    381|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    381|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 381, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    381|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   98|       |
   99|    381|	UNUSED(cctx);
  ------------------
  |  |   69|    381|#define UNUSED(x) (void)(x)
  ------------------
  100|       |
  101|    381|	isc_buffer_availableregion(target, &region);
  102|    381|	if (region.length < rdata->length) {
  ------------------
  |  Branch (102:6): [True: 1, False: 380]
  ------------------
  103|      1|		return ISC_R_NOSPACE;
  104|      1|	}
  105|    380|	memmove(region.base, rdata->data, rdata->length);
  106|    380|	isc_buffer_add(target, 4);
  107|    380|	return ISC_R_SUCCESS;
  108|    381|}
rdata.c:totext_hs_a:
   51|    731|totext_hs_a(ARGS_TOTEXT) {
   52|    731|	isc_region_t region;
   53|       |
   54|    731|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|    731|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    731|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 731, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    731|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   55|    731|	REQUIRE(rdata->rdclass == dns_rdataclass_hs);
  ------------------
  |  |  198|    731|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    731|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 731, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    731|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   56|    731|	REQUIRE(rdata->length == 4);
  ------------------
  |  |  198|    731|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    731|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 731, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    731|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   57|       |
   58|    731|	UNUSED(tctx);
  ------------------
  |  |   69|    731|#define UNUSED(x) (void)(x)
  ------------------
   59|       |
   60|    731|	dns_rdata_toregion(rdata, &region);
   61|       |	return inet_totext(AF_INET, tctx->flags, &region, target);
   62|    731|}

rdata.c:fromwire_in_a6:
  152|  2.07k|fromwire_in_a6(ARGS_FROMWIRE) {
  153|  2.07k|	isc_region_t sr;
  154|  2.07k|	unsigned char prefixlen;
  155|  2.07k|	unsigned char octets;
  156|  2.07k|	unsigned char mask;
  157|  2.07k|	dns_name_t name;
  158|       |
  159|  2.07k|	REQUIRE(type == dns_rdatatype_a6);
  ------------------
  |  |  198|  2.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  160|  2.07k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.07k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.07k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.07k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.07k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  161|       |
  162|  2.07k|	UNUSED(type);
  ------------------
  |  |   69|  2.07k|#define UNUSED(x) (void)(x)
  ------------------
  163|  2.07k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.07k|#define UNUSED(x) (void)(x)
  ------------------
  164|       |
  165|  2.07k|	dctx = dns_decompress_setpermitted(dctx, false);
  166|       |
  167|  2.07k|	isc_buffer_activeregion(source, &sr);
  168|       |	/*
  169|       |	 * Prefix length.
  170|       |	 */
  171|  2.07k|	if (sr.length < 1) {
  ------------------
  |  Branch (171:6): [True: 2, False: 2.06k]
  ------------------
  172|      2|		return ISC_R_UNEXPECTEDEND;
  173|      2|	}
  174|  2.06k|	prefixlen = sr.base[0];
  175|  2.06k|	if (prefixlen > 128) {
  ------------------
  |  Branch (175:6): [True: 1, False: 2.06k]
  ------------------
  176|      1|		return ISC_R_RANGE;
  177|      1|	}
  178|  2.06k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.06k|	do {                              \
  |  |   51|  2.06k|		isc_region_t *_r = (r);   \
  |  |   52|  2.06k|		unsigned int  _l = (l);   \
  |  |   53|  2.06k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.06k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.06k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.06k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.06k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.06k|		_r->base += _l;           \
  |  |   55|  2.06k|		_r->length -= _l;         \
  |  |   56|  2.06k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.06k]
  |  |  ------------------
  ------------------
  179|  2.06k|	RETERR(mem_tobuffer(target, &prefixlen, 1));
  ------------------
  |  |  276|  2.06k|	{                                  \
  |  |  277|  2.06k|		isc_result_t _r = (x);     \
  |  |  278|  2.06k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 194, False: 1.87k]
  |  |  ------------------
  |  |  279|    194|			return ((_r));     \
  |  |  280|    194|		}                          \
  |  |  281|  2.06k|	}
  ------------------
  180|  1.87k|	isc_buffer_forward(source, 1);
  181|       |
  182|       |	/*
  183|       |	 * Suffix.
  184|       |	 */
  185|  1.87k|	if (prefixlen != 128) {
  ------------------
  |  Branch (185:6): [True: 1.36k, False: 512]
  ------------------
  186|  1.36k|		octets = 16 - prefixlen / 8;
  187|  1.36k|		if (sr.length < octets) {
  ------------------
  |  Branch (187:7): [True: 24, False: 1.33k]
  ------------------
  188|     24|			return ISC_R_UNEXPECTEDEND;
  189|     24|		}
  190|  1.33k|		mask = 0xff >> (prefixlen % 8);
  191|  1.33k|		if ((sr.base[0] & ~mask) != 0) {
  ------------------
  |  Branch (191:7): [True: 10, False: 1.32k]
  ------------------
  192|     10|			return DNS_R_FORMERR;
  193|     10|		}
  194|  1.32k|		RETERR(mem_tobuffer(target, sr.base, octets));
  ------------------
  |  |  276|  1.32k|	{                                  \
  |  |  277|  1.32k|		isc_result_t _r = (x);     \
  |  |  278|  1.32k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 197, False: 1.13k]
  |  |  ------------------
  |  |  279|    197|			return ((_r));     \
  |  |  280|    197|		}                          \
  |  |  281|  1.32k|	}
  ------------------
  195|  1.13k|		isc_buffer_forward(source, octets);
  196|  1.13k|	}
  197|       |
  198|  1.64k|	if (prefixlen == 0) {
  ------------------
  |  Branch (198:6): [True: 946, False: 696]
  ------------------
  199|    946|		return ISC_R_SUCCESS;
  200|    946|	}
  201|       |
  202|    696|	dns_name_init(&name);
  203|    696|	return dns_name_fromwire(&name, source, dctx, target);
  204|  1.64k|}
rdata.c:towire_in_a6:
  207|    591|towire_in_a6(ARGS_TOWIRE) {
  208|    591|	isc_region_t sr;
  209|    591|	dns_name_t name;
  210|    591|	unsigned char prefixlen;
  211|    591|	unsigned char octets;
  212|       |
  213|    591|	REQUIRE(rdata->type == dns_rdatatype_a6);
  ------------------
  |  |  198|    591|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    591|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 591, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    591|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  214|    591|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    591|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    591|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 591, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    591|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  215|    591|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    591|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    591|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 591, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    591|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  216|       |
  217|    591|	dns_compress_setpermitted(cctx, false);
  218|    591|	dns_rdata_toregion(rdata, &sr);
  219|    591|	prefixlen = sr.base[0];
  220|    591|	INSIST(prefixlen <= 128);
  ------------------
  |  |  202|    591|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    591|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 591, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    591|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  221|       |
  222|    591|	octets = 1 + 16 - prefixlen / 8;
  223|    591|	RETERR(mem_tobuffer(target, sr.base, octets));
  ------------------
  |  |  276|    591|	{                                  \
  |  |  277|    591|		isc_result_t _r = (x);     \
  |  |  278|    591|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 590]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    591|	}
  ------------------
  224|    590|	isc_region_consume(&sr, octets);
  ------------------
  |  |   50|    590|	do {                              \
  |  |   51|    590|		isc_region_t *_r = (r);   \
  |  |   52|    590|		unsigned int  _l = (l);   \
  |  |   53|    590|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    590|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    590|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 590, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    590|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    590|		_r->base += _l;           \
  |  |   55|    590|		_r->length -= _l;         \
  |  |   56|    590|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 590]
  |  |  ------------------
  ------------------
  225|       |
  226|    590|	if (prefixlen == 0) {
  ------------------
  |  Branch (226:6): [True: 267, False: 323]
  ------------------
  227|    267|		return ISC_R_SUCCESS;
  228|    267|	}
  229|       |
  230|    323|	dns_name_init(&name);
  231|    323|	dns_name_fromregion(&name, &sr);
  232|    323|	return dns_name_towire(&name, cctx, target);
  233|    590|}
rdata.c:totext_in_a6:
  103|  1.16k|totext_in_a6(ARGS_TOTEXT) {
  104|  1.16k|	isc_region_t sr, ar;
  105|  1.16k|	unsigned char addr[16];
  106|  1.16k|	unsigned char prefixlen;
  107|  1.16k|	unsigned char octets;
  108|  1.16k|	unsigned char mask;
  109|  1.16k|	char buf[sizeof("128")];
  110|  1.16k|	dns_name_t name;
  111|  1.16k|	dns_name_t prefix;
  112|  1.16k|	unsigned int opts;
  113|       |
  114|  1.16k|	REQUIRE(rdata->type == dns_rdatatype_a6);
  ------------------
  |  |  198|  1.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  115|  1.16k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  116|  1.16k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.16k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.16k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|       |
  118|  1.16k|	dns_rdata_toregion(rdata, &sr);
  119|  1.16k|	prefixlen = sr.base[0];
  120|  1.16k|	INSIST(prefixlen <= 128);
  ------------------
  |  |  202|  1.16k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.16k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.16k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  121|  1.16k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.16k|	do {                              \
  |  |   51|  1.16k|		isc_region_t *_r = (r);   \
  |  |   52|  1.16k|		unsigned int  _l = (l);   \
  |  |   53|  1.16k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.16k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.16k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.16k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.16k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.16k|		_r->base += _l;           \
  |  |   55|  1.16k|		_r->length -= _l;         \
  |  |   56|  1.16k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.16k]
  |  |  ------------------
  ------------------
  122|  1.16k|	snprintf(buf, sizeof(buf), "%u", prefixlen);
  123|  1.16k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.16k|	{                                  \
  |  |  277|  1.16k|		isc_result_t _r = (x);     \
  |  |  278|  1.16k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.16k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.16k|	}
  ------------------
  124|  1.16k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.16k|	{                                  \
  |  |  277|  1.16k|		isc_result_t _r = (x);     \
  |  |  278|  1.16k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.16k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.16k|	}
  ------------------
  125|       |
  126|  1.16k|	if (prefixlen != 128) {
  ------------------
  |  Branch (126:6): [True: 695, False: 473]
  ------------------
  127|    695|		octets = prefixlen / 8;
  128|    695|		memset(addr, 0, sizeof(addr));
  129|    695|		memmove(&addr[octets], sr.base, 16 - octets);
  130|    695|		mask = 0xff >> (prefixlen % 8);
  131|    695|		addr[octets] &= mask;
  132|    695|		ar.base = addr;
  133|    695|		ar.length = sizeof(addr);
  134|    695|		RETERR(inet_totext(AF_INET6, tctx->flags, &ar, target));
  ------------------
  |  |  276|    695|	{                                  \
  |  |  277|    695|		isc_result_t _r = (x);     \
  |  |  278|    695|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 695]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    695|	}
  ------------------
  135|    695|		isc_region_consume(&sr, 16 - octets);
  ------------------
  |  |   50|    695|	do {                              \
  |  |   51|    695|		isc_region_t *_r = (r);   \
  |  |   52|    695|		unsigned int  _l = (l);   \
  |  |   53|    695|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    695|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    695|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 695, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    695|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    695|		_r->base += _l;           \
  |  |   55|    695|		_r->length -= _l;         \
  |  |   56|    695|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 695]
  |  |  ------------------
  ------------------
  136|    695|	}
  137|       |
  138|  1.16k|	if (prefixlen == 0) {
  ------------------
  |  Branch (138:6): [True: 531, False: 637]
  ------------------
  139|    531|		return ISC_R_SUCCESS;
  140|    531|	}
  141|       |
  142|    637|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    637|	{                                  \
  |  |  277|    637|		isc_result_t _r = (x);     \
  |  |  278|    637|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 637]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    637|	}
  ------------------
  143|    637|	dns_name_init(&name);
  144|    637|	dns_name_init(&prefix);
  145|    637|	dns_name_fromregion(&name, &sr);
  146|    637|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (146:9): [True: 0, False: 637]
  ------------------
  147|    637|							 : 0;
  148|    637|	return dns_name_totext(&prefix, opts, target);
  149|    637|}

rdata.c:fromwire_in_a:
   68|  3.02k|fromwire_in_a(ARGS_FROMWIRE) {
   69|  3.02k|	isc_region_t sregion;
   70|  3.02k|	isc_region_t tregion;
   71|       |
   72|  3.02k|	REQUIRE(type == dns_rdatatype_a);
  ------------------
  |  |  198|  3.02k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.02k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.02k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.02k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   73|  3.02k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  3.02k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.02k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.02k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.02k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   74|       |
   75|  3.02k|	UNUSED(type);
  ------------------
  |  |   69|  3.02k|#define UNUSED(x) (void)(x)
  ------------------
   76|  3.02k|	UNUSED(dctx);
  ------------------
  |  |   69|  3.02k|#define UNUSED(x) (void)(x)
  ------------------
   77|  3.02k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.02k|#define UNUSED(x) (void)(x)
  ------------------
   78|       |
   79|  3.02k|	isc_buffer_activeregion(source, &sregion);
   80|  3.02k|	isc_buffer_availableregion(target, &tregion);
   81|  3.02k|	if (sregion.length < 4) {
  ------------------
  |  Branch (81:6): [True: 7, False: 3.01k]
  ------------------
   82|      7|		return ISC_R_UNEXPECTEDEND;
   83|      7|	}
   84|  3.01k|	if (tregion.length < 4) {
  ------------------
  |  Branch (84:6): [True: 76, False: 2.94k]
  ------------------
   85|     76|		return ISC_R_NOSPACE;
   86|     76|	}
   87|       |
   88|  2.94k|	memmove(tregion.base, sregion.base, 4);
   89|  2.94k|	isc_buffer_forward(source, 4);
   90|  2.94k|	isc_buffer_add(target, 4);
   91|  2.94k|	return ISC_R_SUCCESS;
   92|  3.01k|}
rdata.c:towire_in_a:
   95|  1.22k|towire_in_a(ARGS_TOWIRE) {
   96|  1.22k|	isc_region_t region;
   97|       |
   98|  1.22k|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|  1.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   99|  1.22k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|  1.22k|	REQUIRE(rdata->length == 4);
  ------------------
  |  |  198|  1.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|       |
  102|  1.22k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.22k|#define UNUSED(x) (void)(x)
  ------------------
  103|       |
  104|  1.22k|	isc_buffer_availableregion(target, &region);
  105|  1.22k|	if (region.length < rdata->length) {
  ------------------
  |  Branch (105:6): [True: 1, False: 1.22k]
  ------------------
  106|      1|		return ISC_R_NOSPACE;
  107|      1|	}
  108|  1.22k|	memmove(region.base, rdata->data, rdata->length);
  109|  1.22k|	isc_buffer_add(target, 4);
  110|  1.22k|	return ISC_R_SUCCESS;
  111|  1.22k|}
rdata.c:totext_in_a:
   54|  2.42k|totext_in_a(ARGS_TOTEXT) {
   55|  2.42k|	isc_region_t region;
   56|       |
   57|  2.42k|	REQUIRE(rdata->type == dns_rdatatype_a);
  ------------------
  |  |  198|  2.42k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.42k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.42k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.42k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   58|  2.42k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.42k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.42k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.42k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.42k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|  2.42k|	REQUIRE(rdata->length == 4);
  ------------------
  |  |  198|  2.42k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.42k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.42k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.42k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|       |
   61|  2.42k|	UNUSED(tctx);
  ------------------
  |  |   69|  2.42k|#define UNUSED(x) (void)(x)
  ------------------
   62|       |
   63|  2.42k|	dns_rdata_toregion(rdata, &region);
   64|       |	return inet_totext(AF_INET, tctx->flags, &region, target);
   65|  2.42k|}

rdata.c:fromwire_in_aaaa:
   84|  2.04k|fromwire_in_aaaa(ARGS_FROMWIRE) {
   85|  2.04k|	isc_region_t sregion;
   86|  2.04k|	isc_region_t tregion;
   87|       |
   88|  2.04k|	REQUIRE(type == dns_rdatatype_aaaa);
  ------------------
  |  |  198|  2.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   89|  2.04k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   90|       |
   91|  2.04k|	UNUSED(type);
  ------------------
  |  |   69|  2.04k|#define UNUSED(x) (void)(x)
  ------------------
   92|  2.04k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.04k|#define UNUSED(x) (void)(x)
  ------------------
   93|  2.04k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.04k|#define UNUSED(x) (void)(x)
  ------------------
   94|       |
   95|  2.04k|	isc_buffer_activeregion(source, &sregion);
   96|  2.04k|	isc_buffer_availableregion(target, &tregion);
   97|  2.04k|	if (sregion.length < 16) {
  ------------------
  |  Branch (97:6): [True: 6, False: 2.03k]
  ------------------
   98|      6|		return ISC_R_UNEXPECTEDEND;
   99|      6|	}
  100|  2.03k|	if (tregion.length < 16) {
  ------------------
  |  Branch (100:6): [True: 213, False: 1.82k]
  ------------------
  101|    213|		return ISC_R_NOSPACE;
  102|    213|	}
  103|       |
  104|  1.82k|	memmove(tregion.base, sregion.base, 16);
  105|  1.82k|	isc_buffer_forward(source, 16);
  106|  1.82k|	isc_buffer_add(target, 16);
  107|  1.82k|	return ISC_R_SUCCESS;
  108|  2.03k|}
rdata.c:towire_in_aaaa:
  111|    672|towire_in_aaaa(ARGS_TOWIRE) {
  112|    672|	isc_region_t region;
  113|       |
  114|    672|	UNUSED(cctx);
  ------------------
  |  |   69|    672|#define UNUSED(x) (void)(x)
  ------------------
  115|       |
  116|    672|	REQUIRE(rdata->type == dns_rdatatype_aaaa);
  ------------------
  |  |  198|    672|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    672|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 672, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    672|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|    672|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    672|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    672|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 672, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    672|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  118|    672|	REQUIRE(rdata->length == 16);
  ------------------
  |  |  198|    672|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    672|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 672, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    672|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  119|       |
  120|    672|	isc_buffer_availableregion(target, &region);
  121|    672|	if (region.length < rdata->length) {
  ------------------
  |  Branch (121:6): [True: 1, False: 671]
  ------------------
  122|      1|		return ISC_R_NOSPACE;
  123|      1|	}
  124|    671|	memmove(region.base, rdata->data, rdata->length);
  125|    671|	isc_buffer_add(target, 16);
  126|    671|	return ISC_R_SUCCESS;
  127|    672|}
rdata.c:totext_in_aaaa:
   54|  1.33k|totext_in_aaaa(ARGS_TOTEXT) {
   55|  1.33k|	isc_region_t region;
   56|       |
   57|  1.33k|	REQUIRE(rdata->type == dns_rdatatype_aaaa);
  ------------------
  |  |  198|  1.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   58|  1.33k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   59|  1.33k|	REQUIRE(rdata->length == 16);
  ------------------
  |  |  198|  1.33k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.33k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.33k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.33k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|       |
   61|  1.33k|	if ((tctx->flags & DNS_STYLEFLAG_EXPANDAAAA) != 0) {
  ------------------
  |  |  204|  1.33k|#define DNS_STYLEFLAG_EXPANDAAAA 0x00000020ULL
  ------------------
  |  Branch (61:6): [True: 0, False: 1.33k]
  ------------------
   62|      0|		char buf[5 * 8];
   63|      0|		const char *sep = "";
   64|      0|		int i, n;
   65|      0|		unsigned int len = 0;
   66|       |
   67|      0|		for (i = 0; i < 16; i += 2) {
  ------------------
  |  Branch (67:15): [True: 0, False: 0]
  ------------------
   68|      0|			INSIST(len < sizeof(buf));
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
   69|      0|			n = snprintf(buf + len, sizeof(buf) - len, "%s%02x%02x",
   70|      0|				     sep, rdata->data[i], rdata->data[i + 1]);
   71|      0|			if (n < 0) {
  ------------------
  |  Branch (71:8): [True: 0, False: 0]
  ------------------
   72|      0|				return ISC_R_FAILURE;
   73|      0|			}
   74|      0|			len += n;
   75|      0|			sep = ":";
   76|      0|		}
   77|      0|		return str_totext(buf, target);
   78|      0|	}
   79|  1.33k|	dns_rdata_toregion(rdata, &region);
   80|       |	return inet_totext(AF_INET6, tctx->flags, &region, target);
   81|  1.33k|}

rdata.c:fromwire_in_apl:
  183|  2.76k|fromwire_in_apl(ARGS_FROMWIRE) {
  184|  2.76k|	isc_region_t sr, sr2;
  185|  2.76k|	isc_region_t tr;
  186|  2.76k|	uint16_t afi;
  187|  2.76k|	uint8_t prefix;
  188|  2.76k|	uint8_t len;
  189|       |
  190|  2.76k|	REQUIRE(type == dns_rdatatype_apl);
  ------------------
  |  |  198|  2.76k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.76k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.76k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  191|  2.76k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.76k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.76k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.76k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.76k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  192|       |
  193|  2.76k|	UNUSED(type);
  ------------------
  |  |   69|  2.76k|#define UNUSED(x) (void)(x)
  ------------------
  194|  2.76k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.76k|#define UNUSED(x) (void)(x)
  ------------------
  195|  2.76k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.76k|#define UNUSED(x) (void)(x)
  ------------------
  196|       |
  197|  2.76k|	isc_buffer_activeregion(source, &sr);
  198|  2.76k|	isc_buffer_availableregion(target, &tr);
  199|  2.76k|	if (sr.length > tr.length) {
  ------------------
  |  Branch (199:6): [True: 75, False: 2.68k]
  ------------------
  200|     75|		return ISC_R_NOSPACE;
  201|     75|	}
  202|  2.68k|	sr2 = sr;
  203|       |
  204|       |	/* Zero or more items */
  205|  6.31k|	while (sr.length > 0) {
  ------------------
  |  Branch (205:9): [True: 3.65k, False: 2.66k]
  ------------------
  206|  3.65k|		if (sr.length < 4) {
  ------------------
  |  Branch (206:7): [True: 9, False: 3.64k]
  ------------------
  207|      9|			return ISC_R_UNEXPECTEDEND;
  208|      9|		}
  209|  3.64k|		afi = uint16_fromregion(&sr);
  210|  3.64k|		isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  3.64k|	do {                              \
  |  |   51|  3.64k|		isc_region_t *_r = (r);   \
  |  |   52|  3.64k|		unsigned int  _l = (l);   \
  |  |   53|  3.64k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.64k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.64k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.64k|		_r->base += _l;           \
  |  |   55|  3.64k|		_r->length -= _l;         \
  |  |   56|  3.64k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.64k]
  |  |  ------------------
  ------------------
  211|  3.64k|		prefix = *sr.base;
  212|  3.64k|		isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.64k|	do {                              \
  |  |   51|  3.64k|		isc_region_t *_r = (r);   \
  |  |   52|  3.64k|		unsigned int  _l = (l);   \
  |  |   53|  3.64k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.64k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.64k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.64k|		_r->base += _l;           \
  |  |   55|  3.64k|		_r->length -= _l;         \
  |  |   56|  3.64k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.64k]
  |  |  ------------------
  ------------------
  213|  3.64k|		len = (*sr.base & 0x7f);
  214|  3.64k|		isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  3.64k|	do {                              \
  |  |   51|  3.64k|		isc_region_t *_r = (r);   \
  |  |   52|  3.64k|		unsigned int  _l = (l);   \
  |  |   53|  3.64k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.64k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.64k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.64k|		_r->base += _l;           \
  |  |   55|  3.64k|		_r->length -= _l;         \
  |  |   56|  3.64k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.64k]
  |  |  ------------------
  ------------------
  215|  3.64k|		if (len > sr.length) {
  ------------------
  |  Branch (215:7): [True: 3, False: 3.64k]
  ------------------
  216|      3|			return ISC_R_UNEXPECTEDEND;
  217|      3|		}
  218|  3.64k|		switch (afi) {
  ------------------
  |  Branch (218:11): [True: 2.05k, False: 1.58k]
  ------------------
  219|    650|		case 1:
  ------------------
  |  Branch (219:3): [True: 650, False: 2.99k]
  ------------------
  220|    650|			if (prefix > 32 || len > 4) {
  ------------------
  |  Branch (220:8): [True: 4, False: 646]
  |  Branch (220:23): [True: 2, False: 644]
  ------------------
  221|      6|				return ISC_R_RANGE;
  222|      6|			}
  223|    644|			break;
  224|  1.40k|		case 2:
  ------------------
  |  Branch (224:3): [True: 1.40k, False: 2.23k]
  ------------------
  225|  1.40k|			if (prefix > 128 || len > 16) {
  ------------------
  |  Branch (225:8): [True: 1, False: 1.40k]
  |  Branch (225:24): [True: 1, False: 1.40k]
  ------------------
  226|      2|				return ISC_R_RANGE;
  227|      2|			}
  228|  3.64k|		}
  229|  3.63k|		if (len > 0 && sr.base[len - 1] == 0) {
  ------------------
  |  Branch (229:7): [True: 769, False: 2.86k]
  |  Branch (229:18): [True: 5, False: 764]
  ------------------
  230|      5|			return DNS_R_FORMERR;
  231|      5|		}
  232|  3.62k|		isc_region_consume(&sr, len);
  ------------------
  |  |   50|  3.62k|	do {                              \
  |  |   51|  3.62k|		isc_region_t *_r = (r);   \
  |  |   52|  3.62k|		unsigned int  _l = (l);   \
  |  |   53|  3.62k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.62k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.62k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.62k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.62k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.62k|		_r->base += _l;           \
  |  |   55|  3.62k|		_r->length -= _l;         \
  |  |   56|  3.62k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.62k]
  |  |  ------------------
  ------------------
  233|  3.62k|	}
  234|  2.66k|	isc_buffer_forward(source, sr2.length);
  235|  2.66k|	return mem_tobuffer(target, sr2.base, sr2.length);
  236|  2.68k|}
rdata.c:towire_in_apl:
  239|  1.24k|towire_in_apl(ARGS_TOWIRE) {
  240|  1.24k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.24k|#define UNUSED(x) (void)(x)
  ------------------
  241|       |
  242|  1.24k|	REQUIRE(rdata->type == dns_rdatatype_apl);
  ------------------
  |  |  198|  1.24k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.24k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.24k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.24k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  243|  1.24k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.24k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.24k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.24k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.24k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  244|       |
  245|  1.24k|	return mem_tobuffer(target, rdata->data, rdata->length);
  246|  1.24k|}
rdata.c:totext_in_apl:
  118|  2.55k|totext_in_apl(ARGS_TOTEXT) {
  119|  2.55k|	isc_region_t sr;
  120|  2.55k|	isc_region_t ir;
  121|  2.55k|	uint16_t afi;
  122|  2.55k|	uint8_t prefix;
  123|  2.55k|	uint8_t len;
  124|  2.55k|	bool neg;
  125|  2.55k|	unsigned char buf[16];
  126|  2.55k|	char txt[sizeof(" !64000:")];
  127|  2.55k|	const char *sep = "";
  128|  2.55k|	int n;
  129|       |
  130|  2.55k|	REQUIRE(rdata->type == dns_rdatatype_apl);
  ------------------
  |  |  198|  2.55k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.55k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.55k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.55k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  131|  2.55k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.55k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.55k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.55k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.55k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  132|       |
  133|  2.55k|	UNUSED(tctx);
  ------------------
  |  |   69|  2.55k|#define UNUSED(x) (void)(x)
  ------------------
  134|       |
  135|  2.55k|	dns_rdata_toregion(rdata, &sr);
  136|  2.55k|	ir.base = buf;
  137|  2.55k|	ir.length = sizeof(buf);
  138|       |
  139|  4.45k|	while (sr.length > 0) {
  ------------------
  |  Branch (139:9): [True: 2.64k, False: 1.81k]
  ------------------
  140|  2.64k|		INSIST(sr.length >= 4);
  ------------------
  |  |  202|  2.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  2.64k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2.64k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  2.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  141|  2.64k|		afi = uint16_fromregion(&sr);
  142|  2.64k|		isc_region_consume(&sr, 2);
  ------------------
  |  |   50|  2.64k|	do {                              \
  |  |   51|  2.64k|		isc_region_t *_r = (r);   \
  |  |   52|  2.64k|		unsigned int  _l = (l);   \
  |  |   53|  2.64k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.64k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.64k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.64k|		_r->base += _l;           \
  |  |   55|  2.64k|		_r->length -= _l;         \
  |  |   56|  2.64k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.64k]
  |  |  ------------------
  ------------------
  143|  2.64k|		prefix = *sr.base;
  144|  2.64k|		isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.64k|	do {                              \
  |  |   51|  2.64k|		isc_region_t *_r = (r);   \
  |  |   52|  2.64k|		unsigned int  _l = (l);   \
  |  |   53|  2.64k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.64k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.64k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.64k|		_r->base += _l;           \
  |  |   55|  2.64k|		_r->length -= _l;         \
  |  |   56|  2.64k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.64k]
  |  |  ------------------
  ------------------
  145|  2.64k|		len = (*sr.base & 0x7f);
  146|  2.64k|		neg = (*sr.base & 0x80);
  147|  2.64k|		isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  2.64k|	do {                              \
  |  |   51|  2.64k|		isc_region_t *_r = (r);   \
  |  |   52|  2.64k|		unsigned int  _l = (l);   \
  |  |   53|  2.64k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.64k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.64k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.64k|		_r->base += _l;           \
  |  |   55|  2.64k|		_r->length -= _l;         \
  |  |   56|  2.64k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.64k]
  |  |  ------------------
  ------------------
  148|  2.64k|		INSIST(len <= sr.length);
  ------------------
  |  |  202|  2.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  2.64k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2.64k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  2.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  149|  2.64k|		n = snprintf(txt, sizeof(txt), "%s%s%u:", sep, neg ? "!" : "",
  ------------------
  |  Branch (149:50): [True: 23, False: 2.61k]
  ------------------
  150|  2.64k|			     afi);
  151|  2.64k|		INSIST(n < (int)sizeof(txt));
  ------------------
  |  |  202|  2.64k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  2.64k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2.64k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  2.64k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  152|  2.64k|		RETERR(str_totext(txt, target));
  ------------------
  |  |  276|  2.64k|	{                                  \
  |  |  277|  2.64k|		isc_result_t _r = (x);     \
  |  |  278|  2.64k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.64k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.64k|	}
  ------------------
  153|  2.64k|		switch (afi) {
  154|    582|		case 1:
  ------------------
  |  Branch (154:3): [True: 582, False: 2.06k]
  ------------------
  155|    582|			INSIST(len <= 4);
  ------------------
  |  |  202|    582|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    582|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 582, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    582|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  156|    582|			INSIST(prefix <= 32);
  ------------------
  |  |  202|    582|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    582|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 582, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    582|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  157|    582|			memset(buf, 0, sizeof(buf));
  158|    582|			memmove(buf, sr.base, len);
  159|    582|			RETERR(inet_totext(AF_INET, tctx->flags, &ir, target));
  ------------------
  |  |  276|    582|	{                                  \
  |  |  277|    582|		isc_result_t _r = (x);     \
  |  |  278|    582|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 582]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    582|	}
  ------------------
  160|    582|			break;
  161|       |
  162|  1.31k|		case 2:
  ------------------
  |  Branch (162:3): [True: 1.31k, False: 1.33k]
  ------------------
  163|  1.31k|			INSIST(len <= 16);
  ------------------
  |  |  202|  1.31k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.31k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  164|  1.31k|			INSIST(prefix <= 128);
  ------------------
  |  |  202|  1.31k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.31k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.31k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.31k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  165|  1.31k|			memset(buf, 0, sizeof(buf));
  166|  1.31k|			memmove(buf, sr.base, len);
  167|  1.31k|			RETERR(inet_totext(AF_INET6, tctx->flags, &ir, target));
  ------------------
  |  |  276|  1.31k|	{                                  \
  |  |  277|  1.31k|		isc_result_t _r = (x);     \
  |  |  278|  1.31k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.31k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.31k|	}
  ------------------
  168|  1.31k|			break;
  169|       |
  170|    748|		default:
  ------------------
  |  Branch (170:3): [True: 748, False: 1.89k]
  ------------------
  171|    748|			return ISC_R_NOTIMPLEMENTED;
  172|  2.64k|		}
  173|  1.89k|		n = snprintf(txt, sizeof(txt), "/%u", prefix);
  174|  1.89k|		INSIST(n < (int)sizeof(txt));
  ------------------
  |  |  202|  1.89k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.89k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.89k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.89k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  175|  1.89k|		RETERR(str_totext(txt, target));
  ------------------
  |  |  276|  1.89k|	{                                  \
  |  |  277|  1.89k|		isc_result_t _r = (x);     \
  |  |  278|  1.89k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.89k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.89k|	}
  ------------------
  176|  1.89k|		isc_region_consume(&sr, len);
  ------------------
  |  |   50|  1.89k|	do {                              \
  |  |   51|  1.89k|		isc_region_t *_r = (r);   \
  |  |   52|  1.89k|		unsigned int  _l = (l);   \
  |  |   53|  1.89k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.89k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.89k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.89k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.89k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.89k|		_r->base += _l;           \
  |  |   55|  1.89k|		_r->length -= _l;         \
  |  |   56|  1.89k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.89k]
  |  |  ------------------
  ------------------
  177|  1.89k|		sep = " ";
  178|  1.89k|	}
  179|  1.81k|	return ISC_R_SUCCESS;
  180|  2.55k|}

rdata.c:fromwire_in_atma:
  144|  2.61k|fromwire_in_atma(ARGS_FROMWIRE) {
  145|  2.61k|	isc_region_t region;
  146|       |
  147|  2.61k|	REQUIRE(type == dns_rdatatype_atma);
  ------------------
  |  |  198|  2.61k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.61k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.61k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.61k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  148|  2.61k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.61k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.61k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.61k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.61k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  149|       |
  150|  2.61k|	UNUSED(type);
  ------------------
  |  |   69|  2.61k|#define UNUSED(x) (void)(x)
  ------------------
  151|  2.61k|	UNUSED(dctx);
  ------------------
  |  |   69|  2.61k|#define UNUSED(x) (void)(x)
  ------------------
  152|  2.61k|	UNUSED(rdclass);
  ------------------
  |  |   69|  2.61k|#define UNUSED(x) (void)(x)
  ------------------
  153|       |
  154|  2.61k|	isc_buffer_activeregion(source, &region);
  155|  2.61k|	if (region.length < 2) {
  ------------------
  |  Branch (155:6): [True: 3, False: 2.61k]
  ------------------
  156|      3|		return ISC_R_UNEXPECTEDEND;
  157|      3|	}
  158|  2.61k|	if (region.base[0] == 1) {
  ------------------
  |  Branch (158:6): [True: 1.21k, False: 1.39k]
  ------------------
  159|  1.21k|		unsigned int i;
  160|  2.63k|		for (i = 1; i < region.length; i++) {
  ------------------
  |  Branch (160:15): [True: 1.41k, False: 1.21k]
  ------------------
  161|  1.41k|			if (!isdigit((unsigned char)region.base[i])) {
  ------------------
  |  Branch (161:8): [True: 1, False: 1.41k]
  ------------------
  162|      1|				return DNS_R_FORMERR;
  163|      1|			}
  164|  1.41k|		}
  165|  1.21k|	}
  166|  2.61k|	RETERR(mem_tobuffer(target, region.base, region.length));
  ------------------
  |  |  276|  2.61k|	{                                  \
  |  |  277|  2.61k|		isc_result_t _r = (x);     \
  |  |  278|  2.61k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 71, False: 2.54k]
  |  |  ------------------
  |  |  279|     71|			return ((_r));     \
  |  |  280|     71|		}                          \
  |  |  281|  2.61k|	}
  ------------------
  167|  2.54k|	isc_buffer_forward(source, region.length);
  168|  2.54k|	return ISC_R_SUCCESS;
  169|  2.61k|}
rdata.c:towire_in_atma:
  172|  1.22k|towire_in_atma(ARGS_TOWIRE) {
  173|  1.22k|	REQUIRE(rdata->type == dns_rdatatype_atma);
  ------------------
  |  |  198|  1.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  174|  1.22k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  175|  1.22k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  176|       |
  177|  1.22k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.22k|#define UNUSED(x) (void)(x)
  ------------------
  178|       |
  179|  1.22k|	return mem_tobuffer(target, rdata->data, rdata->length);
  180|  1.22k|}
rdata.c:totext_in_atma:
  111|  2.44k|totext_in_atma(ARGS_TOTEXT) {
  112|  2.44k|	isc_region_t region;
  113|  2.44k|	char buf[sizeof("xx")];
  114|       |
  115|  2.44k|	REQUIRE(rdata->type == dns_rdatatype_atma);
  ------------------
  |  |  198|  2.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  116|  2.44k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|  2.44k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.44k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.44k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.44k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  118|       |
  119|  2.44k|	UNUSED(tctx);
  ------------------
  |  |   69|  2.44k|#define UNUSED(x) (void)(x)
  ------------------
  120|       |
  121|  2.44k|	dns_rdata_toregion(rdata, &region);
  122|  2.44k|	INSIST(region.length > 1);
  ------------------
  |  |  202|  2.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  2.44k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2.44k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  2.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  123|  2.44k|	switch (region.base[0]) {
  124|    701|	case 0:
  ------------------
  |  Branch (124:2): [True: 701, False: 1.74k]
  ------------------
  125|    701|		isc_region_consume(&region, 1);
  ------------------
  |  |   50|    701|	do {                              \
  |  |   51|    701|		isc_region_t *_r = (r);   \
  |  |   52|    701|		unsigned int  _l = (l);   \
  |  |   53|    701|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    701|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    701|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 701, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    701|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    701|		_r->base += _l;           \
  |  |   55|    701|		_r->length -= _l;         \
  |  |   56|    701|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 701]
  |  |  ------------------
  ------------------
  126|  3.94k|		while (region.length != 0) {
  ------------------
  |  Branch (126:10): [True: 3.24k, False: 701]
  ------------------
  127|  3.24k|			snprintf(buf, sizeof(buf), "%02x", region.base[0]);
  128|  3.24k|			isc_region_consume(&region, 1);
  ------------------
  |  |   50|  3.24k|	do {                              \
  |  |   51|  3.24k|		isc_region_t *_r = (r);   \
  |  |   52|  3.24k|		unsigned int  _l = (l);   \
  |  |   53|  3.24k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  3.24k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  3.24k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 3.24k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  3.24k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  3.24k|		_r->base += _l;           \
  |  |   55|  3.24k|		_r->length -= _l;         \
  |  |   56|  3.24k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 3.24k]
  |  |  ------------------
  ------------------
  129|  3.24k|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  3.24k|	{                                  \
  |  |  277|  3.24k|		isc_result_t _r = (x);     \
  |  |  278|  3.24k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.24k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.24k|	}
  ------------------
  130|  3.24k|		}
  131|    701|		break;
  132|  1.20k|	case 1:
  ------------------
  |  Branch (132:2): [True: 1.20k, False: 1.24k]
  ------------------
  133|  1.20k|		RETERR(str_totext("+", target));
  ------------------
  |  |  276|  1.20k|	{                                  \
  |  |  277|  1.20k|		isc_result_t _r = (x);     \
  |  |  278|  1.20k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.20k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.20k|	}
  ------------------
  134|  1.20k|		isc_region_consume(&region, 1);
  ------------------
  |  |   50|  1.20k|	do {                              \
  |  |   51|  1.20k|		isc_region_t *_r = (r);   \
  |  |   52|  1.20k|		unsigned int  _l = (l);   \
  |  |   53|  1.20k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.20k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.20k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.20k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.20k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.20k|		_r->base += _l;           \
  |  |   55|  1.20k|		_r->length -= _l;         \
  |  |   56|  1.20k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.20k]
  |  |  ------------------
  ------------------
  135|  1.20k|		RETERR(mem_tobuffer(target, region.base, region.length));
  ------------------
  |  |  276|  1.20k|	{                                  \
  |  |  277|  1.20k|		isc_result_t _r = (x);     \
  |  |  278|  1.20k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.20k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.20k|	}
  ------------------
  136|  1.20k|		break;
  137|    545|	default:
  ------------------
  |  Branch (137:2): [True: 545, False: 1.90k]
  ------------------
  138|    545|		return ISC_R_NOTIMPLEMENTED;
  139|  2.44k|	}
  140|  1.90k|	return ISC_R_SUCCESS;
  141|  2.44k|}

rdata.c:fromwire_in_dhcid:
   70|  1.22k|fromwire_in_dhcid(ARGS_FROMWIRE) {
   71|  1.22k|	isc_region_t sr;
   72|       |
   73|  1.22k|	REQUIRE(type == dns_rdatatype_dhcid);
  ------------------
  |  |  198|  1.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   74|  1.22k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.22k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.22k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.22k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.22k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   75|       |
   76|  1.22k|	UNUSED(type);
  ------------------
  |  |   69|  1.22k|#define UNUSED(x) (void)(x)
  ------------------
   77|  1.22k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.22k|#define UNUSED(x) (void)(x)
  ------------------
   78|  1.22k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.22k|#define UNUSED(x) (void)(x)
  ------------------
   79|       |
   80|  1.22k|	isc_buffer_activeregion(source, &sr);
   81|  1.22k|	if (sr.length == 0) {
  ------------------
  |  Branch (81:6): [True: 2, False: 1.22k]
  ------------------
   82|      2|		return ISC_R_UNEXPECTEDEND;
   83|      2|	}
   84|       |
   85|  1.22k|	isc_buffer_forward(source, sr.length);
   86|  1.22k|	return mem_tobuffer(target, sr.base, sr.length);
   87|  1.22k|}
rdata.c:towire_in_dhcid:
   90|    386|towire_in_dhcid(ARGS_TOWIRE) {
   91|    386|	isc_region_t sr;
   92|       |
   93|    386|	REQUIRE(rdata->type == dns_rdatatype_dhcid);
  ------------------
  |  |  198|    386|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    386|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 386, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    386|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   94|    386|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    386|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    386|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 386, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    386|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   95|    386|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    386|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    386|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 386, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    386|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   96|       |
   97|    386|	UNUSED(cctx);
  ------------------
  |  |   69|    386|#define UNUSED(x) (void)(x)
  ------------------
   98|       |
   99|    386|	dns_rdata_toregion(rdata, &sr);
  100|    386|	return mem_tobuffer(target, sr.base, sr.length);
  101|    386|}
rdata.c:totext_in_dhcid:
   36|    757|totext_in_dhcid(ARGS_TOTEXT) {
   37|    757|	isc_region_t sr, sr2;
   38|       |	/* " ; 64000 255 64000" */
   39|    757|	char buf[5 + 3 * 11 + 1];
   40|       |
   41|    757|	REQUIRE(rdata->type == dns_rdatatype_dhcid);
  ------------------
  |  |  198|    757|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    757|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 757, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    757|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   42|    757|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    757|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    757|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 757, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    757|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   43|    757|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    757|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    757|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 757, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    757|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   44|       |
   45|    757|	dns_rdata_toregion(rdata, &sr);
   46|    757|	sr2 = sr;
   47|       |
   48|    757|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    757|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (48:6): [True: 0, False: 757]
  ------------------
   49|      0|		RETERR(str_totext("( " /*)*/, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   50|      0|	}
   51|    757|	if (tctx->width == 0) { /* No splitting */
  ------------------
  |  Branch (51:6): [True: 0, False: 757]
  ------------------
   52|      0|		RETERR(isc_base64_totext(&sr, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   53|    757|	} else {
   54|    757|		RETERR(isc_base64_totext(&sr, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    757|	{                                  \
  |  |  277|    757|		isc_result_t _r = (x);     \
  |  |  278|    757|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 757]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    757|	}
  ------------------
   55|    757|					 target));
   56|    757|	}
   57|    757|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    757|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (57:6): [True: 0, False: 757]
  ------------------
   58|      0|		RETERR(str_totext(/* ( */ " )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   59|      0|		if (rdata->length > 2) {
  ------------------
  |  Branch (59:7): [True: 0, False: 0]
  ------------------
   60|      0|			snprintf(buf, sizeof(buf), " ; %u %u %u",
   61|      0|				 sr2.base[0] * 256U + sr2.base[1], sr2.base[2],
   62|      0|				 rdata->length - 3U);
   63|      0|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   64|      0|		}
   65|      0|	}
   66|    757|	return ISC_R_SUCCESS;
   67|    757|}

rdata.c:fromwire_in_eid:
   61|  3.89k|fromwire_in_eid(ARGS_FROMWIRE) {
   62|  3.89k|	isc_region_t region;
   63|       |
   64|  3.89k|	REQUIRE(type == dns_rdatatype_eid);
  ------------------
  |  |  198|  3.89k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.89k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.89k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.89k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   65|  3.89k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  3.89k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.89k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.89k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.89k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   66|       |
   67|  3.89k|	UNUSED(type);
  ------------------
  |  |   69|  3.89k|#define UNUSED(x) (void)(x)
  ------------------
   68|  3.89k|	UNUSED(dctx);
  ------------------
  |  |   69|  3.89k|#define UNUSED(x) (void)(x)
  ------------------
   69|  3.89k|	UNUSED(rdclass);
  ------------------
  |  |   69|  3.89k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  3.89k|	isc_buffer_activeregion(source, &region);
   72|  3.89k|	if (region.length < 1) {
  ------------------
  |  Branch (72:6): [True: 2, False: 3.89k]
  ------------------
   73|      2|		return ISC_R_UNEXPECTEDEND;
   74|      2|	}
   75|       |
   76|  3.89k|	RETERR(mem_tobuffer(target, region.base, region.length));
  ------------------
  |  |  276|  3.89k|	{                                  \
  |  |  277|  3.89k|		isc_result_t _r = (x);     \
  |  |  278|  3.89k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 219, False: 3.67k]
  |  |  ------------------
  |  |  279|    219|			return ((_r));     \
  |  |  280|    219|		}                          \
  |  |  281|  3.89k|	}
  ------------------
   77|  3.67k|	isc_buffer_forward(source, region.length);
   78|  3.67k|	return ISC_R_SUCCESS;
   79|  3.89k|}
rdata.c:towire_in_eid:
   82|  1.56k|towire_in_eid(ARGS_TOWIRE) {
   83|  1.56k|	REQUIRE(rdata->type == dns_rdatatype_eid);
  ------------------
  |  |  198|  1.56k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.56k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.56k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.56k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|  1.56k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.56k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.56k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.56k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.56k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|  1.56k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.56k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.56k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.56k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.56k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|  1.56k|	UNUSED(cctx);
  ------------------
  |  |   69|  1.56k|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|  1.56k|	return mem_tobuffer(target, rdata->data, rdata->length);
   90|  1.56k|}
rdata.c:totext_in_eid:
   36|  3.04k|totext_in_eid(ARGS_TOTEXT) {
   37|  3.04k|	isc_region_t region;
   38|       |
   39|  3.04k|	REQUIRE(rdata->type == dns_rdatatype_eid);
  ------------------
  |  |  198|  3.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|  3.04k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  3.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|  3.04k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   42|       |
   43|  3.04k|	dns_rdata_toregion(rdata, &region);
   44|       |
   45|  3.04k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.04k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (45:6): [True: 0, False: 3.04k]
  ------------------
   46|      0|		RETERR(str_totext("( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   47|      0|	}
   48|  3.04k|	if (tctx->width == 0) {
  ------------------
  |  Branch (48:6): [True: 0, False: 3.04k]
  ------------------
   49|      0|		RETERR(isc_hex_totext(&region, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   50|  3.04k|	} else {
   51|  3.04k|		RETERR(isc_hex_totext(&region, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|  3.04k|	{                                  \
  |  |  277|  3.04k|		isc_result_t _r = (x);     \
  |  |  278|  3.04k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.04k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.04k|	}
  ------------------
   52|  3.04k|				      target));
   53|  3.04k|	}
   54|  3.04k|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|  3.04k|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (54:6): [True: 0, False: 3.04k]
  ------------------
   55|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   56|      0|	}
   57|  3.04k|	return ISC_R_SUCCESS;
   58|  3.04k|}

rdata.c:fromwire_in_https:
   43|  2.98k|fromwire_in_https(ARGS_FROMWIRE) {
   44|  2.98k|	REQUIRE(type == dns_rdatatype_https);
  ------------------
  |  |  198|  2.98k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.98k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.98k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.98k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   45|  2.98k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.98k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.98k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.98k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.98k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   46|       |
   47|  2.98k|	return generic_fromwire_in_svcb(CALL_FROMWIRE);
  ------------------
  |  |   91|  2.98k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
   48|  2.98k|}
rdata.c:towire_in_https:
   51|  1.37k|towire_in_https(ARGS_TOWIRE) {
   52|  1.37k|	REQUIRE(rdata->type == dns_rdatatype_https);
  ------------------
  |  |  198|  1.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   53|  1.37k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.37k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.37k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.37k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.37k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   54|       |
   55|  1.37k|	return generic_towire_in_svcb(CALL_TOWIRE);
  ------------------
  |  |   96|  1.37k|#define CALL_TOWIRE rdata, cctx, target
  ------------------
   56|  1.37k|}
rdata.c:totext_in_https:
   34|  2.70k|totext_in_https(ARGS_TOTEXT) {
   35|  2.70k|	REQUIRE(rdata->type == dns_rdatatype_https);
  ------------------
  |  |  198|  2.70k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.70k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.70k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.70k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   36|  2.70k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  2.70k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.70k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.70k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.70k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   37|  2.70k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.70k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.70k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.70k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.70k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   38|       |
   39|  2.70k|	return generic_totext_in_svcb(CALL_TOTEXT);
  ------------------
  |  |   85|  2.70k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
   40|  2.70k|}

rdata.c:fromwire_in_kx:
   81|  1.85k|fromwire_in_kx(ARGS_FROMWIRE) {
   82|  1.85k|	dns_name_t name;
   83|  1.85k|	isc_region_t sregion;
   84|       |
   85|  1.85k|	REQUIRE(type == dns_rdatatype_kx);
  ------------------
  |  |  198|  1.85k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.85k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.85k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.85k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|  1.85k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.85k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.85k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.85k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.85k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   87|       |
   88|  1.85k|	UNUSED(type);
  ------------------
  |  |   69|  1.85k|#define UNUSED(x) (void)(x)
  ------------------
   89|  1.85k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.85k|#define UNUSED(x) (void)(x)
  ------------------
   90|       |
   91|  1.85k|	dctx = dns_decompress_setpermitted(dctx, false);
   92|       |
   93|  1.85k|	dns_name_init(&name);
   94|       |
   95|  1.85k|	isc_buffer_activeregion(source, &sregion);
   96|  1.85k|	if (sregion.length < 2) {
  ------------------
  |  Branch (96:6): [True: 4, False: 1.85k]
  ------------------
   97|      4|		return ISC_R_UNEXPECTEDEND;
   98|      4|	}
   99|  1.85k|	RETERR(mem_tobuffer(target, sregion.base, 2));
  ------------------
  |  |  276|  1.85k|	{                                  \
  |  |  277|  1.85k|		isc_result_t _r = (x);     \
  |  |  278|  1.85k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 197, False: 1.65k]
  |  |  ------------------
  |  |  279|    197|			return ((_r));     \
  |  |  280|    197|		}                          \
  |  |  281|  1.85k|	}
  ------------------
  100|  1.65k|	isc_buffer_forward(source, 2);
  101|  1.65k|	return dns_name_fromwire(&name, source, dctx, target);
  102|  1.85k|}
rdata.c:towire_in_kx:
  105|    705|towire_in_kx(ARGS_TOWIRE) {
  106|    705|	dns_name_t name;
  107|    705|	isc_region_t region;
  108|       |
  109|    705|	REQUIRE(rdata->type == dns_rdatatype_kx);
  ------------------
  |  |  198|    705|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    705|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 705, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    705|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  110|    705|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    705|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    705|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 705, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    705|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  111|    705|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    705|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    705|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 705, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    705|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  112|       |
  113|    705|	dns_compress_setpermitted(cctx, false);
  114|    705|	dns_rdata_toregion(rdata, &region);
  115|    705|	RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|    705|	{                                  \
  |  |  277|    705|		isc_result_t _r = (x);     \
  |  |  278|    705|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 704]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    705|	}
  ------------------
  116|    704|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    704|	do {                              \
  |  |   51|    704|		isc_region_t *_r = (r);   \
  |  |   52|    704|		unsigned int  _l = (l);   \
  |  |   53|    704|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    704|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    704|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 704, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    704|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    704|		_r->base += _l;           \
  |  |   55|    704|		_r->length -= _l;         \
  |  |   56|    704|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 704]
  |  |  ------------------
  ------------------
  117|       |
  118|    704|	dns_name_init(&name);
  119|    704|	dns_name_fromregion(&name, &region);
  120|       |
  121|    704|	return dns_name_towire(&name, cctx, target);
  122|    705|}
rdata.c:totext_in_kx:
   51|  1.39k|totext_in_kx(ARGS_TOTEXT) {
   52|  1.39k|	isc_region_t region;
   53|  1.39k|	dns_name_t name;
   54|  1.39k|	dns_name_t prefix;
   55|  1.39k|	unsigned int opts;
   56|  1.39k|	char buf[sizeof("64000")];
   57|  1.39k|	unsigned short num;
   58|       |
   59|  1.39k|	REQUIRE(rdata->type == dns_rdatatype_kx);
  ------------------
  |  |  198|  1.39k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.39k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.39k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   60|  1.39k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.39k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.39k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.39k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   61|  1.39k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.39k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.39k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.39k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   62|       |
   63|  1.39k|	dns_name_init(&name);
   64|  1.39k|	dns_name_init(&prefix);
   65|       |
   66|  1.39k|	dns_rdata_toregion(rdata, &region);
   67|  1.39k|	num = uint16_fromregion(&region);
   68|  1.39k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  1.39k|	do {                              \
  |  |   51|  1.39k|		isc_region_t *_r = (r);   \
  |  |   52|  1.39k|		unsigned int  _l = (l);   \
  |  |   53|  1.39k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.39k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.39k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.39k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.39k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.39k|		_r->base += _l;           \
  |  |   55|  1.39k|		_r->length -= _l;         \
  |  |   56|  1.39k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.39k]
  |  |  ------------------
  ------------------
   69|  1.39k|	snprintf(buf, sizeof(buf), "%u", num);
   70|  1.39k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.39k|	{                                  \
  |  |  277|  1.39k|		isc_result_t _r = (x);     \
  |  |  278|  1.39k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.39k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.39k|	}
  ------------------
   71|       |
   72|  1.39k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.39k|	{                                  \
  |  |  277|  1.39k|		isc_result_t _r = (x);     \
  |  |  278|  1.39k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.39k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.39k|	}
  ------------------
   73|       |
   74|  1.39k|	dns_name_fromregion(&name, &region);
   75|  1.39k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (75:9): [True: 0, False: 1.39k]
  ------------------
   76|  1.39k|							 : 0;
   77|  1.39k|	return dns_name_totext(&prefix, opts, target);
   78|  1.39k|}

rdata.c:fromwire_in_nimloc:
   61|  1.13k|fromwire_in_nimloc(ARGS_FROMWIRE) {
   62|  1.13k|	isc_region_t region;
   63|       |
   64|  1.13k|	REQUIRE(type == dns_rdatatype_nimloc);
  ------------------
  |  |  198|  1.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   65|  1.13k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   66|       |
   67|  1.13k|	UNUSED(type);
  ------------------
  |  |   69|  1.13k|#define UNUSED(x) (void)(x)
  ------------------
   68|  1.13k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.13k|#define UNUSED(x) (void)(x)
  ------------------
   69|  1.13k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.13k|#define UNUSED(x) (void)(x)
  ------------------
   70|       |
   71|  1.13k|	isc_buffer_activeregion(source, &region);
   72|  1.13k|	if (region.length < 1) {
  ------------------
  |  Branch (72:6): [True: 2, False: 1.12k]
  ------------------
   73|      2|		return ISC_R_UNEXPECTEDEND;
   74|      2|	}
   75|       |
   76|  1.12k|	RETERR(mem_tobuffer(target, region.base, region.length));
  ------------------
  |  |  276|  1.12k|	{                                  \
  |  |  277|  1.12k|		isc_result_t _r = (x);     \
  |  |  278|  1.12k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 204, False: 924]
  |  |  ------------------
  |  |  279|    204|			return ((_r));     \
  |  |  280|    204|		}                          \
  |  |  281|  1.12k|	}
  ------------------
   77|    924|	isc_buffer_forward(source, region.length);
   78|    924|	return ISC_R_SUCCESS;
   79|  1.12k|}
rdata.c:towire_in_nimloc:
   82|    364|towire_in_nimloc(ARGS_TOWIRE) {
   83|    364|	REQUIRE(rdata->type == dns_rdatatype_nimloc);
  ------------------
  |  |  198|    364|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    364|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 364, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    364|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   84|    364|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    364|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    364|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 364, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    364|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   85|    364|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    364|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    364|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 364, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    364|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   86|       |
   87|    364|	UNUSED(cctx);
  ------------------
  |  |   69|    364|#define UNUSED(x) (void)(x)
  ------------------
   88|       |
   89|    364|	return mem_tobuffer(target, rdata->data, rdata->length);
   90|    364|}
rdata.c:totext_in_nimloc:
   36|    720|totext_in_nimloc(ARGS_TOTEXT) {
   37|    720|	isc_region_t region;
   38|       |
   39|    720|	REQUIRE(rdata->type == dns_rdatatype_nimloc);
  ------------------
  |  |  198|    720|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    720|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 720, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    720|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   40|    720|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    720|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    720|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 720, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    720|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   41|    720|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    720|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    720|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 720, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    720|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   42|       |
   43|    720|	dns_rdata_toregion(rdata, &region);
   44|       |
   45|    720|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    720|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (45:6): [True: 0, False: 720]
  ------------------
   46|      0|		RETERR(str_totext("( ", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   47|      0|	}
   48|    720|	if (tctx->width == 0) {
  ------------------
  |  Branch (48:6): [True: 0, False: 720]
  ------------------
   49|      0|		RETERR(isc_hex_totext(&region, 60, "", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   50|    720|	} else {
   51|    720|		RETERR(isc_hex_totext(&region, tctx->width - 2, tctx->linebreak,
  ------------------
  |  |  276|    720|	{                                  \
  |  |  277|    720|		isc_result_t _r = (x);     \
  |  |  278|    720|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 720]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    720|	}
  ------------------
   52|    720|				      target));
   53|    720|	}
   54|    720|	if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) {
  ------------------
  |  |  191|    720|#define DNS_STYLEFLAG_MULTILINE 0x00000001ULL
  ------------------
  |  Branch (54:6): [True: 0, False: 720]
  ------------------
   55|      0|		RETERR(str_totext(" )", target));
  ------------------
  |  |  276|      0|	{                                  \
  |  |  277|      0|		isc_result_t _r = (x);     \
  |  |  278|      0|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|      0|	}
  ------------------
   56|      0|	}
   57|    720|	return ISC_R_SUCCESS;
   58|    720|}

rdata.c:fromwire_in_nsap_ptr:
   67|    883|fromwire_in_nsap_ptr(ARGS_FROMWIRE) {
   68|    883|	dns_name_t name;
   69|       |
   70|    883|	REQUIRE(type == dns_rdatatype_nsap_ptr);
  ------------------
  |  |  198|    883|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    883|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 883, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    883|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   71|    883|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    883|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    883|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 883, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    883|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   72|       |
   73|    883|	UNUSED(type);
  ------------------
  |  |   69|    883|#define UNUSED(x) (void)(x)
  ------------------
   74|    883|	UNUSED(rdclass);
  ------------------
  |  |   69|    883|#define UNUSED(x) (void)(x)
  ------------------
   75|       |
   76|    883|	dctx = dns_decompress_setpermitted(dctx, false);
   77|       |
   78|    883|	dns_name_init(&name);
   79|    883|	return dns_name_fromwire(&name, source, dctx, target);
   80|    883|}
rdata.c:towire_in_nsap_ptr:
   83|    440|towire_in_nsap_ptr(ARGS_TOWIRE) {
   84|    440|	dns_name_t name;
   85|    440|	isc_region_t region;
   86|       |
   87|    440|	REQUIRE(rdata->type == dns_rdatatype_nsap_ptr);
  ------------------
  |  |  198|    440|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    440|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 440, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    440|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   88|    440|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    440|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    440|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 440, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    440|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   89|    440|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    440|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    440|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 440, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    440|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   90|       |
   91|    440|	dns_compress_setpermitted(cctx, false);
   92|    440|	dns_name_init(&name);
   93|    440|	dns_rdata_toregion(rdata, &region);
   94|    440|	dns_name_fromregion(&name, &region);
   95|       |
   96|    440|	return dns_name_towire(&name, cctx, target);
   97|    440|}
rdata.c:totext_in_nsap_ptr:
   45|    874|totext_in_nsap_ptr(ARGS_TOTEXT) {
   46|    874|	isc_region_t region;
   47|    874|	dns_name_t name;
   48|    874|	dns_name_t prefix;
   49|    874|	unsigned int opts;
   50|       |
   51|    874|	REQUIRE(rdata->type == dns_rdatatype_nsap_ptr);
  ------------------
  |  |  198|    874|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    874|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 874, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    874|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   52|    874|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    874|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    874|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 874, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    874|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   53|    874|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    874|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    874|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 874, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    874|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   54|       |
   55|    874|	dns_name_init(&name);
   56|    874|	dns_name_init(&prefix);
   57|       |
   58|    874|	dns_rdata_toregion(rdata, &region);
   59|    874|	dns_name_fromregion(&name, &region);
   60|       |
   61|    874|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (61:9): [True: 0, False: 874]
  ------------------
   62|    874|							 : 0;
   63|    874|	return dns_name_totext(&prefix, opts, target);
   64|    874|}

rdata.c:fromwire_in_nsap:
   96|  1.43k|fromwire_in_nsap(ARGS_FROMWIRE) {
   97|  1.43k|	isc_region_t region;
   98|       |
   99|  1.43k|	REQUIRE(type == dns_rdatatype_nsap);
  ------------------
  |  |  198|  1.43k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.43k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.43k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.43k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  100|  1.43k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.43k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.43k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.43k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.43k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  101|       |
  102|  1.43k|	UNUSED(type);
  ------------------
  |  |   69|  1.43k|#define UNUSED(x) (void)(x)
  ------------------
  103|  1.43k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.43k|#define UNUSED(x) (void)(x)
  ------------------
  104|  1.43k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.43k|#define UNUSED(x) (void)(x)
  ------------------
  105|       |
  106|  1.43k|	isc_buffer_activeregion(source, &region);
  107|  1.43k|	if (region.length < 1) {
  ------------------
  |  Branch (107:6): [True: 2, False: 1.43k]
  ------------------
  108|      2|		return ISC_R_UNEXPECTEDEND;
  109|      2|	}
  110|       |
  111|  1.43k|	RETERR(mem_tobuffer(target, region.base, region.length));
  ------------------
  |  |  276|  1.43k|	{                                  \
  |  |  277|  1.43k|		isc_result_t _r = (x);     \
  |  |  278|  1.43k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 92, False: 1.33k]
  |  |  ------------------
  |  |  279|     92|			return ((_r));     \
  |  |  280|     92|		}                          \
  |  |  281|  1.43k|	}
  ------------------
  112|  1.33k|	isc_buffer_forward(source, region.length);
  113|  1.33k|	return ISC_R_SUCCESS;
  114|  1.43k|}
rdata.c:towire_in_nsap:
  117|    682|towire_in_nsap(ARGS_TOWIRE) {
  118|    682|	REQUIRE(rdata->type == dns_rdatatype_nsap);
  ------------------
  |  |  198|    682|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    682|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 682, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    682|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  119|    682|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    682|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    682|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 682, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    682|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  120|    682|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    682|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    682|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 682, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    682|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  121|       |
  122|    682|	UNUSED(cctx);
  ------------------
  |  |   69|    682|#define UNUSED(x) (void)(x)
  ------------------
  123|       |
  124|    682|	return mem_tobuffer(target, rdata->data, rdata->length);
  125|    682|}
rdata.c:totext_in_nsap:
   75|  1.29k|totext_in_nsap(ARGS_TOTEXT) {
   76|  1.29k|	isc_region_t region;
   77|  1.29k|	char buf[sizeof("xx")];
   78|       |
   79|  1.29k|	REQUIRE(rdata->type == dns_rdatatype_nsap);
  ------------------
  |  |  198|  1.29k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.29k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.29k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   80|  1.29k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.29k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.29k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.29k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   81|  1.29k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.29k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.29k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.29k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.29k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   82|       |
   83|  1.29k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.29k|#define UNUSED(x) (void)(x)
  ------------------
   84|       |
   85|  1.29k|	dns_rdata_toregion(rdata, &region);
   86|  1.29k|	RETERR(str_totext("0x", target));
  ------------------
  |  |  276|  1.29k|	{                                  \
  |  |  277|  1.29k|		isc_result_t _r = (x);     \
  |  |  278|  1.29k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.29k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.29k|	}
  ------------------
   87|  22.1k|	while (region.length != 0) {
  ------------------
  |  Branch (87:9): [True: 20.8k, False: 1.29k]
  ------------------
   88|  20.8k|		snprintf(buf, sizeof(buf), "%02x", region.base[0]);
   89|  20.8k|		isc_region_consume(&region, 1);
  ------------------
  |  |   50|  20.8k|	do {                              \
  |  |   51|  20.8k|		isc_region_t *_r = (r);   \
  |  |   52|  20.8k|		unsigned int  _l = (l);   \
  |  |   53|  20.8k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  20.8k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  20.8k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 20.8k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  20.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  20.8k|		_r->base += _l;           \
  |  |   55|  20.8k|		_r->length -= _l;         \
  |  |   56|  20.8k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 20.8k]
  |  |  ------------------
  ------------------
   90|  20.8k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  20.8k|	{                                  \
  |  |  277|  20.8k|		isc_result_t _r = (x);     \
  |  |  278|  20.8k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 20.8k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  20.8k|	}
  ------------------
   91|  20.8k|	}
   92|  1.29k|	return ISC_R_SUCCESS;
   93|  1.29k|}

rdata.c:fromwire_in_px:
  111|  1.64k|fromwire_in_px(ARGS_FROMWIRE) {
  112|  1.64k|	dns_name_t name;
  113|  1.64k|	isc_region_t sregion;
  114|       |
  115|  1.64k|	REQUIRE(type == dns_rdatatype_px);
  ------------------
  |  |  198|  1.64k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.64k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.64k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.64k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  116|  1.64k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.64k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.64k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.64k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.64k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  117|       |
  118|  1.64k|	UNUSED(type);
  ------------------
  |  |   69|  1.64k|#define UNUSED(x) (void)(x)
  ------------------
  119|  1.64k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.64k|#define UNUSED(x) (void)(x)
  ------------------
  120|       |
  121|  1.64k|	dctx = dns_decompress_setpermitted(dctx, false);
  122|       |
  123|  1.64k|	dns_name_init(&name);
  124|       |
  125|       |	/*
  126|       |	 * Preference.
  127|       |	 */
  128|  1.64k|	isc_buffer_activeregion(source, &sregion);
  129|  1.64k|	if (sregion.length < 2) {
  ------------------
  |  Branch (129:6): [True: 3, False: 1.64k]
  ------------------
  130|      3|		return ISC_R_UNEXPECTEDEND;
  131|      3|	}
  132|  1.64k|	RETERR(mem_tobuffer(target, sregion.base, 2));
  ------------------
  |  |  276|  1.64k|	{                                  \
  |  |  277|  1.64k|		isc_result_t _r = (x);     \
  |  |  278|  1.64k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 195, False: 1.44k]
  |  |  ------------------
  |  |  279|    195|			return ((_r));     \
  |  |  280|    195|		}                          \
  |  |  281|  1.64k|	}
  ------------------
  133|  1.44k|	isc_buffer_forward(source, 2);
  134|       |
  135|       |	/*
  136|       |	 * MAP822.
  137|       |	 */
  138|  1.44k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  1.44k|	{                                  \
  |  |  277|  1.44k|		isc_result_t _r = (x);     \
  |  |  278|  1.44k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 284, False: 1.16k]
  |  |  ------------------
  |  |  279|    284|			return ((_r));     \
  |  |  280|    284|		}                          \
  |  |  281|  1.44k|	}
  ------------------
  139|       |
  140|       |	/*
  141|       |	 * MAPX400.
  142|       |	 */
  143|  1.16k|	return dns_name_fromwire(&name, source, dctx, target);
  144|  1.44k|}
rdata.c:towire_in_px:
  147|    358|towire_in_px(ARGS_TOWIRE) {
  148|    358|	dns_name_t name;
  149|    358|	isc_region_t region;
  150|       |
  151|    358|	REQUIRE(rdata->type == dns_rdatatype_px);
  ------------------
  |  |  198|    358|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    358|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 358, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    358|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  152|    358|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    358|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    358|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 358, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    358|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  153|    358|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    358|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    358|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 358, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    358|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  154|       |
  155|    358|	dns_compress_setpermitted(cctx, false);
  156|       |	/*
  157|       |	 * Preference.
  158|       |	 */
  159|    358|	dns_rdata_toregion(rdata, &region);
  160|    358|	RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|    358|	{                                  \
  |  |  277|    358|		isc_result_t _r = (x);     \
  |  |  278|    358|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 357]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    358|	}
  ------------------
  161|    357|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    357|	do {                              \
  |  |   51|    357|		isc_region_t *_r = (r);   \
  |  |   52|    357|		unsigned int  _l = (l);   \
  |  |   53|    357|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    357|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    357|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 357, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    357|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    357|		_r->base += _l;           \
  |  |   55|    357|		_r->length -= _l;         \
  |  |   56|    357|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 357]
  |  |  ------------------
  ------------------
  162|       |
  163|       |	/*
  164|       |	 * MAP822.
  165|       |	 */
  166|    357|	dns_name_init(&name);
  167|    357|	dns_name_fromregion(&name, &region);
  168|    357|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|    357|	{                                  \
  |  |  277|    357|		isc_result_t _r = (x);     \
  |  |  278|    357|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 356]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|    357|	}
  ------------------
  169|    356|	isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|    356|	do {                              \
  |  |   51|    356|		isc_region_t *_r = (r);   \
  |  |   52|    356|		unsigned int  _l = (l);   \
  |  |   53|    356|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    356|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    356|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 356, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    356|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    356|		_r->base += _l;           \
  |  |   55|    356|		_r->length -= _l;         \
  |  |   56|    356|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 356]
  |  |  ------------------
  ------------------
  170|       |
  171|       |	/*
  172|       |	 * MAPX400.
  173|       |	 */
  174|    356|	dns_name_init(&name);
  175|    356|	dns_name_fromregion(&name, &region);
  176|    356|	return dns_name_towire(&name, cctx, target);
  177|    357|}
rdata.c:totext_in_px:
   66|    706|totext_in_px(ARGS_TOTEXT) {
   67|    706|	isc_region_t region;
   68|    706|	dns_name_t name;
   69|    706|	dns_name_t prefix;
   70|    706|	unsigned int opts;
   71|    706|	char buf[sizeof("64000")];
   72|    706|	unsigned short num;
   73|       |
   74|    706|	REQUIRE(rdata->type == dns_rdatatype_px);
  ------------------
  |  |  198|    706|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    706|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 706, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    706|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   75|    706|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    706|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    706|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 706, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    706|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   76|    706|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    706|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    706|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 706, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    706|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   77|       |
   78|    706|	dns_name_init(&name);
   79|    706|	dns_name_init(&prefix);
   80|       |
   81|       |	/*
   82|       |	 * Preference.
   83|       |	 */
   84|    706|	dns_rdata_toregion(rdata, &region);
   85|    706|	num = uint16_fromregion(&region);
   86|    706|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    706|	do {                              \
  |  |   51|    706|		isc_region_t *_r = (r);   \
  |  |   52|    706|		unsigned int  _l = (l);   \
  |  |   53|    706|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    706|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    706|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 706, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    706|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    706|		_r->base += _l;           \
  |  |   55|    706|		_r->length -= _l;         \
  |  |   56|    706|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 706]
  |  |  ------------------
  ------------------
   87|    706|	snprintf(buf, sizeof(buf), "%u", num);
   88|    706|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    706|	{                                  \
  |  |  277|    706|		isc_result_t _r = (x);     \
  |  |  278|    706|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 706]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    706|	}
  ------------------
   89|    706|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    706|	{                                  \
  |  |  277|    706|		isc_result_t _r = (x);     \
  |  |  278|    706|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 706]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    706|	}
  ------------------
   90|       |
   91|       |	/*
   92|       |	 * MAP822.
   93|       |	 */
   94|    706|	dns_name_fromregion(&name, &region);
   95|    706|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (95:9): [True: 0, False: 706]
  ------------------
   96|    706|							 : 0;
   97|    706|	isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|    706|	do {                              \
  |  |   51|    706|		isc_region_t *_r = (r);   \
  |  |   52|    706|		unsigned int  _l = (l);   \
  |  |   53|    706|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    706|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    706|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 706, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    706|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    706|		_r->base += _l;           \
  |  |   55|    706|		_r->length -= _l;         \
  |  |   56|    706|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 706]
  |  |  ------------------
  ------------------
   98|    706|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|    706|	{                                  \
  |  |  277|    706|		isc_result_t _r = (x);     \
  |  |  278|    706|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 706]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    706|	}
  ------------------
   99|    706|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    706|	{                                  \
  |  |  277|    706|		isc_result_t _r = (x);     \
  |  |  278|    706|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 706]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    706|	}
  ------------------
  100|       |
  101|       |	/*
  102|       |	 * MAPX400.
  103|       |	 */
  104|    706|	dns_name_fromregion(&name, &region);
  105|    706|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (105:9): [True: 0, False: 706]
  ------------------
  106|    706|							 : 0;
  107|    706|	return dns_name_totext(&prefix, opts, target);
  108|    706|}

rdata.c:fromwire_in_srv:
  146|    933|fromwire_in_srv(ARGS_FROMWIRE) {
  147|    933|	dns_name_t name;
  148|    933|	isc_region_t sr;
  149|       |
  150|    933|	REQUIRE(type == dns_rdatatype_srv);
  ------------------
  |  |  198|    933|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    933|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 933, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    933|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  151|    933|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    933|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    933|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 933, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    933|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  152|       |
  153|    933|	UNUSED(type);
  ------------------
  |  |   69|    933|#define UNUSED(x) (void)(x)
  ------------------
  154|    933|	UNUSED(rdclass);
  ------------------
  |  |   69|    933|#define UNUSED(x) (void)(x)
  ------------------
  155|       |
  156|    933|	dctx = dns_decompress_setpermitted(dctx, false);
  157|       |
  158|    933|	dns_name_init(&name);
  159|       |
  160|       |	/*
  161|       |	 * Priority, weight, port.
  162|       |	 */
  163|    933|	isc_buffer_activeregion(source, &sr);
  164|    933|	if (sr.length < 6) {
  ------------------
  |  Branch (164:6): [True: 7, False: 926]
  ------------------
  165|      7|		return ISC_R_UNEXPECTEDEND;
  166|      7|	}
  167|    926|	RETERR(mem_tobuffer(target, sr.base, 6));
  ------------------
  |  |  276|    926|	{                                  \
  |  |  277|    926|		isc_result_t _r = (x);     \
  |  |  278|    926|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 72, False: 854]
  |  |  ------------------
  |  |  279|     72|			return ((_r));     \
  |  |  280|     72|		}                          \
  |  |  281|    926|	}
  ------------------
  168|    854|	isc_buffer_forward(source, 6);
  169|       |
  170|       |	/*
  171|       |	 * Target.
  172|       |	 */
  173|    854|	return dns_name_fromwire(&name, source, dctx, target);
  174|    926|}
rdata.c:towire_in_srv:
  177|    389|towire_in_srv(ARGS_TOWIRE) {
  178|    389|	dns_name_t name;
  179|    389|	isc_region_t sr;
  180|       |
  181|    389|	REQUIRE(rdata->type == dns_rdatatype_srv);
  ------------------
  |  |  198|    389|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    389|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 389, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    389|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  182|    389|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    389|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    389|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 389, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    389|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  183|       |
  184|    389|	dns_compress_setpermitted(cctx, false);
  185|       |	/*
  186|       |	 * Priority, weight, port.
  187|       |	 */
  188|    389|	dns_rdata_toregion(rdata, &sr);
  189|    389|	RETERR(mem_tobuffer(target, sr.base, 6));
  ------------------
  |  |  276|    389|	{                                  \
  |  |  277|    389|		isc_result_t _r = (x);     \
  |  |  278|    389|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 2, False: 387]
  |  |  ------------------
  |  |  279|      2|			return ((_r));     \
  |  |  280|      2|		}                          \
  |  |  281|    389|	}
  ------------------
  190|    387|	isc_region_consume(&sr, 6);
  ------------------
  |  |   50|    387|	do {                              \
  |  |   51|    387|		isc_region_t *_r = (r);   \
  |  |   52|    387|		unsigned int  _l = (l);   \
  |  |   53|    387|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    387|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    387|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 387, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    387|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    387|		_r->base += _l;           \
  |  |   55|    387|		_r->length -= _l;         \
  |  |   56|    387|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 387]
  |  |  ------------------
  ------------------
  191|       |
  192|       |	/*
  193|       |	 * Target.
  194|       |	 */
  195|    387|	dns_name_init(&name);
  196|    387|	dns_name_fromregion(&name, &sr);
  197|    387|	return dns_name_towire(&name, cctx, target);
  198|    389|}
rdata.c:totext_in_srv:
   93|    768|totext_in_srv(ARGS_TOTEXT) {
   94|    768|	isc_region_t region;
   95|    768|	dns_name_t name;
   96|    768|	dns_name_t prefix;
   97|    768|	unsigned int opts;
   98|    768|	char buf[sizeof("64000")];
   99|    768|	unsigned short num;
  100|       |
  101|    768|	REQUIRE(rdata->type == dns_rdatatype_srv);
  ------------------
  |  |  198|    768|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    768|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 768, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    768|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  102|    768|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    768|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    768|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 768, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    768|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  103|    768|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    768|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    768|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 768, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    768|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  104|       |
  105|    768|	dns_name_init(&name);
  106|    768|	dns_name_init(&prefix);
  107|       |
  108|       |	/*
  109|       |	 * Priority.
  110|       |	 */
  111|    768|	dns_rdata_toregion(rdata, &region);
  112|    768|	num = uint16_fromregion(&region);
  113|    768|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    768|	do {                              \
  |  |   51|    768|		isc_region_t *_r = (r);   \
  |  |   52|    768|		unsigned int  _l = (l);   \
  |  |   53|    768|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    768|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    768|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 768, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    768|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    768|		_r->base += _l;           \
  |  |   55|    768|		_r->length -= _l;         \
  |  |   56|    768|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 768]
  |  |  ------------------
  ------------------
  114|    768|	snprintf(buf, sizeof(buf), "%u", num);
  115|    768|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    768|	{                                  \
  |  |  277|    768|		isc_result_t _r = (x);     \
  |  |  278|    768|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 768]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    768|	}
  ------------------
  116|    768|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    768|	{                                  \
  |  |  277|    768|		isc_result_t _r = (x);     \
  |  |  278|    768|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 768]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    768|	}
  ------------------
  117|       |
  118|       |	/*
  119|       |	 * Weight.
  120|       |	 */
  121|    768|	num = uint16_fromregion(&region);
  122|    768|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    768|	do {                              \
  |  |   51|    768|		isc_region_t *_r = (r);   \
  |  |   52|    768|		unsigned int  _l = (l);   \
  |  |   53|    768|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    768|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    768|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 768, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    768|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    768|		_r->base += _l;           \
  |  |   55|    768|		_r->length -= _l;         \
  |  |   56|    768|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 768]
  |  |  ------------------
  ------------------
  123|    768|	snprintf(buf, sizeof(buf), "%u", num);
  124|    768|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    768|	{                                  \
  |  |  277|    768|		isc_result_t _r = (x);     \
  |  |  278|    768|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 768]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    768|	}
  ------------------
  125|    768|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    768|	{                                  \
  |  |  277|    768|		isc_result_t _r = (x);     \
  |  |  278|    768|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 768]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    768|	}
  ------------------
  126|       |
  127|       |	/*
  128|       |	 * Port.
  129|       |	 */
  130|    768|	num = uint16_fromregion(&region);
  131|    768|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|    768|	do {                              \
  |  |   51|    768|		isc_region_t *_r = (r);   \
  |  |   52|    768|		unsigned int  _l = (l);   \
  |  |   53|    768|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    768|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    768|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 768, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    768|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    768|		_r->base += _l;           \
  |  |   55|    768|		_r->length -= _l;         \
  |  |   56|    768|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 768]
  |  |  ------------------
  ------------------
  132|    768|	snprintf(buf, sizeof(buf), "%u", num);
  133|    768|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    768|	{                                  \
  |  |  277|    768|		isc_result_t _r = (x);     \
  |  |  278|    768|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 768]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    768|	}
  ------------------
  134|    768|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|    768|	{                                  \
  |  |  277|    768|		isc_result_t _r = (x);     \
  |  |  278|    768|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 768]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    768|	}
  ------------------
  135|       |
  136|       |	/*
  137|       |	 * Target.
  138|       |	 */
  139|    768|	dns_name_fromregion(&name, &region);
  140|    768|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (140:9): [True: 0, False: 768]
  ------------------
  141|    768|							 : 0;
  142|    768|	return dns_name_totext(&prefix, opts, target);
  143|    768|}

rdata.c:fromwire_in_svcb:
  918|  5.43k|fromwire_in_svcb(ARGS_FROMWIRE) {
  919|  5.43k|	REQUIRE(type == dns_rdatatype_svcb);
  ------------------
  |  |  198|  5.43k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.43k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.43k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.43k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  920|  5.43k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  5.43k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.43k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.43k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.43k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  921|       |
  922|  5.43k|	return generic_fromwire_in_svcb(CALL_FROMWIRE);
  ------------------
  |  |   91|  5.43k|#define CALL_FROMWIRE rdclass, type, source, dctx, target
  ------------------
  923|  5.43k|}
rdata.c:generic_fromwire_in_svcb:
  781|  8.42k|generic_fromwire_in_svcb(ARGS_FROMWIRE) {
  782|  8.42k|	dns_name_t name;
  783|  8.42k|	isc_region_t region, man = { .base = NULL, .length = 0 };
  784|  8.42k|	bool first = true, have_alpn = false;
  785|  8.42k|	uint16_t lastkey = 0, mankey = 0;
  786|       |
  787|  8.42k|	UNUSED(type);
  ------------------
  |  |   69|  8.42k|#define UNUSED(x) (void)(x)
  ------------------
  788|  8.42k|	UNUSED(rdclass);
  ------------------
  |  |   69|  8.42k|#define UNUSED(x) (void)(x)
  ------------------
  789|       |
  790|  8.42k|	dctx = dns_decompress_setpermitted(dctx, false);
  791|       |
  792|  8.42k|	dns_name_init(&name);
  793|       |
  794|       |	/*
  795|       |	 * SvcPriority.
  796|       |	 */
  797|  8.42k|	isc_buffer_activeregion(source, &region);
  798|  8.42k|	if (region.length < 2) {
  ------------------
  |  Branch (798:6): [True: 6, False: 8.41k]
  ------------------
  799|      6|		return ISC_R_UNEXPECTEDEND;
  800|      6|	}
  801|  8.41k|	RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|  8.41k|	{                                  \
  |  |  277|  8.41k|		isc_result_t _r = (x);     \
  |  |  278|  8.41k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 266, False: 8.14k]
  |  |  ------------------
  |  |  279|    266|			return ((_r));     \
  |  |  280|    266|		}                          \
  |  |  281|  8.41k|	}
  ------------------
  802|  8.14k|	isc_buffer_forward(source, 2);
  803|       |
  804|       |	/*
  805|       |	 * TargetName.
  806|       |	 */
  807|  8.14k|	RETERR(dns_name_fromwire(&name, source, dctx, target));
  ------------------
  |  |  276|  8.14k|	{                                  \
  |  |  277|  8.14k|		isc_result_t _r = (x);     \
  |  |  278|  8.14k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 201, False: 7.94k]
  |  |  ------------------
  |  |  279|    201|			return ((_r));     \
  |  |  280|    201|		}                          \
  |  |  281|  8.14k|	}
  ------------------
  808|       |
  809|       |	/*
  810|       |	 * SvcParams.
  811|       |	 */
  812|  7.94k|	isc_buffer_activeregion(source, &region);
  813|  16.0k|	while (region.length > 0U) {
  ------------------
  |  Branch (813:9): [True: 9.03k, False: 6.99k]
  ------------------
  814|  9.03k|		isc_region_t keyregion;
  815|  9.03k|		uint16_t key, len;
  816|       |
  817|       |		/*
  818|       |		 * SvcParamKey
  819|       |		 */
  820|  9.03k|		if (region.length < 2U) {
  ------------------
  |  Branch (820:7): [True: 2, False: 9.03k]
  ------------------
  821|      2|			return ISC_R_UNEXPECTEDEND;
  822|      2|		}
  823|  9.03k|		RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|  9.03k|	{                                  \
  |  |  277|  9.03k|		isc_result_t _r = (x);     \
  |  |  278|  9.03k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 201, False: 8.83k]
  |  |  ------------------
  |  |  279|    201|			return ((_r));     \
  |  |  280|    201|		}                          \
  |  |  281|  9.03k|	}
  ------------------
  824|  8.83k|		key = uint16_fromregion(&region);
  825|  8.83k|		isc_region_consume(&region, 2);
  ------------------
  |  |   50|  8.83k|	do {                              \
  |  |   51|  8.83k|		isc_region_t *_r = (r);   \
  |  |   52|  8.83k|		unsigned int  _l = (l);   \
  |  |   53|  8.83k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  8.83k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  8.83k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 8.83k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  8.83k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  8.83k|		_r->base += _l;           \
  |  |   55|  8.83k|		_r->length -= _l;         \
  |  |   56|  8.83k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 8.83k]
  |  |  ------------------
  ------------------
  826|       |
  827|       |		/*
  828|       |		 * Keys must be unique and in order.
  829|       |		 */
  830|  8.83k|		if (!first && key <= lastkey) {
  ------------------
  |  Branch (830:7): [True: 2.45k, False: 6.37k]
  |  Branch (830:17): [True: 10, False: 2.44k]
  ------------------
  831|     10|			return DNS_R_FORMERR;
  832|     10|		}
  833|       |
  834|       |		/*
  835|       |		 * Check mandatory keys.
  836|       |		 */
  837|  8.82k|		if (mankey != 0) {
  ------------------
  |  Branch (837:7): [True: 1.30k, False: 7.52k]
  ------------------
  838|       |			/* Missing mandatory key? */
  839|  1.30k|			if (key > mankey) {
  ------------------
  |  Branch (839:8): [True: 17, False: 1.28k]
  ------------------
  840|     17|				return DNS_R_FORMERR;
  841|     17|			}
  842|  1.28k|			if (key == mankey) {
  ------------------
  |  Branch (842:8): [True: 1.26k, False: 25]
  ------------------
  843|       |				/* Get next mandatory key. */
  844|  1.26k|				if (man.length >= 2) {
  ------------------
  |  Branch (844:9): [True: 507, False: 755]
  ------------------
  845|    507|					mankey = uint16_fromregion(&man);
  846|    507|					isc_region_consume(&man, 2);
  ------------------
  |  |   50|    507|	do {                              \
  |  |   51|    507|		isc_region_t *_r = (r);   \
  |  |   52|    507|		unsigned int  _l = (l);   \
  |  |   53|    507|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    507|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    507|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 507, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    507|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    507|		_r->base += _l;           \
  |  |   55|    507|		_r->length -= _l;         \
  |  |   56|    507|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 507]
  |  |  ------------------
  ------------------
  847|    755|				} else {
  848|    755|					mankey = 0;
  849|    755|				}
  850|  1.26k|			}
  851|  1.28k|		}
  852|       |
  853|       |		/*
  854|       |		 * Check alpn present when no-default-alpn is set.
  855|       |		 */
  856|  8.80k|		if (key == SVCB_ALPN_KEY) {
  ------------------
  |  |   22|  8.80k|#define SVCB_ALPN_KEY		 1
  ------------------
  |  Branch (856:7): [True: 2.07k, False: 6.73k]
  ------------------
  857|  2.07k|			have_alpn = true;
  858|  6.73k|		} else if (key == SVCB_NO_DEFAULT_ALPN_KEY && !have_alpn) {
  ------------------
  |  |   23|  13.4k|#define SVCB_NO_DEFAULT_ALPN_KEY 2
  ------------------
  |  Branch (858:14): [True: 397, False: 6.34k]
  |  Branch (858:49): [True: 2, False: 395]
  ------------------
  859|      2|			return DNS_R_FORMERR;
  860|      2|		}
  861|       |
  862|  8.80k|		first = false;
  863|  8.80k|		lastkey = key;
  864|       |
  865|       |		/*
  866|       |		 * SvcParamValue length.
  867|       |		 */
  868|  8.80k|		if (region.length < 2U) {
  ------------------
  |  Branch (868:7): [True: 28, False: 8.77k]
  ------------------
  869|     28|			return ISC_R_UNEXPECTEDEND;
  870|     28|		}
  871|  8.77k|		RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|  8.77k|	{                                  \
  |  |  277|  8.77k|		isc_result_t _r = (x);     \
  |  |  278|  8.77k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 332, False: 8.44k]
  |  |  ------------------
  |  |  279|    332|			return ((_r));     \
  |  |  280|    332|		}                          \
  |  |  281|  8.77k|	}
  ------------------
  872|  8.44k|		len = uint16_fromregion(&region);
  873|  8.44k|		isc_region_consume(&region, 2);
  ------------------
  |  |   50|  8.44k|	do {                              \
  |  |   51|  8.44k|		isc_region_t *_r = (r);   \
  |  |   52|  8.44k|		unsigned int  _l = (l);   \
  |  |   53|  8.44k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  8.44k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  8.44k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 8.44k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  8.44k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  8.44k|		_r->base += _l;           \
  |  |   55|  8.44k|		_r->length -= _l;         \
  |  |   56|  8.44k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 8.44k]
  |  |  ------------------
  ------------------
  874|       |
  875|       |		/*
  876|       |		 * SvcParamValue.
  877|       |		 */
  878|  8.44k|		if (region.length < len) {
  ------------------
  |  Branch (878:7): [True: 14, False: 8.43k]
  ------------------
  879|     14|			return ISC_R_UNEXPECTEDEND;
  880|     14|		}
  881|       |
  882|       |		/*
  883|       |		 * Remember manatory key.
  884|       |		 */
  885|  8.43k|		if (key == SVCB_MAN_KEY) {
  ------------------
  |  |   21|  8.43k|#define SVCB_MAN_KEY		 0
  ------------------
  |  Branch (885:7): [True: 835, False: 7.59k]
  ------------------
  886|    835|			man = region;
  887|    835|			man.length = len;
  888|       |			/* Get first mandatory key */
  889|    835|			if (man.length >= 2) {
  ------------------
  |  Branch (889:8): [True: 830, False: 5]
  ------------------
  890|    830|				mankey = uint16_fromregion(&man);
  891|    830|				isc_region_consume(&man, 2);
  ------------------
  |  |   50|    830|	do {                              \
  |  |   51|    830|		isc_region_t *_r = (r);   \
  |  |   52|    830|		unsigned int  _l = (l);   \
  |  |   53|    830|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    830|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    830|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 830, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    830|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    830|		_r->base += _l;           \
  |  |   55|    830|		_r->length -= _l;         \
  |  |   56|    830|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 830]
  |  |  ------------------
  ------------------
  892|    830|				if (mankey == SVCB_MAN_KEY) {
  ------------------
  |  |   21|    830|#define SVCB_MAN_KEY		 0
  ------------------
  |  Branch (892:9): [True: 1, False: 829]
  ------------------
  893|      1|					return DNS_R_FORMERR;
  894|      1|				}
  895|    830|			} else {
  896|      5|				return DNS_R_FORMERR;
  897|      5|			}
  898|    835|		}
  899|  8.42k|		keyregion = region;
  900|  8.42k|		keyregion.length = len;
  901|  8.42k|		RETERR(svcb_validate(key, &keyregion));
  ------------------
  |  |  276|  8.42k|	{                                  \
  |  |  277|  8.42k|		isc_result_t _r = (x);     \
  |  |  278|  8.42k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 180, False: 8.24k]
  |  |  ------------------
  |  |  279|    180|			return ((_r));     \
  |  |  280|    180|		}                          \
  |  |  281|  8.42k|	}
  ------------------
  902|  8.24k|		RETERR(mem_tobuffer(target, region.base, len));
  ------------------
  |  |  276|  8.24k|	{                                  \
  |  |  277|  8.24k|		isc_result_t _r = (x);     \
  |  |  278|  8.24k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 165, False: 8.08k]
  |  |  ------------------
  |  |  279|    165|			return ((_r));     \
  |  |  280|    165|		}                          \
  |  |  281|  8.24k|	}
  ------------------
  903|  8.08k|		isc_region_consume(&region, len);
  ------------------
  |  |   50|  8.08k|	do {                              \
  |  |   51|  8.08k|		isc_region_t *_r = (r);   \
  |  |   52|  8.08k|		unsigned int  _l = (l);   \
  |  |   53|  8.08k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  8.08k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  8.08k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 8.08k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  8.08k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  8.08k|		_r->base += _l;           \
  |  |   55|  8.08k|		_r->length -= _l;         \
  |  |   56|  8.08k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 8.08k]
  |  |  ------------------
  ------------------
  904|  8.08k|		isc_buffer_forward(source, len + 4);
  905|  8.08k|	}
  906|       |
  907|       |	/*
  908|       |	 * Do we have an outstanding mandatory key?
  909|       |	 */
  910|  6.99k|	if (mankey != 0) {
  ------------------
  |  Branch (910:6): [True: 26, False: 6.96k]
  ------------------
  911|     26|		return DNS_R_FORMERR;
  912|     26|	}
  913|       |
  914|  6.96k|	return ISC_R_SUCCESS;
  915|  6.99k|}
rdata.c:svcb_validate:
   96|  8.42k|svcb_validate(uint16_t key, isc_region_t *region) {
   97|  8.42k|	size_t i;
   98|       |
   99|  75.3k|	for (i = 0; i < ARRAY_SIZE(sbpr); i++) {
  ------------------
  |  |   98|  75.3k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (99:14): [True: 67.1k, False: 8.24k]
  ------------------
  100|  67.1k|		if (sbpr[i].value == key) {
  ------------------
  |  Branch (100:7): [True: 6.11k, False: 60.9k]
  ------------------
  101|  6.11k|			switch (sbpr[i].encoding) {
  ------------------
  |  Branch (101:12): [True: 6.11k, False: 0]
  ------------------
  102|    310|			case sbpr_port:
  ------------------
  |  Branch (102:4): [True: 310, False: 5.80k]
  ------------------
  103|    310|				if (region->length != 2) {
  ------------------
  |  Branch (103:9): [True: 1, False: 309]
  ------------------
  104|      1|					return DNS_R_FORMERR;
  105|      1|				}
  106|    309|				break;
  107|    341|			case sbpr_ipv4s:
  ------------------
  |  Branch (107:4): [True: 341, False: 5.77k]
  ------------------
  108|    341|				if ((region->length % 4) != 0 ||
  ------------------
  |  Branch (108:9): [True: 1, False: 340]
  ------------------
  109|    340|				    region->length == 0)
  ------------------
  |  Branch (109:9): [True: 1, False: 339]
  ------------------
  110|      2|				{
  111|      2|					return DNS_R_FORMERR;
  112|      2|				}
  113|    339|				break;
  114|    391|			case sbpr_ipv6s:
  ------------------
  |  Branch (114:4): [True: 391, False: 5.72k]
  ------------------
  115|    391|				if ((region->length % 16) != 0 ||
  ------------------
  |  Branch (115:9): [True: 2, False: 389]
  ------------------
  116|    389|				    region->length == 0)
  ------------------
  |  Branch (116:9): [True: 1, False: 388]
  ------------------
  117|      3|				{
  118|      3|					return DNS_R_FORMERR;
  119|      3|				}
  120|    388|				break;
  121|  1.75k|			case sbpr_alpn: {
  ------------------
  |  Branch (121:4): [True: 1.75k, False: 4.36k]
  ------------------
  122|  1.75k|				if (region->length == 0) {
  ------------------
  |  Branch (122:9): [True: 2, False: 1.75k]
  ------------------
  123|      2|					return DNS_R_FORMERR;
  124|      2|				}
  125|  3.97k|				while (region->length != 0) {
  ------------------
  |  Branch (125:12): [True: 2.24k, False: 1.73k]
  ------------------
  126|  2.24k|					size_t l = *region->base + 1;
  127|  2.24k|					if (l == 1U || l > region->length) {
  ------------------
  |  Branch (127:10): [True: 16, False: 2.22k]
  |  Branch (127:21): [True: 6, False: 2.22k]
  ------------------
  128|     22|						return DNS_R_FORMERR;
  129|     22|					}
  130|  2.22k|					isc_region_consume(region, l);
  ------------------
  |  |   50|  2.22k|	do {                              \
  |  |   51|  2.22k|		isc_region_t *_r = (r);   \
  |  |   52|  2.22k|		unsigned int  _l = (l);   \
  |  |   53|  2.22k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.22k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.22k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.22k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.22k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.22k|		_r->base += _l;           \
  |  |   55|  2.22k|		_r->length -= _l;         \
  |  |   56|  2.22k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.22k]
  |  |  ------------------
  ------------------
  131|  2.22k|				}
  132|  1.73k|				break;
  133|  1.75k|			}
  134|  1.73k|			case sbpr_keylist: {
  ------------------
  |  Branch (134:4): [True: 829, False: 5.28k]
  ------------------
  135|    829|				if ((region->length % 2) != 0 ||
  ------------------
  |  Branch (135:9): [True: 5, False: 824]
  ------------------
  136|    824|				    region->length == 0)
  ------------------
  |  Branch (136:9): [True: 0, False: 824]
  ------------------
  137|      5|				{
  138|      5|					return DNS_R_FORMERR;
  139|      5|				}
  140|       |				/* In order? */
  141|  1.39k|				while (region->length >= 4) {
  ------------------
  |  Branch (141:12): [True: 579, False: 812]
  ------------------
  142|    579|					if (region->base[0] > region->base[2] ||
  ------------------
  |  Branch (142:10): [True: 2, False: 577]
  ------------------
  143|    577|					    (region->base[0] ==
  ------------------
  |  Branch (143:11): [True: 29, False: 548]
  ------------------
  144|    577|						     region->base[2] &&
  145|     29|					     region->base[1] >=
  ------------------
  |  Branch (145:11): [True: 10, False: 19]
  ------------------
  146|     29|						     region->base[3]))
  147|     12|					{
  148|     12|						return DNS_R_FORMERR;
  149|     12|					}
  150|    567|					isc_region_consume(region, 2);
  ------------------
  |  |   50|    567|	do {                              \
  |  |   51|    567|		isc_region_t *_r = (r);   \
  |  |   52|    567|		unsigned int  _l = (l);   \
  |  |   53|    567|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    567|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    567|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 567, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    567|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    567|		_r->base += _l;           \
  |  |   55|    567|		_r->length -= _l;         \
  |  |   56|    567|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 567]
  |  |  ------------------
  ------------------
  151|    567|				}
  152|    812|				break;
  153|    824|			}
  154|    812|			case sbpr_text:
  ------------------
  |  Branch (154:4): [True: 0, False: 6.11k]
  ------------------
  155|    146|			case sbpr_base64:
  ------------------
  |  Branch (155:4): [True: 146, False: 5.96k]
  ------------------
  156|    146|				break;
  157|  1.94k|			case sbpr_dohpath:
  ------------------
  |  Branch (157:4): [True: 1.94k, False: 4.16k]
  ------------------
  158|  1.94k|				if (!validate_dohpath(region)) {
  ------------------
  |  Branch (158:9): [True: 130, False: 1.81k]
  ------------------
  159|    130|					return DNS_R_FORMERR;
  160|    130|				}
  161|  1.81k|				break;
  162|  1.81k|			case sbpr_empty:
  ------------------
  |  Branch (162:4): [True: 394, False: 5.72k]
  ------------------
  163|    394|				if (region->length != 0) {
  ------------------
  |  Branch (163:9): [True: 3, False: 391]
  ------------------
  164|      3|					return DNS_R_FORMERR;
  165|      3|				}
  166|    391|				break;
  167|  6.11k|			}
  168|  6.11k|		}
  169|  67.1k|	}
  170|  8.24k|	return ISC_R_SUCCESS;
  171|  8.42k|}
rdata.c:towire_in_svcb:
  956|  1.57k|towire_in_svcb(ARGS_TOWIRE) {
  957|  1.57k|	REQUIRE(rdata->type == dns_rdatatype_svcb);
  ------------------
  |  |  198|  1.57k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.57k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.57k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  958|  1.57k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  1.57k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.57k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.57k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.57k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  959|       |
  960|  1.57k|	return generic_towire_in_svcb(CALL_TOWIRE);
  ------------------
  |  |   96|  1.57k|#define CALL_TOWIRE rdata, cctx, target
  ------------------
  961|  1.57k|}
rdata.c:generic_towire_in_svcb:
  926|  2.94k|generic_towire_in_svcb(ARGS_TOWIRE) {
  927|  2.94k|	dns_name_t name;
  928|  2.94k|	isc_region_t region;
  929|       |
  930|  2.94k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  2.94k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.94k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.94k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.94k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  931|       |
  932|  2.94k|	dns_compress_setpermitted(cctx, false);
  933|       |
  934|       |	/*
  935|       |	 * SvcPriority.
  936|       |	 */
  937|  2.94k|	dns_rdata_toregion(rdata, &region);
  938|  2.94k|	RETERR(mem_tobuffer(target, region.base, 2));
  ------------------
  |  |  276|  2.94k|	{                                  \
  |  |  277|  2.94k|		isc_result_t _r = (x);     \
  |  |  278|  2.94k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.94k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.94k|	}
  ------------------
  939|  2.94k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  2.94k|	do {                              \
  |  |   51|  2.94k|		isc_region_t *_r = (r);   \
  |  |   52|  2.94k|		unsigned int  _l = (l);   \
  |  |   53|  2.94k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.94k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.94k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.94k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.94k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.94k|		_r->base += _l;           \
  |  |   55|  2.94k|		_r->length -= _l;         \
  |  |   56|  2.94k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.94k]
  |  |  ------------------
  ------------------
  940|       |
  941|       |	/*
  942|       |	 * TargetName.
  943|       |	 */
  944|  2.94k|	dns_name_init(&name);
  945|  2.94k|	dns_name_fromregion(&name, &region);
  946|  2.94k|	RETERR(dns_name_towire(&name, cctx, target));
  ------------------
  |  |  276|  2.94k|	{                                  \
  |  |  277|  2.94k|		isc_result_t _r = (x);     \
  |  |  278|  2.94k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 1, False: 2.94k]
  |  |  ------------------
  |  |  279|      1|			return ((_r));     \
  |  |  280|      1|		}                          \
  |  |  281|  2.94k|	}
  ------------------
  947|  2.94k|	isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|  2.94k|	do {                              \
  |  |   51|  2.94k|		isc_region_t *_r = (r);   \
  |  |   52|  2.94k|		unsigned int  _l = (l);   \
  |  |   53|  2.94k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.94k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.94k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.94k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.94k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.94k|		_r->base += _l;           \
  |  |   55|  2.94k|		_r->length -= _l;         \
  |  |   56|  2.94k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.94k]
  |  |  ------------------
  ------------------
  948|       |
  949|       |	/*
  950|       |	 * SvcParams.
  951|       |	 */
  952|  2.94k|	return mem_tobuffer(target, region.base, region.length);
  953|  2.94k|}
rdata.c:totext_in_svcb:
  772|  3.04k|totext_in_svcb(ARGS_TOTEXT) {
  773|  3.04k|	REQUIRE(rdata->type == dns_rdatatype_svcb);
  ------------------
  |  |  198|  3.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  774|  3.04k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  3.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  775|  3.04k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  3.04k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.04k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 3.04k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  3.04k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  776|       |
  777|  3.04k|	return generic_totext_in_svcb(CALL_TOTEXT);
  ------------------
  |  |   85|  3.04k|#define CALL_TOTEXT rdata, tctx, target
  ------------------
  778|  3.04k|}
rdata.c:generic_totext_in_svcb:
  637|  5.75k|generic_totext_in_svcb(ARGS_TOTEXT) {
  638|  5.75k|	isc_region_t region;
  639|  5.75k|	dns_name_t name;
  640|  5.75k|	dns_name_t prefix;
  641|  5.75k|	unsigned int opts;
  642|  5.75k|	char buf[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
  643|  5.75k|	unsigned short num;
  644|  5.75k|	int n;
  645|  5.75k|	bool compat = (tctx->flags & DNS_STYLEFLAG_SVCPARAMKEYCOMPAT) != 0;
  ------------------
  |  |  207|  5.75k|#define DNS_STYLEFLAG_SVCPARAMKEYCOMPAT 0x00000040ULL
  ------------------
  646|       |
  647|  5.75k|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|  5.75k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.75k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.75k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.75k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  648|       |
  649|  5.75k|	dns_name_init(&name);
  650|  5.75k|	dns_name_init(&prefix);
  651|       |
  652|  5.75k|	dns_rdata_toregion(rdata, &region);
  653|       |
  654|       |	/*
  655|       |	 * SvcPriority.
  656|       |	 */
  657|  5.75k|	num = uint16_fromregion(&region);
  658|  5.75k|	isc_region_consume(&region, 2);
  ------------------
  |  |   50|  5.75k|	do {                              \
  |  |   51|  5.75k|		isc_region_t *_r = (r);   \
  |  |   52|  5.75k|		unsigned int  _l = (l);   \
  |  |   53|  5.75k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  5.75k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  5.75k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 5.75k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  5.75k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  5.75k|		_r->base += _l;           \
  |  |   55|  5.75k|		_r->length -= _l;         \
  |  |   56|  5.75k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 5.75k]
  |  |  ------------------
  ------------------
  659|  5.75k|	n = snprintf(buf, sizeof(buf), "%u ", num);
  660|  5.75k|	INSIST(n > 0 && (unsigned int)n < sizeof(buf));
  ------------------
  |  |  202|  5.75k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  11.5k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 5.75k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 5.75k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  5.75k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  661|  5.75k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  5.75k|	{                                  \
  |  |  277|  5.75k|		isc_result_t _r = (x);     \
  |  |  278|  5.75k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.75k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.75k|	}
  ------------------
  662|       |
  663|       |	/*
  664|       |	 * TargetName.
  665|       |	 */
  666|  5.75k|	dns_name_fromregion(&name, &region);
  667|  5.75k|	isc_region_consume(&region, name_length(&name));
  ------------------
  |  |   50|  5.75k|	do {                              \
  |  |   51|  5.75k|		isc_region_t *_r = (r);   \
  |  |   52|  5.75k|		unsigned int  _l = (l);   \
  |  |   53|  5.75k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  5.75k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  5.75k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 5.75k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  5.75k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  5.75k|		_r->base += _l;           \
  |  |   55|  5.75k|		_r->length -= _l;         \
  |  |   56|  5.75k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 5.75k]
  |  |  ------------------
  ------------------
  668|  5.75k|	opts = name_prefix(&name, tctx->origin, &prefix) ? DNS_NAME_OMITFINALDOT
  ------------------
  |  |  883|      0|#define DNS_NAME_OMITFINALDOT 0x01U
  ------------------
  |  Branch (668:9): [True: 0, False: 5.75k]
  ------------------
  669|  5.75k|							 : 0;
  670|  5.75k|	RETERR(dns_name_totext(&prefix, opts, target));
  ------------------
  |  |  276|  5.75k|	{                                  \
  |  |  277|  5.75k|		isc_result_t _r = (x);     \
  |  |  278|  5.75k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.75k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.75k|	}
  ------------------
  671|       |
  672|  12.4k|	while (region.length > 0) {
  ------------------
  |  Branch (672:9): [True: 6.72k, False: 5.75k]
  ------------------
  673|  6.72k|		isc_region_t r;
  674|  6.72k|		enum encoding encoding;
  675|       |
  676|  6.72k|		RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  6.72k|	{                                  \
  |  |  277|  6.72k|		isc_result_t _r = (x);     \
  |  |  278|  6.72k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.72k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.72k|	}
  ------------------
  677|       |
  678|  6.72k|		INSIST(region.length >= 2);
  ------------------
  |  |  202|  6.72k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  6.72k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 6.72k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  6.72k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  679|  6.72k|		num = uint16_fromregion(&region);
  680|  6.72k|		isc_region_consume(&region, 2);
  ------------------
  |  |   50|  6.72k|	do {                              \
  |  |   51|  6.72k|		isc_region_t *_r = (r);   \
  |  |   52|  6.72k|		unsigned int  _l = (l);   \
  |  |   53|  6.72k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.72k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.72k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.72k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.72k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.72k|		_r->base += _l;           \
  |  |   55|  6.72k|		_r->length -= _l;         \
  |  |   56|  6.72k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.72k]
  |  |  ------------------
  ------------------
  681|  6.72k|		RETERR(str_totext(
  ------------------
  |  |  276|  6.72k|	{                                  \
  |  |  277|  6.72k|		isc_result_t _r = (x);     \
  |  |  278|  6.72k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 6.72k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  6.72k|	}
  ------------------
  682|  6.72k|			svcparamkey(num, &encoding, buf, sizeof(buf), compat),
  683|  6.72k|			target));
  684|       |
  685|  6.72k|		INSIST(region.length >= 2);
  ------------------
  |  |  202|  6.72k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  6.72k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 6.72k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  6.72k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  686|  6.72k|		num = uint16_fromregion(&region);
  687|  6.72k|		isc_region_consume(&region, 2);
  ------------------
  |  |   50|  6.72k|	do {                              \
  |  |   51|  6.72k|		isc_region_t *_r = (r);   \
  |  |   52|  6.72k|		unsigned int  _l = (l);   \
  |  |   53|  6.72k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.72k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.72k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.72k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.72k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.72k|		_r->base += _l;           \
  |  |   55|  6.72k|		_r->length -= _l;         \
  |  |   56|  6.72k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.72k]
  |  |  ------------------
  ------------------
  688|       |
  689|  6.72k|		INSIST(region.length >= num);
  ------------------
  |  |  202|  6.72k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  6.72k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 6.72k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  6.72k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  690|  6.72k|		r = region;
  691|  6.72k|		r.length = num;
  692|  6.72k|		isc_region_consume(&region, num);
  ------------------
  |  |   50|  6.72k|	do {                              \
  |  |   51|  6.72k|		isc_region_t *_r = (r);   \
  |  |   52|  6.72k|		unsigned int  _l = (l);   \
  |  |   53|  6.72k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  6.72k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  6.72k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 6.72k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  6.72k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  6.72k|		_r->base += _l;           \
  |  |   55|  6.72k|		_r->length -= _l;         \
  |  |   56|  6.72k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 6.72k]
  |  |  ------------------
  ------------------
  693|  6.72k|		if (num == 0) {
  ------------------
  |  Branch (693:7): [True: 1.38k, False: 5.34k]
  ------------------
  694|  1.38k|			continue;
  695|  1.38k|		}
  696|  5.34k|		if (encoding != sbpr_empty) {
  ------------------
  |  Branch (696:7): [True: 5.34k, False: 0]
  ------------------
  697|  5.34k|			RETERR(str_totext("=", target));
  ------------------
  |  |  276|  5.34k|	{                                  \
  |  |  277|  5.34k|		isc_result_t _r = (x);     \
  |  |  278|  5.34k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.34k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.34k|	}
  ------------------
  698|  5.34k|		}
  699|  5.34k|		switch (encoding) {
  700|  1.15k|		case sbpr_text:
  ------------------
  |  Branch (700:3): [True: 1.15k, False: 4.18k]
  ------------------
  701|  2.78k|		case sbpr_dohpath:
  ------------------
  |  Branch (701:3): [True: 1.62k, False: 3.71k]
  ------------------
  702|  2.78k|			RETERR(multitxt_totext(&r, target));
  ------------------
  |  |  276|  2.78k|	{                                  \
  |  |  277|  2.78k|		isc_result_t _r = (x);     \
  |  |  278|  2.78k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 2.78k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  2.78k|	}
  ------------------
  703|  2.78k|			break;
  704|    289|		case sbpr_port:
  ------------------
  |  Branch (704:3): [True: 289, False: 5.05k]
  ------------------
  705|    289|			num = uint16_fromregion(&r);
  706|    289|			isc_region_consume(&r, 2);
  ------------------
  |  |   50|    289|	do {                              \
  |  |   51|    289|		isc_region_t *_r = (r);   \
  |  |   52|    289|		unsigned int  _l = (l);   \
  |  |   53|    289|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    289|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    289|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 289, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    289|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    289|		_r->base += _l;           \
  |  |   55|    289|		_r->length -= _l;         \
  |  |   56|    289|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 289]
  |  |  ------------------
  ------------------
  707|    289|			n = snprintf(buf, sizeof(buf), "%u", num);
  708|    289|			INSIST(n > 0 && (unsigned int)n < sizeof(buf));
  ------------------
  |  |  202|    289|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    578|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 289, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 289, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    289|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  709|    289|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    289|	{                                  \
  |  |  277|    289|		isc_result_t _r = (x);     \
  |  |  278|    289|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 289]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    289|	}
  ------------------
  710|    289|			INSIST(r.length == 0U);
  ------------------
  |  |  202|    289|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    289|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 289, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    289|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  711|    289|			break;
  712|    319|		case sbpr_ipv4s:
  ------------------
  |  Branch (712:3): [True: 319, False: 5.02k]
  ------------------
  713|  1.07k|			while (r.length > 0U) {
  ------------------
  |  Branch (713:11): [True: 760, False: 319]
  ------------------
  714|    760|				INSIST(r.length >= 4U);
  ------------------
  |  |  202|    760|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    760|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 760, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    760|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  715|    760|				inet_ntop(AF_INET, r.base, buf, sizeof(buf));
  716|    760|				RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    760|	{                                  \
  |  |  277|    760|		isc_result_t _r = (x);     \
  |  |  278|    760|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 760]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    760|	}
  ------------------
  717|    760|				isc_region_consume(&r, 4);
  ------------------
  |  |   50|    760|	do {                              \
  |  |   51|    760|		isc_region_t *_r = (r);   \
  |  |   52|    760|		unsigned int  _l = (l);   \
  |  |   53|    760|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    760|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    760|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 760, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    760|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    760|		_r->base += _l;           \
  |  |   55|    760|		_r->length -= _l;         \
  |  |   56|    760|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 760]
  |  |  ------------------
  ------------------
  718|    760|				if (r.length != 0U) {
  ------------------
  |  Branch (718:9): [True: 441, False: 319]
  ------------------
  719|    441|					RETERR(str_totext(",", target));
  ------------------
  |  |  276|    441|	{                                  \
  |  |  277|    441|		isc_result_t _r = (x);     \
  |  |  278|    441|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 441]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    441|	}
  ------------------
  720|    441|				}
  721|    760|			}
  722|    319|			break;
  723|    376|		case sbpr_ipv6s:
  ------------------
  |  Branch (723:3): [True: 376, False: 4.96k]
  ------------------
  724|  1.14k|			while (r.length > 0U) {
  ------------------
  |  Branch (724:11): [True: 771, False: 376]
  ------------------
  725|    771|				INSIST(r.length >= 16U);
  ------------------
  |  |  202|    771|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    771|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 771, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    771|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  726|    771|				inet_ntop(AF_INET6, r.base, buf, sizeof(buf));
  727|    771|				RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    771|	{                                  \
  |  |  277|    771|		isc_result_t _r = (x);     \
  |  |  278|    771|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 771]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    771|	}
  ------------------
  728|    771|				isc_region_consume(&r, 16);
  ------------------
  |  |   50|    771|	do {                              \
  |  |   51|    771|		isc_region_t *_r = (r);   \
  |  |   52|    771|		unsigned int  _l = (l);   \
  |  |   53|    771|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|    771|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|    771|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 771, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|    771|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|    771|		_r->base += _l;           \
  |  |   55|    771|		_r->length -= _l;         \
  |  |   56|    771|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 771]
  |  |  ------------------
  ------------------
  729|    771|				if (r.length != 0U) {
  ------------------
  |  Branch (729:9): [True: 395, False: 376]
  ------------------
  730|    395|					RETERR(str_totext(",", target));
  ------------------
  |  |  276|    395|	{                                  \
  |  |  277|    395|		isc_result_t _r = (x);     \
  |  |  278|    395|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 395]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    395|	}
  ------------------
  731|    395|				}
  732|    771|			}
  733|    376|			break;
  734|    376|		case sbpr_base64:
  ------------------
  |  Branch (734:3): [True: 97, False: 5.24k]
  ------------------
  735|     97|			RETERR(isc_base64_totext(&r, 0, "", target));
  ------------------
  |  |  276|     97|	{                                  \
  |  |  277|     97|		isc_result_t _r = (x);     \
  |  |  278|     97|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 97]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|     97|	}
  ------------------
  736|     97|			break;
  737|    757|		case sbpr_alpn:
  ------------------
  |  Branch (737:3): [True: 757, False: 4.58k]
  ------------------
  738|    757|			INSIST(r.length != 0U);
  ------------------
  |  |  202|    757|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|    757|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 757, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|    757|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  739|    757|			RETERR(str_totext("\"", target));
  ------------------
  |  |  276|    757|	{                                  \
  |  |  277|    757|		isc_result_t _r = (x);     \
  |  |  278|    757|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 757]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    757|	}
  ------------------
  740|  1.91k|			while (r.length != 0) {
  ------------------
  |  Branch (740:11): [True: 1.16k, False: 757]
  ------------------
  741|  1.16k|				commatxt_totext(&r, false, true, target);
  742|  1.16k|				if (r.length != 0) {
  ------------------
  |  Branch (742:9): [True: 403, False: 757]
  ------------------
  743|    403|					RETERR(str_totext(",", target));
  ------------------
  |  |  276|    403|	{                                  \
  |  |  277|    403|		isc_result_t _r = (x);     \
  |  |  278|    403|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 403]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    403|	}
  ------------------
  744|    403|				}
  745|  1.16k|			}
  746|    757|			RETERR(str_totext("\"", target));
  ------------------
  |  |  276|    757|	{                                  \
  |  |  277|    757|		isc_result_t _r = (x);     \
  |  |  278|    757|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 757]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    757|	}
  ------------------
  747|    757|			break;
  748|      0|		case sbpr_empty:
  ------------------
  |  Branch (748:3): [True: 0, False: 5.34k]
  ------------------
  749|      0|			INSIST(r.length == 0U);
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  750|      0|			break;
  751|    722|		case sbpr_keylist:
  ------------------
  |  Branch (751:3): [True: 722, False: 4.61k]
  ------------------
  752|  1.93k|			while (r.length > 0) {
  ------------------
  |  Branch (752:11): [True: 1.21k, False: 722]
  ------------------
  753|  1.21k|				num = uint16_fromregion(&r);
  754|  1.21k|				isc_region_consume(&r, 2);
  ------------------
  |  |   50|  1.21k|	do {                              \
  |  |   51|  1.21k|		isc_region_t *_r = (r);   \
  |  |   52|  1.21k|		unsigned int  _l = (l);   \
  |  |   53|  1.21k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.21k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.21k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.21k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.21k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.21k|		_r->base += _l;           \
  |  |   55|  1.21k|		_r->length -= _l;         \
  |  |   56|  1.21k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.21k]
  |  |  ------------------
  ------------------
  755|  1.21k|				RETERR(str_totext(svcparamkey(num, &encoding,
  ------------------
  |  |  276|  1.21k|	{                                  \
  |  |  277|  1.21k|		isc_result_t _r = (x);     \
  |  |  278|  1.21k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.21k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.21k|	}
  ------------------
  756|  1.21k|							      buf, sizeof(buf),
  757|  1.21k|							      compat),
  758|  1.21k|						  target));
  759|  1.21k|				if (r.length != 0) {
  ------------------
  |  Branch (759:9): [True: 488, False: 722]
  ------------------
  760|    488|					RETERR(str_totext(",", target));
  ------------------
  |  |  276|    488|	{                                  \
  |  |  277|    488|		isc_result_t _r = (x);     \
  |  |  278|    488|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 488]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    488|	}
  ------------------
  761|    488|				}
  762|  1.21k|			}
  763|    722|			break;
  764|    722|		default:
  ------------------
  |  Branch (764:3): [True: 0, False: 5.34k]
  ------------------
  765|      0|			UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  766|  5.34k|		}
  767|  5.34k|	}
  768|  5.75k|	return ISC_R_SUCCESS;
  769|  5.75k|}
rdata.c:svcparamkey:
  380|  7.93k|	    size_t len, bool compat) {
  381|  7.93k|	size_t i;
  382|  7.93k|	int n;
  383|       |
  384|  51.4k|	for (i = 0; i < ARRAY_SIZE(sbpr); i++) {
  ------------------
  |  |   98|  51.4k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (384:14): [True: 48.3k, False: 3.10k]
  ------------------
  385|  48.3k|		if (sbpr[i].value == value && (sbpr[i].initial || !compat)) {
  ------------------
  |  Branch (385:7): [True: 4.83k, False: 43.4k]
  |  Branch (385:34): [True: 3.21k, False: 1.62k]
  |  Branch (385:53): [True: 1.62k, False: 0]
  ------------------
  386|  4.83k|			*encoding = sbpr[i].encoding;
  387|  4.83k|			return sbpr[i].name;
  388|  4.83k|		}
  389|  48.3k|	}
  390|  3.10k|	n = snprintf(buf, len, "key%u", value);
  391|  3.10k|	INSIST(n > 0 && (unsigned int)n < len);
  ------------------
  |  |  202|  3.10k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  6.20k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 3.10k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 3.10k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  3.10k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  392|  3.10k|	*encoding = sbpr_text;
  393|  3.10k|	return buf;
  394|  7.93k|}

rdata.c:fromwire_in_wks:
  210|  1.87k|fromwire_in_wks(ARGS_FROMWIRE) {
  211|  1.87k|	isc_region_t sr;
  212|  1.87k|	isc_region_t tr;
  213|       |
  214|  1.87k|	REQUIRE(type == dns_rdatatype_wks);
  ------------------
  |  |  198|  1.87k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.87k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.87k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.87k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  215|  1.87k|	REQUIRE(rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.87k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.87k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.87k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.87k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  216|       |
  217|  1.87k|	UNUSED(type);
  ------------------
  |  |   69|  1.87k|#define UNUSED(x) (void)(x)
  ------------------
  218|  1.87k|	UNUSED(dctx);
  ------------------
  |  |   69|  1.87k|#define UNUSED(x) (void)(x)
  ------------------
  219|  1.87k|	UNUSED(rdclass);
  ------------------
  |  |   69|  1.87k|#define UNUSED(x) (void)(x)
  ------------------
  220|       |
  221|  1.87k|	isc_buffer_activeregion(source, &sr);
  222|  1.87k|	isc_buffer_availableregion(target, &tr);
  223|       |
  224|  1.87k|	if (sr.length < 5) {
  ------------------
  |  Branch (224:6): [True: 5, False: 1.87k]
  ------------------
  225|      5|		return ISC_R_UNEXPECTEDEND;
  226|      5|	}
  227|  1.87k|	if (sr.length > 8 * 1024 + 5) {
  ------------------
  |  Branch (227:6): [True: 1, False: 1.87k]
  ------------------
  228|      1|		return DNS_R_EXTRADATA;
  229|      1|	}
  230|  1.87k|	if (sr.length > 5 && sr.base[sr.length - 1] == 0) {
  ------------------
  |  Branch (230:6): [True: 951, False: 919]
  |  Branch (230:23): [True: 4, False: 947]
  ------------------
  231|      4|		return DNS_R_FORMERR;
  232|      4|	}
  233|  1.86k|	if (tr.length < sr.length) {
  ------------------
  |  Branch (233:6): [True: 217, False: 1.64k]
  ------------------
  234|    217|		return ISC_R_NOSPACE;
  235|    217|	}
  236|       |
  237|  1.64k|	memmove(tr.base, sr.base, sr.length);
  238|  1.64k|	isc_buffer_add(target, sr.length);
  239|  1.64k|	isc_buffer_forward(source, sr.length);
  240|       |
  241|  1.64k|	return ISC_R_SUCCESS;
  242|  1.86k|}
rdata.c:towire_in_wks:
  245|    866|towire_in_wks(ARGS_TOWIRE) {
  246|    866|	isc_region_t sr;
  247|       |
  248|    866|	UNUSED(cctx);
  ------------------
  |  |   69|    866|#define UNUSED(x) (void)(x)
  ------------------
  249|       |
  250|    866|	REQUIRE(rdata->type == dns_rdatatype_wks);
  ------------------
  |  |  198|    866|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    866|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 866, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    866|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  251|    866|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|    866|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    866|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 866, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    866|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  252|    866|	REQUIRE(rdata->length != 0);
  ------------------
  |  |  198|    866|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|    866|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 866, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|    866|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  253|       |
  254|    866|	dns_rdata_toregion(rdata, &sr);
  255|    866|	return mem_tobuffer(target, sr.base, sr.length);
  256|    866|}
rdata.c:totext_in_wks:
  168|  1.41k|totext_in_wks(ARGS_TOTEXT) {
  169|  1.41k|	isc_region_t sr;
  170|  1.41k|	unsigned short proto;
  171|  1.41k|	char buf[sizeof("65535")];
  172|  1.41k|	unsigned int i, j;
  173|       |
  174|  1.41k|	UNUSED(tctx);
  ------------------
  |  |   69|  1.41k|#define UNUSED(x) (void)(x)
  ------------------
  175|       |
  176|  1.41k|	REQUIRE(rdata->type == dns_rdatatype_wks);
  ------------------
  |  |  198|  1.41k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.41k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.41k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  177|  1.41k|	REQUIRE(rdata->rdclass == dns_rdataclass_in);
  ------------------
  |  |  198|  1.41k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.41k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.41k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  178|  1.41k|	REQUIRE(rdata->length >= 5);
  ------------------
  |  |  198|  1.41k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.41k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.41k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  179|       |
  180|  1.41k|	dns_rdata_toregion(rdata, &sr);
  181|  1.41k|	RETERR(inet_totext(AF_INET, tctx->flags, &sr, target));
  ------------------
  |  |  276|  1.41k|	{                                  \
  |  |  277|  1.41k|		isc_result_t _r = (x);     \
  |  |  278|  1.41k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.41k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.41k|	}
  ------------------
  182|  1.41k|	isc_region_consume(&sr, 4);
  ------------------
  |  |   50|  1.41k|	do {                              \
  |  |   51|  1.41k|		isc_region_t *_r = (r);   \
  |  |   52|  1.41k|		unsigned int  _l = (l);   \
  |  |   53|  1.41k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.41k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.41k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.41k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.41k|		_r->base += _l;           \
  |  |   55|  1.41k|		_r->length -= _l;         \
  |  |   56|  1.41k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.41k]
  |  |  ------------------
  ------------------
  183|       |
  184|  1.41k|	proto = uint8_fromregion(&sr);
  185|  1.41k|	snprintf(buf, sizeof(buf), "%u", proto);
  186|  1.41k|	RETERR(str_totext(" ", target));
  ------------------
  |  |  276|  1.41k|	{                                  \
  |  |  277|  1.41k|		isc_result_t _r = (x);     \
  |  |  278|  1.41k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.41k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.41k|	}
  ------------------
  187|  1.41k|	RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.41k|	{                                  \
  |  |  277|  1.41k|		isc_result_t _r = (x);     \
  |  |  278|  1.41k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.41k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.41k|	}
  ------------------
  188|  1.41k|	isc_region_consume(&sr, 1);
  ------------------
  |  |   50|  1.41k|	do {                              \
  |  |   51|  1.41k|		isc_region_t *_r = (r);   \
  |  |   52|  1.41k|		unsigned int  _l = (l);   \
  |  |   53|  1.41k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.41k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.41k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.41k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.41k|		_r->base += _l;           \
  |  |   55|  1.41k|		_r->length -= _l;         \
  |  |   56|  1.41k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.41k]
  |  |  ------------------
  ------------------
  189|       |
  190|  1.41k|	INSIST(sr.length <= 8 * 1024);
  ------------------
  |  |  202|  1.41k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  1.41k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 1.41k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  1.41k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  191|  84.8k|	for (i = 0; i < sr.length; i++) {
  ------------------
  |  Branch (191:14): [True: 83.4k, False: 1.41k]
  ------------------
  192|  83.4k|		if (sr.base[i] != 0) {
  ------------------
  |  Branch (192:7): [True: 54.2k, False: 29.2k]
  ------------------
  193|   487k|			for (j = 0; j < 8; j++) {
  ------------------
  |  Branch (193:16): [True: 433k, False: 54.2k]
  ------------------
  194|   433k|				if ((sr.base[i] & (0x80 >> j)) != 0) {
  ------------------
  |  Branch (194:9): [True: 169k, False: 263k]
  ------------------
  195|   169k|					{
  196|   169k|						snprintf(buf, sizeof(buf), "%u",
  197|   169k|							 i * 8 + j);
  198|   169k|						RETERR(str_totext(" ", target));
  ------------------
  |  |  276|   169k|	{                                  \
  |  |  277|   169k|		isc_result_t _r = (x);     \
  |  |  278|   169k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 169k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   169k|	}
  ------------------
  199|   169k|						RETERR(str_totext(buf, target));
  ------------------
  |  |  276|   169k|	{                                  \
  |  |  277|   169k|		isc_result_t _r = (x);     \
  |  |  278|   169k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 169k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   169k|	}
  ------------------
  200|   169k|					}
  201|   169k|				}
  202|   433k|			}
  203|  54.2k|		}
  204|  83.4k|	}
  205|       |
  206|  1.41k|	return ISC_R_SUCCESS;
  207|  1.41k|}

dns_rdatalist_init:
   43|   422k|dns_rdatalist_init(dns_rdatalist_t *rdatalist) {
   44|   422k|	REQUIRE(rdatalist != NULL);
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   422k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   45|       |
   46|       |	/*
   47|       |	 * Initialize rdatalist.
   48|       |	 */
   49|   422k|	*rdatalist = (dns_rdatalist_t){
   50|   422k|		.rdata = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|   422k|	{                     \
  |  |   22|   422k|		.head = NULL, \
  |  |   23|   422k|		.tail = NULL, \
  |  |   24|   422k|	}
  ------------------
   51|   422k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|   422k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|   422k|	{                                         \
  |  |  |  |   27|   422k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   422k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|   422k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   422k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|   422k|	}
  |  |  ------------------
  ------------------
   52|   422k|	};
   53|   422k|	memset(rdatalist->upper, 0xeb, sizeof(rdatalist->upper));
   54|       |
   55|       |	/*
   56|       |	 * Clear upper set bit.
   57|       |	 */
   58|   422k|	rdatalist->upper[0] &= ~0x01;
   59|   422k|}
dns_rdatalist_tordataset:
   62|   422k|dns_rdatalist_tordataset(dns_rdatalist_t *rdatalist, dns_rdataset_t *rdataset) {
   63|       |	/*
   64|       |	 * Make 'rdataset' refer to the rdata in 'rdatalist'.
   65|       |	 */
   66|       |
   67|   422k|	REQUIRE(rdatalist != NULL);
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   422k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   68|   422k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   844k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   69|   422k|	REQUIRE(!dns_rdataset_isassociated(rdataset));
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   422k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   70|       |
   71|       |	/* Check if dns_rdatalist_init has was called. */
   72|   422k|	REQUIRE(rdatalist->upper[0] == 0xea);
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   422k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   73|       |
   74|   422k|	*rdataset = (dns_rdataset_t){
   75|   422k|		.methods = &methods,
   76|   422k|		.rdclass = rdatalist->rdclass,
   77|   422k|		.type = rdatalist->type,
   78|   422k|		.covers = rdatalist->covers,
   79|   422k|		.ttl = rdatalist->ttl,
   80|   422k|		.rdlist.list = rdatalist,
   81|       |
   82|   422k|		.link = rdataset->link,
   83|   422k|		.attributes = rdataset->attributes,
   84|   422k|		.magic = rdataset->magic,
   85|   422k|	};
   86|   422k|}
dns_rdatalist_fromrdataset:
   90|   314k|			   dns_rdatalist_t **rdatalist) {
   91|   314k|	REQUIRE(rdatalist != NULL && rdataset != NULL);
  ------------------
  |  |  198|   314k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   628k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 314k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 314k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   314k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   92|   314k|	REQUIRE(rdataset->methods == &methods);
  ------------------
  |  |  198|   314k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   314k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 314k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   314k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   93|       |
   94|   314k|	*rdatalist = rdataset->rdlist.list;
   95|   314k|}
dns_rdatalist_disassociate:
   98|   422k|dns_rdatalist_disassociate(dns_rdataset_t *rdataset DNS__DB_FLARG) {
   99|   422k|	UNUSED(rdataset);
  ------------------
  |  |   69|   422k|#define UNUSED(x) (void)(x)
  ------------------
  100|   422k|}
dns__rdatalist_first:
  103|   400k|dns__rdatalist_first(dns_rdataset_t *rdataset) {
  104|   400k|	dns_rdatalist_t *rdatalist = NULL;
  105|       |
  106|   400k|	rdatalist = rdataset->rdlist.list;
  107|   400k|	rdataset->rdlist.iter = ISC_LIST_HEAD(rdatalist->rdata);
  ------------------
  |  |   62|   400k|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  108|       |
  109|   400k|	if (rdataset->rdlist.iter == NULL) {
  ------------------
  |  Branch (109:6): [True: 213k, False: 187k]
  ------------------
  110|   213k|		return ISC_R_NOMORE;
  111|   213k|	}
  112|       |
  113|   187k|	return ISC_R_SUCCESS;
  114|   400k|}
dns__rdatalist_next:
  117|   386k|dns__rdatalist_next(dns_rdataset_t *rdataset) {
  118|   386k|	dns_rdata_t *rdata;
  119|       |
  120|   386k|	rdata = rdataset->rdlist.iter;
  121|   386k|	if (rdata == NULL) {
  ------------------
  |  Branch (121:6): [True: 0, False: 386k]
  ------------------
  122|      0|		return ISC_R_NOMORE;
  123|      0|	}
  124|       |
  125|   386k|	rdataset->rdlist.iter = ISC_LIST_NEXT(rdata, link);
  ------------------
  |  |  140|   386k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
  126|       |
  127|   386k|	if (rdataset->rdlist.iter == NULL) {
  ------------------
  |  Branch (127:6): [True: 183k, False: 203k]
  ------------------
  128|   183k|		return ISC_R_NOMORE;
  129|   183k|	}
  130|       |
  131|   203k|	return ISC_R_SUCCESS;
  132|   386k|}
dns__rdatalist_current:
  135|   391k|dns__rdatalist_current(dns_rdataset_t *rdataset, dns_rdata_t *rdata) {
  136|   391k|	dns_rdata_t *list_rdata;
  137|       |
  138|   391k|	list_rdata = rdataset->rdlist.iter;
  139|   391k|	INSIST(list_rdata != NULL);
  ------------------
  |  |  202|   391k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   391k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 391k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   391k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  140|       |
  141|   391k|	dns_rdata_clone(list_rdata, rdata);
  142|   391k|}
dns__rdatalist_count:
  156|  63.1k|dns__rdatalist_count(dns_rdataset_t *rdataset) {
  157|  63.1k|	dns_rdatalist_t *rdatalist = NULL;
  158|  63.1k|	unsigned int count;
  159|       |
  160|  63.1k|	REQUIRE(rdataset != NULL);
  ------------------
  |  |  198|  63.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  63.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 63.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  63.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  161|       |
  162|  63.1k|	rdatalist = rdataset->rdlist.list;
  163|       |
  164|  63.1k|	count = 0;
  165|   131k|	ISC_LIST_FOREACH(rdatalist->rdata, rdata, link) {
  ------------------
  |  |  234|  63.1k|	for (typeof((list).head) elt = ISC_LIST_HEAD(list),                \
  |  |  ------------------
  |  |  |  |   62|  63.1k|#define ISC_LIST_HEAD(list)  ((list).head)
  |  |  ------------------
  |  |  235|  63.1k|	     elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL; \
  |  |  ------------------
  |  |  |  |  140|  63.1k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (235:20): [True: 63.1k, False: 0]
  |  |  ------------------
  |  |  236|   194k|	     elt != NULL;                                                  \
  |  |  ------------------
  |  |  |  Branch (236:7): [True: 131k, False: 63.1k]
  |  |  ------------------
  |  |  237|   131k|	     elt = elt##_next,                                             \
  |  |  238|   131k|	      elt##_next = (elt != NULL) ? ISC_LIST_NEXT(elt, link) : NULL)
  |  |  ------------------
  |  |  |  |  140|  68.7k|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  |  |  ------------------
  |  |  |  Branch (238:21): [True: 68.7k, False: 63.1k]
  |  |  ------------------
  ------------------
  166|   131k|		count++;
  167|   131k|	}
  168|       |
  169|  63.1k|	return count;
  170|  63.1k|}
dns__rdatalist_setownercase:
  360|   302k|dns__rdatalist_setownercase(dns_rdataset_t *rdataset, const dns_name_t *name) {
  361|   302k|	dns_rdatalist_t *rdatalist;
  362|   302k|	unsigned int i;
  363|       |
  364|       |	/*
  365|       |	 * We do not need to worry about label lengths as they are all
  366|       |	 * less than or equal to 63.
  367|       |	 */
  368|   302k|	rdatalist = rdataset->rdlist.list;
  369|   302k|	memset(rdatalist->upper, 0, sizeof(rdatalist->upper));
  370|  3.32M|	for (i = 1; i < name->length; i++) {
  ------------------
  |  Branch (370:14): [True: 3.02M, False: 302k]
  ------------------
  371|  3.02M|		if (name->ndata[i] >= 0x41 && name->ndata[i] <= 0x5a) {
  ------------------
  |  Branch (371:7): [True: 605k, False: 2.41M]
  |  Branch (371:33): [True: 62.7k, False: 542k]
  ------------------
  372|  62.7k|			rdatalist->upper[i / 8] |= 1 << (i % 8);
  373|  62.7k|		}
  374|  3.02M|	}
  375|       |	/*
  376|       |	 * Record that upper has been set.
  377|       |	 */
  378|   302k|	rdatalist->upper[0] |= 0x01;
  379|   302k|}
dns__rdatalist_getownercase:
  382|   277k|dns__rdatalist_getownercase(const dns_rdataset_t *rdataset, dns_name_t *name) {
  383|   277k|	dns_rdatalist_t *rdatalist;
  384|   277k|	unsigned int i;
  385|       |
  386|   277k|	rdatalist = rdataset->rdlist.list;
  387|   277k|	if ((rdatalist->upper[0] & 0x01) == 0) {
  ------------------
  |  Branch (387:6): [True: 94.1k, False: 183k]
  ------------------
  388|  94.1k|		return;
  389|  94.1k|	}
  390|  2.55M|	for (i = 0; i < name->length; i++) {
  ------------------
  |  Branch (390:14): [True: 2.37M, False: 183k]
  ------------------
  391|       |		/*
  392|       |		 * Set the case bit if it does not match the recorded bit.
  393|       |		 */
  394|  2.37M|		if (name->ndata[i] >= 0x61 && name->ndata[i] <= 0x7a &&
  ------------------
  |  Branch (394:7): [True: 407k, False: 1.96M]
  |  Branch (394:33): [True: 73.9k, False: 333k]
  ------------------
  395|  73.9k|		    (rdatalist->upper[i / 8] & (1 << (i % 8))) != 0)
  ------------------
  |  Branch (395:7): [True: 0, False: 73.9k]
  ------------------
  396|      0|		{
  397|      0|			name->ndata[i] &= ~0x20; /* clear the lower case bit */
  398|  2.37M|		} else if (name->ndata[i] >= 0x41 && name->ndata[i] <= 0x5a &&
  ------------------
  |  Branch (398:14): [True: 475k, False: 1.89M]
  |  Branch (398:40): [True: 58.3k, False: 417k]
  ------------------
  399|  58.3k|			   (rdatalist->upper[i / 8] & (1 << (i % 8))) == 0)
  ------------------
  |  Branch (399:7): [True: 0, False: 58.3k]
  ------------------
  400|      0|		{
  401|      0|			name->ndata[i] |= 0x20; /* set the lower case bit */
  402|      0|		}
  403|  2.37M|	}
  404|   183k|}

dns_rdataset_init:
   56|   422k|dns_rdataset_init(dns_rdataset_t *rdataset) {
   57|       |	/*
   58|       |	 * Make 'rdataset' a valid, disassociated rdataset.
   59|       |	 */
   60|       |
   61|   422k|	REQUIRE(rdataset != NULL);
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   422k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   62|       |
   63|   422k|	*rdataset = (dns_rdataset_t){
   64|   422k|		.magic = DNS_RDATASET_MAGIC,
  ------------------
  |  |   92|   422k|#define DNS_RDATASET_MAGIC	ISC_MAGIC('D', 'N', 'S', 'R')
  |  |  ------------------
  |  |  |  |   31|   422k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
   65|   422k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|   422k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|   422k|	{                                         \
  |  |  |  |   27|   422k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   422k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|   422k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   422k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|   422k|	}
  |  |  ------------------
  ------------------
   66|   422k|	};
   67|   422k|}
dns__rdataset_disassociate:
   85|   422k|dns__rdataset_disassociate(dns_rdataset_t *rdataset DNS__DB_FLARG) {
   86|       |	/*
   87|       |	 * Disassociate 'rdataset' from its rdata, allowing it to be reused.
   88|       |	 */
   89|       |
   90|   422k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   844k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   91|   422k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   422k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   422k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 422k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   422k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   92|       |
   93|   422k|	if (rdataset->methods->disassociate != NULL) {
  ------------------
  |  Branch (93:6): [True: 422k, False: 0]
  ------------------
   94|   422k|		(rdataset->methods->disassociate)(rdataset DNS__DB_FLARG_PASS);
   95|   422k|	}
   96|   422k|	*rdataset = (dns_rdataset_t){
   97|   422k|		.magic = DNS_RDATASET_MAGIC,
  ------------------
  |  |   92|   422k|#define DNS_RDATASET_MAGIC	ISC_MAGIC('D', 'N', 'S', 'R')
  |  |  ------------------
  |  |  |  |   31|   422k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
   98|   422k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|   422k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|   422k|	{                                         \
  |  |  |  |   27|   422k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   422k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|   422k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   422k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|   422k|	}
  |  |  ------------------
  ------------------
   99|   422k|	};
  100|   422k|}
dns_rdataset_isassociated:
  103|   844k|dns_rdataset_isassociated(const dns_rdataset_t *rdataset) {
  104|       |	/*
  105|       |	 * Is 'rdataset' associated?
  106|       |	 */
  107|       |
  108|   844k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   844k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.68M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 844k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 844k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   844k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  109|       |
  110|   844k|	if (rdataset->methods != NULL) {
  ------------------
  |  Branch (110:6): [True: 41, False: 844k]
  ------------------
  111|     41|		return true;
  112|     41|	}
  113|       |
  114|   844k|	return false;
  115|   844k|}
dns_rdataset_count:
  152|  63.1k|dns_rdataset_count(dns_rdataset_t *rdataset) {
  153|       |	/*
  154|       |	 * Return the number of records in 'rdataset'.
  155|       |	 */
  156|       |
  157|  63.1k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|  63.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   126k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 63.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 63.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  63.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  158|  63.1k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|  63.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  63.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 63.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  63.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  159|  63.1k|	REQUIRE(rdataset->methods->count != NULL);
  ------------------
  |  |  198|  63.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  63.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 63.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  63.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  160|       |
  161|  63.1k|	return (rdataset->methods->count)(rdataset);
  162|  63.1k|}
dns_rdataset_first:
  180|   400k|dns_rdataset_first(dns_rdataset_t *rdataset) {
  181|   400k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   400k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   801k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 400k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 400k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   400k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  182|   400k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   400k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   400k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 400k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   400k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  183|   400k|	REQUIRE(rdataset->methods->first != NULL);
  ------------------
  |  |  198|   400k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   400k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 400k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   400k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  184|       |
  185|   400k|	isc_result_t result = rdataset->methods->first(rdataset);
  186|   400k|	ENSURE(result == ISC_R_SUCCESS || result == ISC_R_NOMORE);
  ------------------
  |  |  200|   400k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|   613k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:11): [True: 187k, False: 213k]
  |  |  |  |  |  Branch (48:11): [True: 213k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|   400k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  187|   400k|	return result;
  188|   400k|}
dns_rdataset_next:
  191|   386k|dns_rdataset_next(dns_rdataset_t *rdataset) {
  192|   386k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   386k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   773k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 386k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 386k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   386k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  193|   386k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   386k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   386k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 386k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   386k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  194|   386k|	REQUIRE(rdataset->methods->next != NULL);
  ------------------
  |  |  198|   386k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   386k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 386k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   386k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  195|       |
  196|   386k|	isc_result_t result = rdataset->methods->next(rdataset);
  197|   386k|	ENSURE(result == ISC_R_SUCCESS || result == ISC_R_NOMORE);
  ------------------
  |  |  200|   386k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|   570k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:11): [True: 203k, False: 183k]
  |  |  |  |  |  Branch (48:11): [True: 183k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|   386k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  198|   386k|	return result;
  199|   386k|}
dns_rdataset_current:
  202|   391k|dns_rdataset_current(dns_rdataset_t *rdataset, dns_rdata_t *rdata) {
  203|       |	/*
  204|       |	 * Make 'rdata' refer to the current rdata.
  205|       |	 */
  206|       |
  207|   391k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   391k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   782k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 391k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 391k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   391k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  208|   391k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   391k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   391k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 391k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   391k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  209|   391k|	REQUIRE(rdataset->methods->current != NULL);
  ------------------
  |  |  198|   391k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   391k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 391k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   391k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  210|       |
  211|   391k|	(rdataset->methods->current)(rdataset, rdata);
  212|   391k|}
dns_rdataset_towire:
  369|   157k|		    bool partial, unsigned int options, unsigned int *countp) {
  370|   157k|	isc_result_t result;
  371|   157k|	isc_buffer_t savedbuffer = *target;
  372|   157k|	isc_buffer_t rrbuffer;
  373|   157k|	dns_fixedname_t fixed;
  374|   157k|	dns_name_t *name = NULL;
  375|       |
  376|       |	/*
  377|       |	 * Convert 'rdataset' to wire format, compressing names as specified
  378|       |	 * in cctx, and storing the result in 'target'.
  379|       |	 */
  380|       |
  381|   157k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   157k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   314k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 157k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 157k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   157k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  382|   157k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   157k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   157k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 157k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   157k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  383|   157k|	REQUIRE(countp != NULL);
  ------------------
  |  |  198|   157k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   157k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 157k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   157k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  384|   157k|	REQUIRE(cctx != NULL && cctx->mctx != NULL);
  ------------------
  |  |  198|   157k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   314k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 157k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 157k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   157k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  385|       |
  386|   157k|	if (rdataset->attributes.negative) {
  ------------------
  |  Branch (386:6): [True: 0, False: 157k]
  ------------------
  387|       |		/*
  388|       |		 * This is a negative caching rdataset.
  389|       |		 */
  390|      0|		unsigned int ncache_opts = 0;
  391|      0|		if ((options & DNS_RDATASETTOWIRE_OMITDNSSEC) != 0) {
  ------------------
  |  |  274|      0|#define DNS_RDATASETTOWIRE_OMITDNSSEC 0x0001
  ------------------
  |  Branch (391:7): [True: 0, False: 0]
  ------------------
  392|      0|			ncache_opts |= DNS_NCACHETOWIRE_OMITDNSSEC;
  ------------------
  |  |   52|      0|#define DNS_NCACHETOWIRE_OMITDNSSEC 0x0001
  ------------------
  393|      0|		}
  394|      0|		return dns_ncache_towire(rdataset, cctx, target, ncache_opts,
  395|      0|					 countp);
  396|      0|	}
  397|       |
  398|   157k|	name = dns_fixedname_initname(&fixed);
  399|   157k|	dns_name_copy(owner_name, name);
  400|   157k|	dns_rdataset_getownercase(rdataset, name);
  401|   157k|	dns_compress_setmultiuse(cctx, true);
  402|       |
  403|   157k|	name->attributes.nocompress |= owner_name->attributes.nocompress;
  404|       |
  405|   157k|	if (rdataset->attributes.question) {
  ------------------
  |  Branch (405:6): [True: 94.1k, False: 63.1k]
  ------------------
  406|  94.1k|		result = towire_question(rdataset, name, cctx, target,
  407|  94.1k|					 &rrbuffer, countp);
  408|  94.1k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (408:7): [True: 0, False: 94.1k]
  ------------------
  409|      0|			goto rollback;
  410|      0|		}
  411|  94.1k|	} else {
  412|  63.1k|		result = towire_answer(rdataset, name, cctx, target, &rrbuffer,
  413|  63.1k|				       id, countp);
  414|  63.1k|		if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (414:7): [True: 157, False: 62.9k]
  ------------------
  415|    157|			goto rollback;
  416|    157|		}
  417|  63.1k|	}
  418|       |
  419|   157k|	return ISC_R_SUCCESS;
  420|       |
  421|    157|rollback:
  422|    157|	if (partial && result == ISC_R_NOSPACE) {
  ------------------
  |  Branch (422:6): [True: 0, False: 157]
  |  Branch (422:17): [True: 0, False: 0]
  ------------------
  423|      0|		dns_compress_rollback(cctx, rrbuffer.used);
  424|      0|		*target = rrbuffer;
  425|      0|		return result;
  426|      0|	}
  427|    157|	dns_compress_rollback(cctx, savedbuffer.used);
  428|    157|	*countp = 0;
  429|    157|	*target = savedbuffer;
  430|       |
  431|    157|	return result;
  432|    157|}
dns_rdataset_setownercase:
  541|   302k|dns_rdataset_setownercase(dns_rdataset_t *rdataset, const dns_name_t *name) {
  542|   302k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   302k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   604k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 302k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 302k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   302k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  543|   302k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   302k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   302k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 302k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   302k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  544|       |
  545|   302k|	if (rdataset->methods->setownercase != NULL &&
  ------------------
  |  Branch (545:6): [True: 302k, False: 0]
  ------------------
  546|   302k|	    !rdataset->attributes.keepcase)
  ------------------
  |  Branch (546:6): [True: 302k, False: 0]
  ------------------
  547|   302k|	{
  548|   302k|		(rdataset->methods->setownercase)(rdataset, name);
  549|   302k|	}
  550|   302k|}
dns_rdataset_getownercase:
  553|   277k|dns_rdataset_getownercase(const dns_rdataset_t *rdataset, dns_name_t *name) {
  554|   277k|	REQUIRE(DNS_RDATASET_VALID(rdataset));
  ------------------
  |  |  198|   277k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   554k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 277k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 277k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   277k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  555|   277k|	REQUIRE(rdataset->methods != NULL);
  ------------------
  |  |  198|   277k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   277k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 277k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   277k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  556|       |
  557|   277k|	if (rdataset->methods->getownercase != NULL &&
  ------------------
  |  Branch (557:6): [True: 277k, False: 0]
  ------------------
  558|   277k|	    !rdataset->attributes.keepcase)
  ------------------
  |  Branch (558:6): [True: 277k, False: 0]
  ------------------
  559|   277k|	{
  560|   277k|		(rdataset->methods->getownercase)(rdataset, name);
  561|   277k|	}
  562|   277k|}
rdataset.c:towire_question:
  266|  94.1k|		isc_buffer_t *rrbuffer, unsigned int *countp) {
  267|  94.1k|	isc_result_t result;
  268|       |
  269|  94.1k|	result = dns_rdataset_first(rdataset);
  270|  94.1k|	INSIST(result == ISC_R_NOMORE);
  ------------------
  |  |  202|  94.1k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  94.1k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 94.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  94.1k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  271|       |
  272|  94.1k|	result = towire_addtypeclass(rdataset, name, cctx, target, rrbuffer, 0);
  273|  94.1k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (273:6): [True: 66.6k, False: 27.4k]
  ------------------
  274|  66.6k|		return ISC_R_SUCCESS;
  275|  66.6k|	}
  276|       |
  277|  27.4k|	*countp += 1;
  278|       |
  279|  27.4k|	return ISC_R_SUCCESS;
  280|  94.1k|}
rdataset.c:towire_addtypeclass:
  219|   225k|		    isc_buffer_t *rrbuffer, size_t extralen) {
  220|   225k|	isc_region_t r;
  221|   225k|	isc_result_t result;
  222|   225k|	size_t headlen;
  223|       |
  224|   225k|	*rrbuffer = *target;
  225|   225k|	dns_compress_setpermitted(cctx, true);
  226|   225k|	result = dns_name_towire(name, cctx, target);
  227|   225k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (227:6): [True: 66.6k, False: 159k]
  ------------------
  228|  66.6k|		return result;
  229|  66.6k|	}
  230|   159k|	headlen = sizeof(dns_rdataclass_t) + sizeof(dns_rdatatype_t) + extralen;
  231|   159k|	isc_buffer_availableregion(target, &r);
  232|   159k|	if (r.length < headlen) {
  ------------------
  |  Branch (232:6): [True: 49, False: 159k]
  ------------------
  233|     49|		return ISC_R_NOSPACE;
  234|     49|	}
  235|   159k|	isc_buffer_putuint16(target, rdataset->type);
  236|   159k|	isc_buffer_putuint16(target, rdataset->rdclass);
  237|   159k|	return ISC_R_SUCCESS;
  238|   159k|}
rdataset.c:towire_answer:
  285|  63.1k|	      isc_buffer_t *rrbuffer, uint16_t id, unsigned int *countp) {
  286|  63.1k|	isc_result_t result;
  287|  63.1k|	size_t start = 0, count = 0, added = 0;
  288|  63.1k|	isc_buffer_t rdlen;
  289|  63.1k|	dns_rdata_t *rdatas = dns__rdataset_rdatas;
  290|       |
  291|  63.1k|	count = dns_rdataset_count(rdataset);
  292|  63.1k|	result = dns_rdataset_first(rdataset);
  293|  63.1k|	if (result == ISC_R_NOMORE) {
  ------------------
  |  Branch (293:6): [True: 0, False: 63.1k]
  ------------------
  294|      0|		return ISC_R_SUCCESS;
  295|  63.1k|	} else if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (295:13): [True: 0, False: 63.1k]
  ------------------
  296|      0|		return result;
  297|      0|	}
  298|       |
  299|  63.1k|	if (WANT_CYCLIC(rdataset) && rdataset->type != dns_rdatatype_rrsig) {
  ------------------
  |  |  214|   126k|#define WANT_CYCLIC(r) (((r)->attributes.order == dns_order_cyclic))
  |  |  ------------------
  |  |  |  Branch (214:24): [True: 0, False: 63.1k]
  |  |  ------------------
  ------------------
              	if (WANT_CYCLIC(rdataset) && rdataset->type != dns_rdatatype_rrsig) {
  ------------------
  |  |  160|      0|#define dns_rdatatype_rrsig	((dns_rdatatype_t)dns_rdatatype_rrsig)
  ------------------
  |  Branch (299:31): [True: 0, False: 0]
  ------------------
  300|      0|		start = id % count;
  301|       |
  302|       |		/* Do we need larger buffer? */
  303|      0|		if (start > ARRAY_SIZE(dns__rdataset_rdatas)) {
  ------------------
  |  |   98|      0|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (303:7): [True: 0, False: 0]
  ------------------
  304|      0|			rdatas = isc_mem_cget(cctx->mctx, start,
  ------------------
  |  |  130|      0|	isc__mem_get((c), ISC_CHECKED_MUL((n), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  131|      0|		     ISC__MEM_ZERO _ISC_MEM_FILELINE)
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  ------------------
  305|      0|					      sizeof(rdatas[0]));
  306|      0|		}
  307|      0|	}
  308|       |
  309|       |	/*
  310|       |	 * Save the rdata up until the start.  If we are not
  311|       |	 * doing cyclic, the start == 0, so this is no-op.
  312|       |	 */
  313|  63.1k|	for (size_t i = 0; i < start; i++) {
  ------------------
  |  Branch (313:21): [True: 0, False: 63.1k]
  ------------------
  314|      0|		dns_rdata_init(&rdatas[i]);
  315|      0|		dns_rdataset_current(rdataset, &rdatas[i]);
  316|       |
  317|      0|		result = dns_rdataset_next(rdataset);
  318|      0|		if (result == ISC_R_NOMORE) {
  ------------------
  |  Branch (318:7): [True: 0, False: 0]
  ------------------
  319|      0|			result = ISC_R_SUCCESS;
  320|      0|			break;
  321|      0|		} else if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (321:14): [True: 0, False: 0]
  ------------------
  322|      0|			goto cleanup;
  323|      0|		}
  324|      0|	}
  325|       |
  326|   131k|	for (size_t i = start; i < count; i++) {
  ------------------
  |  Branch (326:25): [True: 131k, False: 0]
  ------------------
  327|   131k|		dns_rdata_t rdata = DNS_RDATA_INIT;
  ------------------
  |  |  147|   131k|	{                                     \
  |  |  148|   131k|		.data = NULL,                 \
  |  |  149|   131k|		.link = ISC_LINK_INITIALIZER, \
  |  |  ------------------
  |  |  |  |   30|   131k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  |  |  ------------------
  |  |  |  |  |  |   26|   131k|	{                                         \
  |  |  |  |  |  |   27|   131k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   131k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   28|   131k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|   131k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   29|   131k|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  150|   131k|	}
  ------------------
  328|       |
  329|   131k|		CHECK(towire_addtypeclass(rdataset, name, cctx, target,
  ------------------
  |  |  255|   131k|	{                                      \
  |  |  256|   131k|		result = (r);                  \
  |  |  257|   131k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 13, False: 131k]
  |  |  ------------------
  |  |  258|     13|			goto cleanup;          \
  |  |  259|     13|		}                              \
  |  |  260|   131k|	}
  ------------------
  330|   131k|					  rrbuffer, sizeof(dns_ttl_t) + 2));
  331|   131k|		towire_addttl(rdataset, target, &rdlen);
  332|       |
  333|   131k|		dns_rdataset_current(rdataset, &rdata);
  334|   131k|		CHECK(towire_addrdata(&rdata, cctx, target, &rdlen));
  ------------------
  |  |  255|   131k|	{                                      \
  |  |  256|   131k|		result = (r);                  \
  |  |  257|   131k|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 144, False: 131k]
  |  |  ------------------
  |  |  258|    144|			goto cleanup;          \
  |  |  259|    144|		}                              \
  |  |  260|   131k|	}
  ------------------
  335|   131k|		added++;
  336|       |
  337|   131k|		result = dns_rdataset_next(rdataset);
  338|   131k|		if (result == ISC_R_NOMORE) {
  ------------------
  |  Branch (338:7): [True: 62.9k, False: 68.5k]
  ------------------
  339|  62.9k|			result = ISC_R_SUCCESS;
  340|  62.9k|			break;
  341|  68.5k|		} else if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (341:14): [True: 0, False: 68.5k]
  ------------------
  342|      0|			goto cleanup;
  343|      0|		}
  344|   131k|	}
  345|       |
  346|  62.9k|	for (size_t i = 0; i < start; i++) {
  ------------------
  |  Branch (346:21): [True: 0, False: 62.9k]
  ------------------
  347|      0|		CHECK(towire_addtypeclass(rdataset, name, cctx, target,
  ------------------
  |  |  255|      0|	{                                      \
  |  |  256|      0|		result = (r);                  \
  |  |  257|      0|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|      0|	}
  ------------------
  348|      0|					  rrbuffer, sizeof(dns_ttl_t) + 2));
  349|      0|		towire_addttl(rdataset, target, &rdlen);
  350|       |
  351|      0|		CHECK(towire_addrdata(&rdatas[i], cctx, target, &rdlen));
  ------------------
  |  |  255|      0|	{                                      \
  |  |  256|      0|		result = (r);                  \
  |  |  257|      0|		if (result != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (257:7): [True: 0, False: 0]
  |  |  ------------------
  |  |  258|      0|			goto cleanup;          \
  |  |  259|      0|		}                              \
  |  |  260|      0|	}
  ------------------
  352|      0|		added++;
  353|      0|	}
  354|       |
  355|  62.9k|	INSIST(added == count);
  ------------------
  |  |  202|  62.9k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  62.9k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 62.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  62.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  356|       |
  357|  63.1k|cleanup:
  358|  63.1k|	*countp += added;
  359|  63.1k|	if (rdatas != dns__rdataset_rdatas) {
  ------------------
  |  Branch (359:6): [True: 0, False: 63.1k]
  ------------------
  360|      0|		isc_mem_cput(cctx->mctx, rdatas, start, sizeof(rdatas[0]));
  ------------------
  |  |  153|      0|	do {                                                      \
  |  |  154|      0|		isc__mem_put((c), (p), ISC_CHECKED_MUL((n), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  155|      0|			     ISC__MEM_ZERO _ISC_MEM_FILELINE);    \
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  |  |  156|      0|		(p) = NULL;                                       \
  |  |  157|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (157:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
  361|      0|	}
  362|       |
  363|  63.1k|	return result;
  364|  62.9k|}
rdataset.c:towire_addttl:
  242|   131k|	      isc_buffer_t *rdlen) {
  243|   131k|	isc_buffer_putuint32(target, rdataset->ttl);
  244|       |
  245|       |	/* Save space for rdlen. */
  246|   131k|	*rdlen = *target;
  247|   131k|	isc_buffer_add(target, 2);
  248|   131k|}
rdataset.c:towire_addrdata:
  252|   131k|		isc_buffer_t *rdlen) {
  253|   131k|	isc_result_t result = dns_rdata_towire(rdata, cctx, target);
  254|   131k|	if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (254:6): [True: 144, False: 131k]
  ------------------
  255|    144|		return result;
  256|    144|	}
  257|   131k|	INSIST((target->used >= rdlen->used + 2) &&
  ------------------
  |  |  202|   131k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   263k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 131k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 131k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   131k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  258|   131k|	       (target->used - rdlen->used - 2 < 65536));
  259|   131k|	isc_buffer_putuint16(rdlen, (uint16_t)(target->used - rdlen->used - 2));
  260|   131k|	return ISC_R_SUCCESS;
  261|   131k|}

dns_time64_totext:
   33|  16.6k|dns_time64_totext(int64_t t, isc_buffer_t *target) {
   34|  16.6k|	struct tm tm;
   35|  16.6k|	char buf[sizeof("!!!!!!YYYY!!!!!!!!MM!!!!!!!!DD!!!!!!!!HH!!!!!!!!MM!!!!"
   36|  16.6k|			"!!!!SS")];
   37|  16.6k|	int secs;
   38|  16.6k|	unsigned int l;
   39|  16.6k|	isc_region_t region;
   40|       |
   41|       |/*
   42|       | * Warning. Do NOT use arguments with side effects with these macros.
   43|       | */
   44|  16.6k|#define is_leap(y)   ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
   45|  16.6k|#define year_secs(y) ((is_leap(y) ? 366 : 365) * 86400)
   46|  16.6k|#define month_secs(m, y) ((days[m] + ((m == 1 && is_leap(y)) ? 1 : 0)) * 86400)
   47|       |
   48|  16.6k|	tm.tm_year = 70;
   49|  23.2k|	while (t < 0) {
  ------------------
  |  Branch (49:9): [True: 6.66k, False: 16.6k]
  ------------------
   50|  6.66k|		if (tm.tm_year == 0) {
  ------------------
  |  Branch (50:7): [True: 0, False: 6.66k]
  ------------------
   51|      0|			return ISC_R_RANGE;
   52|      0|		}
   53|  6.66k|		tm.tm_year--;
   54|  6.66k|		secs = year_secs(tm.tm_year + 1900);
  ------------------
  |  |   45|  6.66k|#define year_secs(y) ((is_leap(y) ? 366 : 365) * 86400)
  |  |  ------------------
  |  |  |  |   44|  6.66k|#define is_leap(y)   ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (44:24): [True: 1.41k, False: 5.25k]
  |  |  |  |  |  Branch (44:42): [True: 1.41k, False: 0]
  |  |  |  |  |  Branch (44:63): [True: 0, False: 5.25k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   55|  6.66k|		t += secs;
   56|  6.66k|	}
   57|   405k|	while ((secs = year_secs(tm.tm_year + 1900)) <= t) {
  ------------------
  |  |   45|   405k|#define year_secs(y) ((is_leap(y) ? 366 : 365) * 86400)
  |  |  ------------------
  |  |  |  |   44|   405k|#define is_leap(y)   ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (44:24): [True: 98.6k, False: 307k]
  |  |  |  |  |  Branch (44:42): [True: 93.5k, False: 5.09k]
  |  |  |  |  |  Branch (44:63): [True: 5.09k, False: 307k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (57:9): [True: 389k, False: 16.6k]
  ------------------
   58|   389k|		t -= secs;
   59|   389k|		tm.tm_year++;
   60|   389k|		if (tm.tm_year + 1900 > 9999) {
  ------------------
  |  Branch (60:7): [True: 0, False: 389k]
  ------------------
   61|      0|			return ISC_R_RANGE;
   62|      0|		}
   63|   389k|	}
   64|  16.6k|	tm.tm_mon = 0;
   65|  87.2k|	while ((secs = month_secs(tm.tm_mon, tm.tm_year + 1900)) <= t) {
  ------------------
  |  |   46|  87.2k|#define month_secs(m, y) ((days[m] + ((m == 1 && is_leap(y)) ? 1 : 0)) * 86400)
  |  |  ------------------
  |  |  |  |   44|  11.8k|#define is_leap(y)   ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (44:24): [True: 2.66k, False: 9.21k]
  |  |  |  |  |  Branch (44:42): [True: 2.29k, False: 368]
  |  |  |  |  |  Branch (44:63): [True: 368, False: 9.21k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (46:40): [True: 11.8k, False: 75.4k]
  |  |  ------------------
  ------------------
  |  Branch (65:9): [True: 70.6k, False: 16.6k]
  ------------------
   66|  70.6k|		t -= secs;
   67|  70.6k|		tm.tm_mon++;
   68|  70.6k|	}
   69|  16.6k|	tm.tm_mday = 1;
   70|   208k|	while (86400 <= t) {
  ------------------
  |  Branch (70:9): [True: 191k, False: 16.6k]
  ------------------
   71|   191k|		t -= 86400;
   72|   191k|		tm.tm_mday++;
   73|   191k|	}
   74|  16.6k|	tm.tm_hour = 0;
   75|   183k|	while (3600 <= t) {
  ------------------
  |  Branch (75:9): [True: 167k, False: 16.6k]
  ------------------
   76|   167k|		t -= 3600;
   77|   167k|		tm.tm_hour++;
   78|   167k|	}
   79|  16.6k|	tm.tm_min = 0;
   80|   438k|	while (60 <= t) {
  ------------------
  |  Branch (80:9): [True: 422k, False: 16.6k]
  ------------------
   81|   422k|		t -= 60;
   82|   422k|		tm.tm_min++;
   83|   422k|	}
   84|  16.6k|	tm.tm_sec = (int)t;
   85|       |	/* yyyy  mm  dd  HH  MM  SS */
   86|  16.6k|	snprintf(buf, sizeof(buf), "%04d%02d%02d%02d%02d%02d",
   87|  16.6k|		 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour,
   88|  16.6k|		 tm.tm_min, tm.tm_sec);
   89|       |
   90|  16.6k|	isc_buffer_availableregion(target, &region);
   91|  16.6k|	l = strlen(buf);
   92|       |
   93|  16.6k|	if (l > region.length) {
  ------------------
  |  Branch (93:6): [True: 0, False: 16.6k]
  ------------------
   94|      0|		return ISC_R_NOSPACE;
   95|      0|	}
   96|       |
   97|  16.6k|	memmove(region.base, buf, l);
   98|  16.6k|	isc_buffer_add(target, l);
   99|  16.6k|	return ISC_R_SUCCESS;
  100|  16.6k|}
dns_time64_from32:
  103|  16.6k|dns_time64_from32(uint32_t value) {
  104|  16.6k|	isc_stdtime_t now = isc_stdtime_now();
  105|  16.6k|	int64_t start;
  106|  16.6k|	int64_t t;
  107|       |
  108|       |	/*
  109|       |	 * Adjust the time to the closest epoch.  This should be changed
  110|       |	 * to use a 64-bit counterpart to isc_stdtime_now() if one ever
  111|       |	 * is defined, but even the current code is good until the year
  112|       |	 * 2106.
  113|       |	 */
  114|       |
  115|  16.6k|	start = (int64_t)now;
  116|  16.6k|	if (isc_serial_gt(value, now)) {
  ------------------
  |  Branch (116:6): [True: 2.78k, False: 13.8k]
  ------------------
  117|  2.78k|		t = start + (value - now);
  118|  13.8k|	} else {
  119|  13.8k|		t = start - (now - value);
  120|  13.8k|	}
  121|       |
  122|  16.6k|	return t;
  123|  16.6k|}
dns_time32_totext:
  126|  16.6k|dns_time32_totext(uint32_t value, isc_buffer_t *target) {
  127|  16.6k|	return dns_time64_totext(dns_time64_from32(value), target);
  128|  16.6k|}

dns_ttl_totext:
   68|  26.8k|dns_ttl_totext(uint32_t src, bool verbose, bool upcase, isc_buffer_t *target) {
   69|  26.8k|	unsigned int secs, mins, hours, days, weeks, x;
   70|       |
   71|  26.8k|	secs = src % 60;
   72|  26.8k|	src /= 60;
   73|  26.8k|	mins = src % 60;
   74|  26.8k|	src /= 60;
   75|  26.8k|	hours = src % 24;
   76|  26.8k|	src /= 24;
   77|  26.8k|	days = src % 7;
   78|  26.8k|	src /= 7;
   79|  26.8k|	weeks = src;
   80|  26.8k|	src = 0;
   81|  26.8k|	POST(src);
  ------------------
  |  |   74|  26.8k|#define POST(x) (void)(x)
  ------------------
   82|       |
   83|  26.8k|	x = 0;
   84|  26.8k|	if (weeks != 0) {
  ------------------
  |  Branch (84:6): [True: 17.3k, False: 9.51k]
  ------------------
   85|  17.3k|		RETERR(ttlfmt(weeks, "week", verbose, x > 0, target));
  ------------------
  |  |  276|  17.3k|	{                                  \
  |  |  277|  17.3k|		isc_result_t _r = (x);     \
  |  |  278|  17.3k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 17.3k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  17.3k|	}
  ------------------
   86|  17.3k|		x++;
   87|  17.3k|	}
   88|  26.8k|	if (days != 0) {
  ------------------
  |  Branch (88:6): [True: 14.0k, False: 12.8k]
  ------------------
   89|  14.0k|		RETERR(ttlfmt(days, "day", verbose, x > 0, target));
  ------------------
  |  |  276|  14.0k|	{                                  \
  |  |  277|  14.0k|		isc_result_t _r = (x);     \
  |  |  278|  14.0k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 14.0k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  14.0k|	}
  ------------------
   90|  14.0k|		x++;
   91|  14.0k|	}
   92|  26.8k|	if (hours != 0) {
  ------------------
  |  Branch (92:6): [True: 22.2k, False: 4.64k]
  ------------------
   93|  22.2k|		RETERR(ttlfmt(hours, "hour", verbose, x > 0, target));
  ------------------
  |  |  276|  22.2k|	{                                  \
  |  |  277|  22.2k|		isc_result_t _r = (x);     \
  |  |  278|  22.2k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 22.2k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  22.2k|	}
  ------------------
   94|  22.2k|		x++;
   95|  22.2k|	}
   96|  26.8k|	if (mins != 0) {
  ------------------
  |  Branch (96:6): [True: 22.6k, False: 4.27k]
  ------------------
   97|  22.6k|		RETERR(ttlfmt(mins, "minute", verbose, x > 0, target));
  ------------------
  |  |  276|  22.6k|	{                                  \
  |  |  277|  22.6k|		isc_result_t _r = (x);     \
  |  |  278|  22.6k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 22.6k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  22.6k|	}
  ------------------
   98|  22.6k|		x++;
   99|  22.6k|	}
  100|  26.8k|	if (secs != 0 || (weeks == 0 && days == 0 && hours == 0 && mins == 0)) {
  ------------------
  |  Branch (100:6): [True: 19.2k, False: 7.68k]
  |  Branch (100:20): [True: 5.73k, False: 1.95k]
  |  Branch (100:34): [True: 5.50k, False: 228]
  |  Branch (100:47): [True: 3.69k, False: 1.80k]
  |  Branch (100:61): [True: 3.58k, False: 119]
  ------------------
  101|  22.7k|		RETERR(ttlfmt(secs, "second", verbose, x > 0, target));
  ------------------
  |  |  276|  22.7k|	{                                  \
  |  |  277|  22.7k|		isc_result_t _r = (x);     \
  |  |  278|  22.7k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 22.7k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  22.7k|	}
  ------------------
  102|  22.7k|		x++;
  103|  22.7k|	}
  104|  26.8k|	INSIST(x > 0);
  ------------------
  |  |  202|  26.8k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  26.8k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 26.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  26.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  105|       |	/*
  106|       |	 * If only a single unit letter is printed, print it
  107|       |	 * in upper case. (Why?  Because BIND 8 does that.
  108|       |	 * Presumably it has a reason.)
  109|       |	 */
  110|  26.8k|	if (x == 1 && upcase && !verbose) {
  ------------------
  |  Branch (110:6): [True: 4.16k, False: 22.7k]
  |  Branch (110:16): [True: 4.16k, False: 0]
  |  Branch (110:26): [True: 0, False: 4.16k]
  ------------------
  111|      0|		isc_region_t region;
  112|       |		/*
  113|       |		 * The unit letter is the last character in the
  114|       |		 * used region of the buffer.
  115|       |		 */
  116|      0|		isc_buffer_usedregion(target, &region);
  117|      0|		region.base[region.length - 1] =
  118|      0|			isc_ascii_toupper(region.base[region.length - 1]);
  ------------------
  |  |   32|      0|#define isc_ascii_toupper(c) isc__ascii_toupper[(uint8_t)(c)]
  ------------------
  119|      0|	}
  120|  26.8k|	return ISC_R_SUCCESS;
  121|  26.8k|}
ttl.c:ttlfmt:
   41|  99.0k|       isc_buffer_t *target) {
   42|  99.0k|	char tmp[60];
   43|  99.0k|	unsigned int len;
   44|  99.0k|	isc_region_t region;
   45|       |
   46|  99.0k|	if (verbose) {
  ------------------
  |  Branch (46:6): [True: 99.0k, False: 0]
  ------------------
   47|  99.0k|		len = snprintf(tmp, sizeof(tmp), "%s%u %s%s", space ? " " : "",
  ------------------
  |  Branch (47:49): [True: 72.1k, False: 26.8k]
  ------------------
   48|  99.0k|			       t, s, t == 1 ? "" : "s");
  ------------------
  |  Branch (48:17): [True: 2.42k, False: 96.6k]
  ------------------
   49|  99.0k|	} else {
   50|      0|		len = snprintf(tmp, sizeof(tmp), "%u%c", t, s[0]);
   51|      0|	}
   52|       |
   53|  99.0k|	INSIST(len + 1 <= sizeof(tmp));
  ------------------
  |  |  202|  99.0k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  99.0k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 99.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  99.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
   54|  99.0k|	isc_buffer_availableregion(target, &region);
   55|  99.0k|	if (len > region.length) {
  ------------------
  |  Branch (55:6): [True: 0, False: 99.0k]
  ------------------
   56|      0|		return ISC_R_NOSPACE;
   57|      0|	}
   58|  99.0k|	memmove(region.base, tmp, len);
   59|  99.0k|	isc_buffer_add(target, len);
   60|       |
   61|  99.0k|	return ISC_R_SUCCESS;
   62|  99.0k|}

dns__zone_keymgmt_initialize:
16143|      2|dns__zone_keymgmt_initialize(void) {
16144|  2.05k|	for (size_t idx = 0; idx < ARRAY_SIZE(keymgmt_buckets_g); ++idx) {
  ------------------
  |  |   98|  2.05k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (16144:23): [True: 2.04k, False: 2]
  ------------------
16145|  2.04k|		isc_mutex_init(&keymgmt_buckets_g[idx].lock);
  ------------------
  |  |   68|  2.04k|#define isc_mutex_init(mp)    isc__mutex_init(mp)
  |  |  ------------------
  |  |  |  |   79|  2.04k|	{                                                                 \
  |  |  |  |   80|  2.04k|		int _ret = pthread_mutex_init(mp, &isc__mutex_init_attr); \
  |  |  |  |   81|  2.04k|		PTHREADS_RUNTIME_CHECK(pthread_mutex_init, _ret);         \
  |  |  |  |  ------------------
  |  |  |  |  |  |  288|  2.04k|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2.04k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  ------------------
  |  |  |  |   82|  2.04k|	}
  |  |  ------------------
  ------------------
16146|  2.04k|	}
16147|      2|}

isc_base32hexnp_totext:
  125|  4.19k|		       const char *wordbreak, isc_buffer_t *target) {
  126|  4.19k|	return base32_totext(source, wordlength, wordbreak, target, base32hex,
  127|  4.19k|			     0);
  128|  4.19k|}
isc_base32hexnp_decoderegion:
  394|  5.66k|isc_base32hexnp_decoderegion(isc_region_t *source, isc_buffer_t *target) {
  395|       |	return base32_decoderegion(source, base32hex, false, target);
  396|  5.66k|}
base32.c:base32_totext:
   45|  4.19k|	      isc_buffer_t *target, const char base[], char pad) {
   46|  4.19k|	char buf[9];
   47|  4.19k|	unsigned int loops = 0;
   48|       |
   49|  4.19k|	if (wordlength >= 0 && wordlength < 8) {
  ------------------
  |  Branch (49:6): [True: 4.19k, False: 0]
  |  Branch (49:25): [True: 4.19k, False: 0]
  ------------------
   50|  4.19k|		wordlength = 8;
   51|  4.19k|	}
   52|       |
   53|  4.19k|	memset(buf, 0, sizeof(buf));
   54|  9.52k|	while (source->length > 0) {
  ------------------
  |  Branch (54:9): [True: 8.01k, False: 1.50k]
  ------------------
   55|  8.01k|		buf[0] = base[((source->base[0] >> 3) & 0x1f)]; /* 5 + */
   56|  8.01k|		if (source->length == 1) {
  ------------------
  |  Branch (56:7): [True: 789, False: 7.23k]
  ------------------
   57|    789|			buf[1] = base[(source->base[0] << 2) & 0x1c];
   58|    789|			buf[2] = buf[3] = buf[4] = pad;
   59|    789|			buf[5] = buf[6] = buf[7] = pad;
   60|    789|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    789|	{                                  \
  |  |  277|    789|		isc_result_t _r = (x);     \
  |  |  278|    789|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 789]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    789|	}
  ------------------
   61|    789|			break;
   62|    789|		}
   63|  7.23k|		buf[1] = base[((source->base[0] << 2) & 0x1c) | /* 3 = 8 */
   64|  7.23k|			      ((source->base[1] >> 6) & 0x03)]; /* 2 + */
   65|  7.23k|		buf[2] = base[((source->base[1] >> 1) & 0x1f)]; /* 5 + */
   66|  7.23k|		if (source->length == 2) {
  ------------------
  |  Branch (66:7): [True: 860, False: 6.37k]
  ------------------
   67|    860|			buf[3] = base[(source->base[1] << 4) & 0x10];
   68|    860|			buf[4] = buf[5] = buf[6] = buf[7] = pad;
   69|    860|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    860|	{                                  \
  |  |  277|    860|		isc_result_t _r = (x);     \
  |  |  278|    860|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 860]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    860|	}
  ------------------
   70|    860|			break;
   71|    860|		}
   72|  6.37k|		buf[3] = base[((source->base[1] << 4) & 0x10) | /* 1 = 8 */
   73|  6.37k|			      ((source->base[2] >> 4) & 0x0f)]; /* 4 + */
   74|  6.37k|		if (source->length == 3) {
  ------------------
  |  Branch (74:7): [True: 386, False: 5.98k]
  ------------------
   75|    386|			buf[4] = base[(source->base[2] << 1) & 0x1e];
   76|    386|			buf[5] = buf[6] = buf[7] = pad;
   77|    386|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    386|	{                                  \
  |  |  277|    386|		isc_result_t _r = (x);     \
  |  |  278|    386|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 386]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    386|	}
  ------------------
   78|    386|			break;
   79|    386|		}
   80|  5.98k|		buf[4] = base[((source->base[2] << 1) & 0x1e) | /* 4 = 8 */
   81|  5.98k|			      ((source->base[3] >> 7) & 0x01)]; /* 1 + */
   82|  5.98k|		buf[5] = base[((source->base[3] >> 2) & 0x1f)]; /* 5 + */
   83|  5.98k|		if (source->length == 4) {
  ------------------
  |  Branch (83:7): [True: 662, False: 5.32k]
  ------------------
   84|    662|			buf[6] = base[(source->base[3] << 3) & 0x18];
   85|    662|			buf[7] = pad;
   86|    662|			RETERR(str_totext(buf, target));
  ------------------
  |  |  276|    662|	{                                  \
  |  |  277|    662|		isc_result_t _r = (x);     \
  |  |  278|    662|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 662]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|    662|	}
  ------------------
   87|    662|			break;
   88|    662|		}
   89|  5.32k|		buf[6] = base[((source->base[3] << 3) & 0x18) | /* 2 = 8 */
   90|  5.32k|			      ((source->base[4] >> 5) & 0x07)]; /* 3 + */
   91|  5.32k|		buf[7] = base[source->base[4] & 0x1f];		/* 5 = 8 */
   92|  5.32k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  5.32k|	{                                  \
  |  |  277|  5.32k|		isc_result_t _r = (x);     \
  |  |  278|  5.32k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 5.32k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  5.32k|	}
  ------------------
   93|  5.32k|		isc_region_consume(source, 5);
  ------------------
  |  |   50|  5.32k|	do {                              \
  |  |   51|  5.32k|		isc_region_t *_r = (r);   \
  |  |   52|  5.32k|		unsigned int  _l = (l);   \
  |  |   53|  5.32k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  5.32k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  5.32k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 5.32k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  5.32k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  5.32k|		_r->base += _l;           \
  |  |   55|  5.32k|		_r->length -= _l;         \
  |  |   56|  5.32k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 5.32k]
  |  |  ------------------
  ------------------
   94|       |
   95|  5.32k|		loops++;
   96|  5.32k|		if (source->length != 0 && wordlength >= 0 &&
  ------------------
  |  Branch (96:7): [True: 3.82k, False: 1.50k]
  |  Branch (96:30): [True: 3.82k, False: 0]
  ------------------
   97|  3.82k|		    (int)((loops + 1) * 8) >= wordlength)
  ------------------
  |  Branch (97:7): [True: 3.82k, False: 0]
  ------------------
   98|  3.82k|		{
   99|  3.82k|			loops = 0;
  100|  3.82k|			RETERR(str_totext(wordbreak, target));
  ------------------
  |  |  276|  3.82k|	{                                  \
  |  |  277|  3.82k|		isc_result_t _r = (x);     \
  |  |  278|  3.82k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 3.82k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  3.82k|	}
  ------------------
  101|  3.82k|		}
  102|  5.32k|	}
  103|  4.19k|	if (source->length > 0) {
  ------------------
  |  Branch (103:6): [True: 2.69k, False: 1.50k]
  ------------------
  104|  2.69k|		isc_region_consume(source, source->length);
  ------------------
  |  |   50|  2.69k|	do {                              \
  |  |   51|  2.69k|		isc_region_t *_r = (r);   \
  |  |   52|  2.69k|		unsigned int  _l = (l);   \
  |  |   53|  2.69k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  2.69k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  2.69k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 2.69k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  2.69k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  2.69k|		_r->base += _l;           \
  |  |   55|  2.69k|		_r->length -= _l;         \
  |  |   56|  2.69k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 2.69k]
  |  |  ------------------
  ------------------
  105|  2.69k|	}
  106|  4.19k|	return ISC_R_SUCCESS;
  107|  4.19k|}
base32.c:str_totext:
  399|  11.8k|str_totext(const char *source, isc_buffer_t *target) {
  400|  11.8k|	unsigned int l;
  401|  11.8k|	isc_region_t region;
  402|       |
  403|  11.8k|	isc_buffer_availableregion(target, &region);
  404|  11.8k|	l = strlen(source);
  405|       |
  406|  11.8k|	if (l > region.length) {
  ------------------
  |  Branch (406:6): [True: 0, False: 11.8k]
  ------------------
  407|      0|		return ISC_R_NOSPACE;
  408|      0|	}
  409|       |
  410|  11.8k|	memmove(region.base, source, l);
  411|  11.8k|	isc_buffer_add(target, l);
  412|  11.8k|	return ISC_R_SUCCESS;
  413|  11.8k|}
base32.c:base32_decode_char:
  146|  58.2k|base32_decode_char(base32_decode_ctx_t *ctx, int c) {
  147|  58.2k|	const char *s;
  148|  58.2k|	unsigned int last;
  149|       |
  150|  58.2k|	if (ctx->seen_end) {
  ------------------
  |  Branch (150:6): [True: 0, False: 58.2k]
  ------------------
  151|      0|		return ISC_R_BADBASE32;
  152|      0|	}
  153|  58.2k|	if ((s = strchr(ctx->base, c)) == NULL) {
  ------------------
  |  Branch (153:6): [True: 6, False: 58.2k]
  ------------------
  154|      6|		return ISC_R_BADBASE32;
  155|      6|	}
  156|  58.2k|	last = (unsigned int)(s - ctx->base);
  157|       |
  158|       |	/*
  159|       |	 * Handle lower case.
  160|       |	 */
  161|  58.2k|	if (last > 32) {
  ------------------
  |  Branch (161:6): [True: 1.81k, False: 56.4k]
  ------------------
  162|  1.81k|		last -= 33;
  163|  1.81k|	}
  164|       |
  165|       |	/*
  166|       |	 * Check that padding is contiguous.
  167|       |	 */
  168|  58.2k|	if (last != 32 && ctx->seen_32 != 0) {
  ------------------
  |  Branch (168:6): [True: 52.3k, False: 5.86k]
  |  Branch (168:20): [True: 0, False: 52.3k]
  ------------------
  169|      0|		return ISC_R_BADBASE32;
  170|      0|	}
  171|       |
  172|       |	/*
  173|       |	 * If padding is not permitted flag padding as a error.
  174|       |	 */
  175|  58.2k|	if (last == 32 && !ctx->pad) {
  ------------------
  |  Branch (175:6): [True: 5.86k, False: 52.3k]
  |  Branch (175:20): [True: 3, False: 5.86k]
  ------------------
  176|      3|		return ISC_R_BADBASE32;
  177|      3|	}
  178|       |
  179|       |	/*
  180|       |	 * Check that padding starts at the right place and that
  181|       |	 * bits that should be zero are.
  182|       |	 * Record how many significant bytes in answer (seen_32).
  183|       |	 */
  184|  58.2k|	if (last == 32 && ctx->seen_32 == 0) {
  ------------------
  |  Branch (184:6): [True: 5.86k, False: 52.3k]
  |  Branch (184:20): [True: 1.48k, False: 4.37k]
  ------------------
  185|  1.48k|		switch (ctx->digits) {
  ------------------
  |  Branch (185:11): [True: 1.48k, False: 0]
  ------------------
  186|      0|		case 0:
  ------------------
  |  Branch (186:3): [True: 0, False: 1.48k]
  ------------------
  187|      2|		case 1:
  ------------------
  |  Branch (187:3): [True: 2, False: 1.48k]
  ------------------
  188|      2|			return ISC_R_BADBASE32;
  189|    591|		case 2:
  ------------------
  |  Branch (189:3): [True: 591, False: 892]
  ------------------
  190|    591|			if ((ctx->val[1] & 0x03) != 0) {
  ------------------
  |  Branch (190:8): [True: 1, False: 590]
  ------------------
  191|      1|				return ISC_R_BADBASE32;
  192|      1|			}
  193|    590|			ctx->seen_32 = 1;
  194|    590|			break;
  195|      1|		case 3:
  ------------------
  |  Branch (195:3): [True: 1, False: 1.48k]
  ------------------
  196|      1|			return ISC_R_BADBASE32;
  197|    334|		case 4:
  ------------------
  |  Branch (197:3): [True: 334, False: 1.14k]
  ------------------
  198|    334|			if ((ctx->val[3] & 0x0f) != 0) {
  ------------------
  |  Branch (198:8): [True: 2, False: 332]
  ------------------
  199|      2|				return ISC_R_BADBASE32;
  200|      2|			}
  201|    332|			ctx->seen_32 = 2;
  202|    332|			break;
  203|    217|		case 5:
  ------------------
  |  Branch (203:3): [True: 217, False: 1.26k]
  ------------------
  204|    217|			if ((ctx->val[4] & 0x01) != 0) {
  ------------------
  |  Branch (204:8): [True: 1, False: 216]
  ------------------
  205|      1|				return ISC_R_BADBASE32;
  206|      1|			}
  207|    216|			ctx->seen_32 = 3;
  208|    216|			break;
  209|      1|		case 6:
  ------------------
  |  Branch (209:3): [True: 1, False: 1.48k]
  ------------------
  210|      1|			return ISC_R_BADBASE32;
  211|    337|		case 7:
  ------------------
  |  Branch (211:3): [True: 337, False: 1.14k]
  ------------------
  212|    337|			if ((ctx->val[6] & 0x07) != 0) {
  ------------------
  |  Branch (212:8): [True: 1, False: 336]
  ------------------
  213|      1|				return ISC_R_BADBASE32;
  214|      1|			}
  215|    336|			ctx->seen_32 = 4;
  216|    336|			break;
  217|  1.48k|		}
  218|  1.48k|	}
  219|       |
  220|       |	/*
  221|       |	 * Zero fill pad values.
  222|       |	 */
  223|  58.2k|	ctx->val[ctx->digits++] = (last == 32) ? 0 : last;
  ------------------
  |  Branch (223:28): [True: 5.85k, False: 52.3k]
  ------------------
  224|       |
  225|  58.2k|	if (ctx->digits == 8) {
  ------------------
  |  Branch (225:6): [True: 7.27k, False: 50.9k]
  ------------------
  226|  7.27k|		int n = 5;
  227|  7.27k|		unsigned char buf[5];
  228|       |
  229|  7.27k|		if (ctx->seen_32 != 0) {
  ------------------
  |  Branch (229:7): [True: 1.47k, False: 5.79k]
  ------------------
  230|  1.47k|			ctx->seen_end = true;
  231|  1.47k|			n = ctx->seen_32;
  232|  1.47k|		}
  233|  7.27k|		buf[0] = (ctx->val[0] << 3) | (ctx->val[1] >> 2);
  234|  7.27k|		buf[1] = (ctx->val[1] << 6) | (ctx->val[2] << 1) |
  235|  7.27k|			 (ctx->val[3] >> 4);
  236|  7.27k|		buf[2] = (ctx->val[3] << 4) | (ctx->val[4] >> 1);
  237|  7.27k|		buf[3] = (ctx->val[4] << 7) | (ctx->val[5] << 2) |
  238|  7.27k|			 (ctx->val[6] >> 3);
  239|  7.27k|		buf[4] = (ctx->val[6] << 5) | (ctx->val[7]);
  240|  7.27k|		RETERR(mem_tobuffer(ctx->target, buf, n));
  ------------------
  |  |  276|  7.27k|	{                                  \
  |  |  277|  7.27k|		isc_result_t _r = (x);     \
  |  |  278|  7.27k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 7.27k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  7.27k|	}
  ------------------
  241|  7.27k|		if (ctx->length >= 0) {
  ------------------
  |  Branch (241:7): [True: 0, False: 7.27k]
  ------------------
  242|      0|			if (n > ctx->length) {
  ------------------
  |  Branch (242:8): [True: 0, False: 0]
  ------------------
  243|      0|				return ISC_R_BADBASE32;
  244|      0|			} else {
  245|      0|				ctx->length -= n;
  246|      0|			}
  247|      0|		}
  248|  7.27k|		ctx->digits = 0;
  249|  7.27k|	}
  250|  58.2k|	return ISC_R_SUCCESS;
  251|  58.2k|}
base32.c:mem_tobuffer:
  416|  7.27k|mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length) {
  417|  7.27k|	isc_region_t tr;
  418|       |
  419|  7.27k|	isc_buffer_availableregion(target, &tr);
  420|  7.27k|	if (length > tr.length) {
  ------------------
  |  Branch (420:6): [True: 0, False: 7.27k]
  ------------------
  421|      0|		return ISC_R_NOSPACE;
  422|      0|	}
  423|  7.27k|	memmove(tr.base, base, length);
  424|  7.27k|	isc_buffer_add(target, length);
  425|  7.27k|	return ISC_R_SUCCESS;
  426|  7.27k|}
base32.c:base32_decode_finish:
  254|  5.65k|base32_decode_finish(base32_decode_ctx_t *ctx) {
  255|  5.65k|	if (ctx->length > 0) {
  ------------------
  |  Branch (255:6): [True: 0, False: 5.65k]
  ------------------
  256|      0|		return ISC_R_UNEXPECTEDEND;
  257|      0|	}
  258|       |	/*
  259|       |	 * Add missing padding if required.
  260|       |	 */
  261|  5.65k|	if (!ctx->pad && ctx->digits != 0) {
  ------------------
  |  Branch (261:6): [True: 5.65k, False: 0]
  |  Branch (261:19): [True: 1.48k, False: 4.17k]
  ------------------
  262|  1.48k|		ctx->pad = true;
  263|  5.86k|		do {
  264|  5.86k|			RETERR(base32_decode_char(ctx, '='));
  ------------------
  |  |  276|  5.86k|	{                                  \
  |  |  277|  5.86k|		isc_result_t _r = (x);     \
  |  |  278|  5.86k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 9, False: 5.85k]
  |  |  ------------------
  |  |  279|      9|			return ((_r));     \
  |  |  280|      9|		}                          \
  |  |  281|  5.86k|	}
  ------------------
  265|  5.85k|		} while (ctx->digits != 0);
  ------------------
  |  Branch (265:12): [True: 4.37k, False: 1.47k]
  ------------------
  266|  1.48k|	}
  267|  5.64k|	if (ctx->digits != 0) {
  ------------------
  |  Branch (267:6): [True: 0, False: 5.64k]
  ------------------
  268|      0|		return ISC_R_BADBASE32;
  269|      0|	}
  270|  5.64k|	return ISC_R_SUCCESS;
  271|  5.64k|}
base32.c:base32_decoderegion:
  369|  5.66k|		    isc_buffer_t *target) {
  370|  5.66k|	base32_decode_ctx_t ctx = {
  371|  5.66k|		.length = -1, .base = base, .target = target, .pad = pad
  372|  5.66k|	};
  373|       |
  374|  58.0k|	while (source->length != 0) {
  ------------------
  |  Branch (374:9): [True: 52.3k, False: 5.65k]
  ------------------
  375|  52.3k|		int c = *source->base;
  376|  52.3k|		RETERR(base32_decode_char(&ctx, c));
  ------------------
  |  |  276|  52.3k|	{                                  \
  |  |  277|  52.3k|		isc_result_t _r = (x);     \
  |  |  278|  52.3k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 9, False: 52.3k]
  |  |  ------------------
  |  |  279|      9|			return ((_r));     \
  |  |  280|      9|		}                          \
  |  |  281|  52.3k|	}
  ------------------
  377|  52.3k|		isc_region_consume(source, 1);
  ------------------
  |  |   50|  52.3k|	do {                              \
  |  |   51|  52.3k|		isc_region_t *_r = (r);   \
  |  |   52|  52.3k|		unsigned int  _l = (l);   \
  |  |   53|  52.3k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  52.3k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  52.3k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 52.3k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  52.3k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  52.3k|		_r->base += _l;           \
  |  |   55|  52.3k|		_r->length -= _l;         \
  |  |   56|  52.3k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 52.3k]
  |  |  ------------------
  ------------------
  378|  52.3k|	}
  379|  5.65k|	RETERR(base32_decode_finish(&ctx));
  ------------------
  |  |  276|  5.65k|	{                                  \
  |  |  277|  5.65k|		isc_result_t _r = (x);     \
  |  |  278|  5.65k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 9, False: 5.64k]
  |  |  ------------------
  |  |  279|      9|			return ((_r));     \
  |  |  280|      9|		}                          \
  |  |  281|  5.65k|	}
  ------------------
  380|  5.64k|	return ISC_R_SUCCESS;
  381|  5.65k|}

isc_base64_totext:
   41|  42.9k|		  isc_buffer_t *target) {
   42|  42.9k|	char buf[5];
   43|  42.9k|	unsigned int loops = 0;
   44|       |
   45|  42.9k|	if (wordlength < 4) {
  ------------------
  |  Branch (45:6): [True: 7.30k, False: 35.6k]
  ------------------
   46|  7.30k|		wordlength = 4;
   47|  7.30k|	}
   48|       |
   49|  42.9k|	memset(buf, 0, sizeof(buf));
   50|  1.19M|	while (source->length > 2) {
  ------------------
  |  Branch (50:9): [True: 1.15M, False: 42.9k]
  ------------------
   51|  1.15M|		buf[0] = base64[(source->base[0] >> 2) & 0x3f];
   52|  1.15M|		buf[1] = base64[((source->base[0] << 4) & 0x30) |
   53|  1.15M|				((source->base[1] >> 4) & 0x0f)];
   54|  1.15M|		buf[2] = base64[((source->base[1] << 2) & 0x3c) |
   55|  1.15M|				((source->base[2] >> 6) & 0x03)];
   56|  1.15M|		buf[3] = base64[source->base[2] & 0x3f];
   57|  1.15M|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.15M|	{                                  \
  |  |  277|  1.15M|		isc_result_t _r = (x);     \
  |  |  278|  1.15M|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.15M]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.15M|	}
  ------------------
   58|  1.15M|		isc_region_consume(source, 3);
  ------------------
  |  |   50|  1.15M|	do {                              \
  |  |   51|  1.15M|		isc_region_t *_r = (r);   \
  |  |   52|  1.15M|		unsigned int  _l = (l);   \
  |  |   53|  1.15M|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.15M|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.15M|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.15M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.15M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.15M|		_r->base += _l;           \
  |  |   55|  1.15M|		_r->length -= _l;         \
  |  |   56|  1.15M|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.15M]
  |  |  ------------------
  ------------------
   59|       |
   60|  1.15M|		loops++;
   61|  1.15M|		if (source->length != 0 && (int)((loops + 1) * 4) >= wordlength)
  ------------------
  |  Branch (61:7): [True: 1.14M, False: 7.93k]
  |  Branch (61:30): [True: 98.4k, False: 1.04M]
  ------------------
   62|  98.4k|		{
   63|  98.4k|			loops = 0;
   64|  98.4k|			RETERR(str_totext(wordbreak, target));
  ------------------
  |  |  276|  98.4k|	{                                  \
  |  |  277|  98.4k|		isc_result_t _r = (x);     \
  |  |  278|  98.4k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 98.4k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  98.4k|	}
  ------------------
   65|  98.4k|		}
   66|  1.15M|	}
   67|  42.9k|	if (source->length == 2) {
  ------------------
  |  Branch (67:6): [True: 8.95k, False: 34.0k]
  ------------------
   68|  8.95k|		buf[0] = base64[(source->base[0] >> 2) & 0x3f];
   69|  8.95k|		buf[1] = base64[((source->base[0] << 4) & 0x30) |
   70|  8.95k|				((source->base[1] >> 4) & 0x0f)];
   71|  8.95k|		buf[2] = base64[((source->base[1] << 2) & 0x3c)];
   72|  8.95k|		buf[3] = '=';
   73|  8.95k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  8.95k|	{                                  \
  |  |  277|  8.95k|		isc_result_t _r = (x);     \
  |  |  278|  8.95k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 8.95k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  8.95k|	}
  ------------------
   74|  8.95k|		isc_region_consume(source, 2);
  ------------------
  |  |   50|  8.95k|	do {                              \
  |  |   51|  8.95k|		isc_region_t *_r = (r);   \
  |  |   52|  8.95k|		unsigned int  _l = (l);   \
  |  |   53|  8.95k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  8.95k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  8.95k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 8.95k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  8.95k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  8.95k|		_r->base += _l;           \
  |  |   55|  8.95k|		_r->length -= _l;         \
  |  |   56|  8.95k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 8.95k]
  |  |  ------------------
  ------------------
   75|  34.0k|	} else if (source->length == 1) {
  ------------------
  |  Branch (75:13): [True: 24.2k, False: 9.78k]
  ------------------
   76|  24.2k|		buf[0] = base64[(source->base[0] >> 2) & 0x3f];
   77|  24.2k|		buf[1] = base64[((source->base[0] << 4) & 0x30)];
   78|  24.2k|		buf[2] = buf[3] = '=';
   79|  24.2k|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  24.2k|	{                                  \
  |  |  277|  24.2k|		isc_result_t _r = (x);     \
  |  |  278|  24.2k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 24.2k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  24.2k|	}
  ------------------
   80|  24.2k|		isc_region_consume(source, 1);
  ------------------
  |  |   50|  24.2k|	do {                              \
  |  |   51|  24.2k|		isc_region_t *_r = (r);   \
  |  |   52|  24.2k|		unsigned int  _l = (l);   \
  |  |   53|  24.2k|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  24.2k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  24.2k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 24.2k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  24.2k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  24.2k|		_r->base += _l;           \
  |  |   55|  24.2k|		_r->length -= _l;         \
  |  |   56|  24.2k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 24.2k]
  |  |  ------------------
  ------------------
   81|  24.2k|	}
   82|  42.9k|	return ISC_R_SUCCESS;
   83|  42.9k|}
base64.c:str_totext:
  236|  1.28M|str_totext(const char *source, isc_buffer_t *target) {
  237|  1.28M|	unsigned int l;
  238|  1.28M|	isc_region_t region;
  239|       |
  240|  1.28M|	isc_buffer_availableregion(target, &region);
  241|  1.28M|	l = strlen(source);
  242|       |
  243|  1.28M|	if (l > region.length) {
  ------------------
  |  Branch (243:6): [True: 0, False: 1.28M]
  ------------------
  244|      0|		return ISC_R_NOSPACE;
  245|      0|	}
  246|       |
  247|  1.28M|	memmove(region.base, source, l);
  248|  1.28M|	isc_buffer_add(target, l);
  249|  1.28M|	return ISC_R_SUCCESS;
  250|  1.28M|}

isc_hmac:
  247|     12|	 unsigned int *digestlen) {
  248|     12|	EVP_MAC_CTX *ctx;
  249|     12|	size_t maclen;
  250|       |
  251|     12|	REQUIRE(type < ISC_MD_MAX);
  ------------------
  |  |  198|     12|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     12|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     12|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  252|       |
  253|     12|	if (isc__crypto_md[type] == NULL) {
  ------------------
  |  Branch (253:6): [True: 0, False: 12]
  ------------------
  254|      0|		return ISC_R_NOTIMPLEMENTED;
  255|      0|	}
  256|       |
  257|     12|	ctx = EVP_MAC_CTX_new(evp_hmac);
  258|     12|	RUNTIME_CHECK(ctx != NULL);
  ------------------
  |  |  245|     12|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 12, False: 0]
  |  |  ------------------
  ------------------
  259|       |
  260|     12|	if (EVP_MAC_init(ctx, key, keylen, md_to_hmac_params[type]) != 1) {
  ------------------
  |  Branch (260:6): [True: 0, False: 12]
  ------------------
  261|      0|		goto fail;
  262|      0|	}
  263|       |
  264|     12|	if (EVP_MAC_update(ctx, buf, len) != 1) {
  ------------------
  |  Branch (264:6): [True: 0, False: 12]
  ------------------
  265|      0|		goto fail;
  266|      0|	}
  267|       |
  268|     12|	maclen = *digestlen;
  269|     12|	if (EVP_MAC_final(ctx, digest, &maclen, maclen) != 1) {
  ------------------
  |  Branch (269:6): [True: 0, False: 12]
  ------------------
  270|      0|		goto fail;
  271|      0|	}
  272|       |
  273|     12|	*digestlen = maclen;
  274|       |
  275|     12|	EVP_MAC_CTX_free(ctx);
  276|     12|	return ISC_R_SUCCESS;
  277|       |
  278|      0|fail:
  279|      0|	ERR_clear_error();
  280|      0|	EVP_MAC_CTX_free(ctx);
  281|      0|	return ISC_R_CRYPTOFAILURE;
  282|     12|}
isc_crypto_fips_mode:
  910|      2|isc_crypto_fips_mode(void) {
  911|       |	return EVP_default_properties_is_fips_enabled(NULL) != 0;
  912|      2|}
isc__crypto_initialize:
  964|      2|isc__crypto_initialize(void) {
  965|       |	/*
  966|       |	 * We call OPENSSL_cleanup() manually, in a correct order, thus disable
  967|       |	 * the automatic atexit() handler.
  968|       |	 */
  969|      2|	uint64_t opts = OPENSSL_INIT_LOAD_CONFIG | OPENSSL_INIT_NO_ATEXIT;
  970|       |
  971|      2|	RUNTIME_CHECK(OPENSSL_init_ssl(opts, NULL) == 1);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  972|       |
  973|      2|	register_algorithms();
  974|       |
  975|       |#if defined(ENABLE_FIPS_MODE)
  976|       |	if (isc_crypto_fips_enable() != ISC_R_SUCCESS) {
  977|       |		ERR_clear_error();
  978|       |		FATAL_ERROR("Failed to toggle FIPS mode but is "
  979|       |			    "required for this build");
  980|       |	}
  981|       |#endif
  982|       |
  983|       |	/* Protect ourselves against unseeded PRNG */
  984|      2|	if (RAND_status() != 1) {
  ------------------
  |  Branch (984:6): [True: 0, False: 2]
  ------------------
  985|      0|		isc_ossl_wrap_logged_toresult(
  ------------------
  |  |   26|      0|	isc__ossl_wrap_logged_toresult(category, module, funcname, fallback, \
  |  |   27|      0|				       __FILE__, __LINE__)
  ------------------
  986|      0|			ISC_LOGCATEGORY_GENERAL, ISC_LOGMODULE_CRYPTO,
  987|      0|			"RAND_status", ISC_R_CRYPTOFAILURE);
  988|      0|		FATAL_ERROR("OpenSSL pseudorandom number generator "
  ------------------
  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  989|      0|			    "cannot be initialized (see the `PRNG not "
  990|      0|			    "seeded' message in the OpenSSL FAQ)");
  991|      0|	}
  992|      2|}
ossl3.c:register_algorithms:
  133|      2|register_algorithms(void) {
  134|      2|	if (!isc_crypto_fips_mode()) {
  ------------------
  |  Branch (134:6): [True: 2, False: 0]
  ------------------
  135|      2|		md_register_algorithm(MD5);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  136|       |
  137|      2|		INSIST(evp_chacha20poly1305 == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  138|      2|		evp_chacha20poly1305 =
  139|      2|			EVP_CIPHER_fetch(NULL, "ChaCha20-Poly1305", NULL);
  140|       |
  141|      2|		INSIST(evp_chacha20 == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  142|      2|		evp_chacha20 = EVP_CIPHER_fetch(NULL, "ChaCha20", NULL);
  143|      2|	}
  144|       |
  145|      2|	md_register_algorithm(SHA1);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  146|      2|	md_register_algorithm(SHA224);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  147|      2|	md_register_algorithm(SHA256);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  148|      2|	md_register_algorithm(SHA384);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  149|      2|	md_register_algorithm(SHA512);
  ------------------
  |  |  124|      2|	{                                                                      \
  |  |  125|      2|		REQUIRE(isc__crypto_md[ISC_MD_##alg] == NULL);                 \
  |  |  ------------------
  |  |  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      2|		isc__crypto_md[ISC_MD_##alg] = EVP_MD_fetch(NULL, #alg, NULL); \
  |  |  127|      2|		if (isc__crypto_md[ISC_MD_##alg] == NULL) {                    \
  |  |  ------------------
  |  |  |  Branch (127:7): [True: 0, False: 2]
  |  |  ------------------
  |  |  128|      0|			ERR_clear_error();                                     \
  |  |  129|      0|		}                                                              \
  |  |  130|      2|	}
  ------------------
  150|       |
  151|      2|	INSIST(evp_aes_128_gcm == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  152|      2|	evp_aes_128_gcm = EVP_CIPHER_fetch(NULL, "AES-128-GCM", NULL);
  153|       |
  154|      2|	INSIST(evp_aes_256_gcm == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  155|      2|	evp_aes_256_gcm = EVP_CIPHER_fetch(NULL, "AES-256-GCM", NULL);
  156|       |
  157|      2|	INSIST(evp_aes_128_ctr == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  158|      2|	evp_aes_128_ctr = EVP_CIPHER_fetch(NULL, "AES-128-CTR", NULL);
  159|       |
  160|      2|	INSIST(evp_aes_256_ctr == NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  161|      2|	evp_aes_256_ctr = EVP_CIPHER_fetch(NULL, "AES-256-CTR", NULL);
  162|       |
  163|       |	/* We _must_ have HMAC */
  164|      2|	evp_hmac = EVP_MAC_fetch(NULL, "HMAC", NULL);
  165|      2|	if (evp_hmac == NULL) {
  ------------------
  |  Branch (165:6): [True: 0, False: 2]
  ------------------
  166|      0|		FATAL_ERROR("OpenSSL failed to find an HMAC implementation. "
  ------------------
  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  167|      0|			    "Please make sure the default provider has an "
  168|      0|			    "EVP_MAC-HMAC implementation");
  169|      0|	}
  170|       |
  171|      2|	evp_tls_1_3_kdf = EVP_KDF_fetch(NULL, OSSL_KDF_NAME_TLS1_3_KDF, NULL);
  172|      2|	if (evp_tls_1_3_kdf == NULL) {
  ------------------
  |  Branch (172:6): [True: 0, False: 2]
  ------------------
  173|      0|		FATAL_ERROR(
  ------------------
  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  174|      0|			"OpenSSL failed to find an TLS 1.3 KDF implementation."
  175|      0|			"Please make sure the default provider has an "
  176|      0|			"EVP_KDF-TLS13_KDF implementation");
  177|      0|	}
  178|       |
  179|      2|	evp_hkdf = EVP_KDF_fetch(NULL, OSSL_KDF_NAME_HKDF, NULL);
  180|      2|	if (evp_hkdf == NULL) {
  ------------------
  |  Branch (180:6): [True: 0, False: 2]
  ------------------
  181|      0|		FATAL_ERROR("OpenSSL failed to find an HKDF implementation. "
  ------------------
  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
  182|      0|			    "Please make sure the default provider has an "
  183|      0|			    "EVP_KDF-HKDF implementation");
  184|      0|	}
  185|       |
  186|      2|	ERR_clear_error();
  187|       |
  188|      2|	return ISC_R_SUCCESS;
  189|      2|}

isc__hash_initialize:
   30|      2|isc__hash_initialize(void) {
   31|       |	/*
   32|       |	 * Set a constant key to help in problem reproduction should
   33|       |	 * fuzzing find a crash or a hang.
   34|       |	 */
   35|      2|	uint8_t key[16] = { 1 };
   36|       |#if !FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
   37|       |	isc_random_buf(key, sizeof(key));
   38|       |#endif /* if FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION */
   39|      2|	STATIC_ASSERT(sizeof(key) >= sizeof(isc_hash_key),
  ------------------
  |  |  154|      2|#define STATIC_ASSERT(cond, msg) _Static_assert(cond, msg)
  ------------------
   40|      2|		      "sizeof(key) < sizeof(isc_hash_key)");
   41|      2|	memmove(isc_hash_key, key, sizeof(isc_hash_key));
   42|      2|}
isc_hash32_init:
   57|   491k|isc_hash32_init(isc_hash32_t *restrict state) {
   58|   491k|	isc_halfsiphash13_init(state, isc_hash_key);
   59|   491k|}
isc_hash32_hash:
   63|   962k|		const size_t length, const bool case_sensitive) {
   64|   962k|	REQUIRE(length == 0 || data != NULL);
  ------------------
  |  |  198|   962k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.92M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 962k]
  |  |  |  |  |  Branch (42:11): [True: 962k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   962k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   65|       |
   66|   962k|	isc_halfsiphash13_hash(state, data, length, case_sensitive);
   67|   962k|}
isc_hash32_finalize:
   70|   491k|isc_hash32_finalize(isc_hash32_t *restrict state) {
   71|   491k|	uint32_t hval;
   72|       |
   73|   491k|	isc_halfsiphash13_finalize(state, (uint8_t *)&hval);
   74|       |
   75|   491k|	return hval;
   76|   491k|}

isc_hashmap_create:
  209|  30.5k|isc_hashmap_create(isc_mem_t *mctx, uint8_t bits, isc_hashmap_t **hashmapp) {
  210|  30.5k|	isc_hashmap_t *hashmap = isc_mem_get(mctx, sizeof(*hashmap));
  ------------------
  |  |  128|  30.5k|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
  211|       |
  212|  30.5k|	REQUIRE(hashmapp != NULL && *hashmapp == NULL);
  ------------------
  |  |  198|  30.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  61.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 30.5k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 30.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  30.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  213|  30.5k|	REQUIRE(mctx != NULL);
  ------------------
  |  |  198|  30.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  30.5k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 30.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  30.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  214|  30.5k|	REQUIRE(bits >= HASHMAP_MIN_BITS && bits <= HASHMAP_MAX_BITS);
  ------------------
  |  |  198|  30.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  61.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 30.5k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 30.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  30.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  215|       |
  216|  30.5k|	*hashmap = (isc_hashmap_t){
  217|  30.5k|		.magic = ISC_HASHMAP_MAGIC,
  ------------------
  |  |   57|  30.5k|#define ISC_HASHMAP_MAGIC	   ISC_MAGIC('H', 'M', 'a', 'p')
  |  |  ------------------
  |  |  |  |   31|  30.5k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  218|  30.5k|	};
  219|  30.5k|	isc_mem_attach(mctx, &hashmap->mctx);
  220|       |
  221|  30.5k|	hashmap_create_table(hashmap, 0, bits);
  222|       |
  223|  30.5k|	hashmap->magic = ISC_HASHMAP_MAGIC;
  ------------------
  |  |   57|  30.5k|#define ISC_HASHMAP_MAGIC	   ISC_MAGIC('H', 'M', 'a', 'p')
  |  |  ------------------
  |  |  |  |   31|  30.5k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  224|       |
  225|  30.5k|	*hashmapp = hashmap;
  226|  30.5k|}
isc_hashmap_destroy:
  229|  30.5k|isc_hashmap_destroy(isc_hashmap_t **hashmapp) {
  230|  30.5k|	isc_hashmap_t *hashmap;
  231|       |
  232|  30.5k|	REQUIRE(hashmapp != NULL && *hashmapp != NULL);
  ------------------
  |  |  198|  30.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  61.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 30.5k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 30.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  30.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  233|  30.5k|	REQUIRE(ISC_HASHMAP_VALID(*hashmapp));
  ------------------
  |  |  198|  30.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  61.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 30.5k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 30.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  30.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  234|       |
  235|  30.5k|	hashmap = *hashmapp;
  236|  30.5k|	*hashmapp = NULL;
  237|       |
  238|  30.5k|	hashmap->magic = 0;
  239|       |
  240|  91.7k|	for (size_t i = 0; i < HASHMAP_NUM_TABLES; i++) {
  ------------------
  |  |   61|  91.7k|#define HASHMAP_NUM_TABLES 2
  ------------------
  |  Branch (240:21): [True: 61.1k, False: 30.5k]
  ------------------
  241|  61.1k|		if (hashmap->tables[i].table != NULL) {
  ------------------
  |  Branch (241:7): [True: 35.1k, False: 26.0k]
  ------------------
  242|  35.1k|			hashmap_free_table(hashmap, i, true);
  243|  35.1k|		}
  244|  61.1k|	}
  245|  30.5k|	INSIST(hashmap->count == 0);
  ------------------
  |  |  202|  30.5k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  30.5k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 30.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  30.5k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  246|       |
  247|       |	isc_mem_putanddetach(&hashmap->mctx, hashmap, sizeof(*hashmap));
  ------------------
  |  |  159|  30.5k|	do {                                                               \
  |  |  160|  30.5k|		isc__mem_putanddetach((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  161|  30.5k|		(p) = NULL;                                                \
  |  |  162|  30.5k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (162:11): [Folded, False: 30.5k]
  |  |  ------------------
  ------------------
  248|  30.5k|}
isc_hashmap_add:
  568|   491k|		void **foundp) {
  569|   491k|	REQUIRE(ISC_HASHMAP_VALID(hashmap));
  ------------------
  |  |  198|   491k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   982k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 491k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 491k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   491k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  570|   491k|	REQUIRE(key != NULL);
  ------------------
  |  |  198|   491k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   491k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 491k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   491k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  571|       |
  572|   491k|	if (rehashing_in_progress(hashmap)) {
  ------------------
  |  Branch (572:6): [True: 47.4k, False: 443k]
  ------------------
  573|  47.4k|		hashmap_rehash_one(hashmap);
  574|   443k|	} else if (over_threshold(hashmap)) {
  ------------------
  |  Branch (574:13): [True: 14.5k, False: 429k]
  ------------------
  575|  14.5k|		hashmap_rehash_start_grow(hashmap);
  576|  14.5k|		hashmap_rehash_one(hashmap);
  577|  14.5k|	}
  578|       |
  579|   491k|	if (rehashing_in_progress(hashmap)) {
  ------------------
  |  Branch (579:6): [True: 52.0k, False: 439k]
  ------------------
  580|  52.0k|		uint8_t fidx = hashmap_nexttable(hashmap->hindex);
  581|  52.0k|		uint32_t psl;
  582|       |
  583|       |		/* Look for the value in the old table */
  584|  52.0k|		hashmap_node_t *found = hashmap_find(hashmap, hashval, match,
  585|  52.0k|						     key, &psl, &fidx);
  586|  52.0k|		if (found != NULL) {
  ------------------
  |  Branch (586:7): [True: 11.6k, False: 40.3k]
  ------------------
  587|  11.6k|			INSIST(found->key != NULL);
  ------------------
  |  |  202|  11.6k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  11.6k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 11.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  11.6k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  588|  11.6k|			SET_IF_NOT_NULL(foundp, found->value);
  ------------------
  |  |  104|  11.6k|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 11.6k, False: 0]
  |  |  ------------------
  |  |  105|  11.6k|		*(obj) = (val);   \
  |  |  106|  11.6k|	}
  ------------------
  589|  11.6k|			return ISC_R_EXISTS;
  590|  11.6k|		}
  591|  52.0k|	}
  592|       |
  593|   479k|	return hashmap_add(hashmap, hashval, match, key, value, foundp,
  594|   479k|			   hashmap->hindex);
  595|   491k|}
hashmap.c:hashmap_create_table:
  168|  45.1k|		     const uint8_t bits) {
  169|  45.1k|	REQUIRE(hashmap->tables[idx].hashbits == HASHMAP_NO_BITS);
  ------------------
  |  |  198|  45.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  45.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 45.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  45.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  170|  45.1k|	REQUIRE(hashmap->tables[idx].table == NULL);
  ------------------
  |  |  198|  45.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  45.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 45.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  45.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  171|  45.1k|	REQUIRE(bits >= HASHMAP_MIN_BITS);
  ------------------
  |  |  198|  45.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  45.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 45.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  45.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  172|  45.1k|	REQUIRE(bits <= HASHMAP_MAX_BITS);
  ------------------
  |  |  198|  45.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  45.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 45.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  45.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  173|       |
  174|  45.1k|	hashmap->tables[idx] = (hashmap_table_t){
  175|  45.1k|		.hashbits = bits,
  176|  45.1k|		.hashmask = HASHSIZE(bits) - 1,
  ------------------
  |  |   63|  45.1k|#define HASHSIZE(bits) (UINT64_C(1) << (bits))
  ------------------
  177|  45.1k|		.size = HASHSIZE(bits),
  ------------------
  |  |   63|  45.1k|#define HASHSIZE(bits) (UINT64_C(1) << (bits))
  ------------------
  178|  45.1k|	};
  179|       |
  180|  45.1k|	hashmap->tables[idx].table =
  181|       |		isc_mem_cget(hashmap->mctx, hashmap->tables[idx].size,
  ------------------
  |  |  130|  45.1k|	isc__mem_get((c), ISC_CHECKED_MUL((n), (s)), \
  |  |  ------------------
  |  |  |  |   32|  45.1k|	({                                                \
  |  |  |  |   33|  45.1k|		typeof(a) _c;                             \
  |  |  |  |   34|  45.1k|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|  45.1k|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|  45.1k|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  45.1k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 45.1k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  45.1k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|  45.1k|		_c;                                       \
  |  |  |  |   37|  45.1k|	})
  |  |  ------------------
  |  |  131|  45.1k|		     ISC__MEM_ZERO _ISC_MEM_FILELINE)
  |  |  ------------------
  |  |  |  |  126|  45.1k|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  ------------------
  182|  45.1k|			     sizeof(hashmap->tables[idx].table[0]));
  183|  45.1k|}
hashmap.c:hashmap_free_table:
  186|  45.1k|hashmap_free_table(isc_hashmap_t *hashmap, const uint8_t idx, bool cleanup) {
  187|  45.1k|	size_t size;
  188|       |
  189|  45.1k|	if (cleanup) {
  ------------------
  |  Branch (189:6): [True: 35.1k, False: 10.0k]
  ------------------
  190|   310k|		for (size_t i = 0; i < hashmap->tables[idx].size; i++) {
  ------------------
  |  Branch (190:22): [True: 275k, False: 35.1k]
  ------------------
  191|   275k|			hashmap_node_t *node = &hashmap->tables[idx].table[i];
  192|   275k|			if (node->key != NULL) {
  ------------------
  |  Branch (192:8): [True: 106k, False: 168k]
  ------------------
  193|   106k|				*node = (hashmap_node_t){ 0 };
  194|   106k|				hashmap->count--;
  195|   106k|			}
  196|   275k|		}
  197|  35.1k|	}
  198|       |
  199|  45.1k|	size = hashmap->tables[idx].size *
  200|  45.1k|	       sizeof(hashmap->tables[idx].table[0]);
  201|  45.1k|	isc_mem_put(hashmap->mctx, hashmap->tables[idx].table, size);
  ------------------
  |  |  148|  45.1k|	do {                                                      \
  |  |  149|  45.1k|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|  45.1k|		(p) = NULL;                                       \
  |  |  151|  45.1k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 45.1k]
  |  |  ------------------
  ------------------
  202|       |
  203|  45.1k|	hashmap->tables[idx] = (hashmap_table_t){
  204|  45.1k|		.hashbits = HASHMAP_NO_BITS,
  ------------------
  |  |   65|  45.1k|#define HASHMAP_NO_BITS	 0U
  ------------------
  205|  45.1k|	};
  206|  45.1k|}
hashmap.c:hashmap_find:
  253|  52.0k|	     uint8_t *idxp) {
  254|  52.0k|	uint32_t hash;
  255|  52.0k|	uint32_t psl;
  256|  52.0k|	uint8_t idx = *idxp;
  257|  52.0k|	uint32_t pos;
  258|       |
  259|  52.0k|nexttable:
  260|  52.0k|	psl = 0;
  261|  52.0k|	hash = isc_hash_bits32(hashval, hashmap->tables[idx].hashbits);
  262|       |
  263|  81.8k|	while (true) {
  ------------------
  |  Branch (263:9): [True: 81.8k, Folded]
  ------------------
  264|  81.8k|		hashmap_node_t *node = NULL;
  265|       |
  266|  81.8k|		pos = (hash + psl) & hashmap->tables[idx].hashmask;
  267|       |
  268|  81.8k|		node = &hashmap->tables[idx].table[pos];
  269|       |
  270|  81.8k|		if (node->key == NULL || psl > node->psl) {
  ------------------
  |  Branch (270:7): [True: 35.0k, False: 46.7k]
  |  Branch (270:28): [True: 5.31k, False: 41.4k]
  ------------------
  271|  40.3k|			break;
  272|  40.3k|		}
  273|       |
  274|  41.4k|		if (node->hashval == hashval) {
  ------------------
  |  Branch (274:7): [True: 11.6k, False: 29.8k]
  ------------------
  275|  11.6k|			if (match(node->value, key)) {
  ------------------
  |  Branch (275:8): [True: 11.6k, False: 15]
  ------------------
  276|  11.6k|				*pslp = psl;
  277|  11.6k|				*idxp = idx;
  278|  11.6k|				return node;
  279|  11.6k|			}
  280|  11.6k|		}
  281|       |
  282|  29.8k|		psl++;
  283|  29.8k|	}
  284|  40.3k|	if (try_nexttable(hashmap, idx)) {
  ------------------
  |  Branch (284:6): [True: 0, False: 40.3k]
  ------------------
  285|      0|		idx = hashmap_nexttable(idx);
  286|      0|		goto nexttable;
  287|      0|	}
  288|       |
  289|  40.3k|	return NULL;
  290|  40.3k|}
hashmap.c:try_nexttable:
  129|  40.3k|try_nexttable(const isc_hashmap_t *hashmap, uint8_t idx) {
  130|  40.3k|	return idx == hashmap->hindex && rehashing_in_progress(hashmap);
  ------------------
  |  Branch (130:9): [True: 0, False: 40.3k]
  |  Branch (130:35): [True: 0, False: 0]
  ------------------
  131|  40.3k|}
hashmap.c:rehashing_in_progress:
  123|   996k|rehashing_in_progress(const isc_hashmap_t *hashmap) {
  124|   996k|	return hashmap->tables[hashmap_nexttable(hashmap->hindex)].table !=
  125|       |	       NULL;
  126|   996k|}
hashmap.c:hashmap_rehash_one:
  349|  62.0k|hashmap_rehash_one(isc_hashmap_t *hashmap) {
  350|  62.0k|	uint8_t oldidx = hashmap_nexttable(hashmap->hindex);
  351|  62.0k|	uint32_t oldsize = hashmap->tables[oldidx].size;
  352|  62.0k|	hashmap_node_t *oldtable = hashmap->tables[oldidx].table;
  353|  62.0k|	hashmap_node_t node;
  354|       |
  355|       |	/* Don't rehash when iterating */
  356|  62.0k|	INSIST(atomic_load_acquire(&hashmap->iterators) == 0);
  ------------------
  |  |  202|  62.0k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  62.0k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 62.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  62.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  357|       |
  358|       |	/* Find first non-empty node */
  359|   109k|	while (hashmap->hiter < oldsize && oldtable[hashmap->hiter].key == NULL)
  ------------------
  |  Branch (359:9): [True: 99.1k, False: 10.0k]
  |  Branch (359:37): [True: 47.1k, False: 52.0k]
  ------------------
  360|  47.1k|	{
  361|  47.1k|		hashmap->hiter++;
  362|  47.1k|	}
  363|       |
  364|       |	/* Rehashing complete */
  365|  62.0k|	if (hashmap->hiter == oldsize) {
  ------------------
  |  Branch (365:6): [True: 10.0k, False: 52.0k]
  ------------------
  366|  10.0k|		hashmap_free_table(hashmap, hashmap_nexttable(hashmap->hindex),
  367|  10.0k|				   false);
  368|  10.0k|		hashmap->hiter = 0;
  369|  10.0k|		return;
  370|  10.0k|	}
  371|       |
  372|       |	/* Move the first non-empty node from old table to new table */
  373|  52.0k|	node = oldtable[hashmap->hiter];
  374|       |
  375|  52.0k|	(void)hashmap_delete_node(hashmap, &oldtable[hashmap->hiter],
  376|  52.0k|				  node.hashval, node.psl, oldidx, UINT32_MAX);
  377|       |
  378|  52.0k|	isc_result_t result = hashmap_add(hashmap, node.hashval, NULL, node.key,
  379|  52.0k|					  node.value, NULL, hashmap->hindex);
  380|  52.0k|	INSIST(result == ISC_R_SUCCESS);
  ------------------
  |  |  202|  52.0k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  52.0k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 52.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  52.0k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  381|       |
  382|       |	/*
  383|       |	 * we don't increase the hiter here because the table has been reordered
  384|       |	 * when we deleted the old node
  385|       |	 */
  386|  52.0k|}
hashmap.c:hashmap_delete_node:
  313|  52.0k|		    size_t size) {
  314|  52.0k|	uint32_t pos;
  315|  52.0k|	uint32_t hash;
  316|  52.0k|	bool last = false;
  317|       |
  318|  52.0k|	hashmap->count--;
  319|       |
  320|  52.0k|	hash = isc_hash_bits32(hashval, hashmap->tables[idx].hashbits);
  321|  52.0k|	pos = (hash + psl) & hashmap->tables[idx].hashmask;
  322|       |
  323|  96.8k|	while (true) {
  ------------------
  |  Branch (323:9): [True: 96.8k, Folded]
  ------------------
  324|  96.8k|		hashmap_node_t *node = NULL;
  325|       |
  326|  96.8k|		pos = (pos + 1) & hashmap->tables[idx].hashmask;
  327|  96.8k|		INSIST(pos < hashmap->tables[idx].size);
  ------------------
  |  |  202|  96.8k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  96.8k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 96.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  96.8k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  328|       |
  329|  96.8k|		node = &hashmap->tables[idx].table[pos];
  330|       |
  331|  96.8k|		if (node->key == NULL || node->psl == 0) {
  ------------------
  |  Branch (331:7): [True: 23.6k, False: 73.2k]
  |  Branch (331:28): [True: 28.3k, False: 44.8k]
  ------------------
  332|  52.0k|			break;
  333|  52.0k|		}
  334|       |
  335|  44.8k|		if ((pos % size) == 0) {
  ------------------
  |  Branch (335:7): [True: 0, False: 44.8k]
  ------------------
  336|      0|			last = true;
  337|      0|		}
  338|       |
  339|  44.8k|		node->psl--;
  340|  44.8k|		*entry = *node;
  341|  44.8k|		entry = &hashmap->tables[idx].table[pos];
  342|  44.8k|	}
  343|       |
  344|  52.0k|	*entry = (hashmap_node_t){ 0 };
  345|  52.0k|	return last;
  346|  52.0k|}
hashmap.c:over_threshold:
  482|   443k|over_threshold(isc_hashmap_t *hashmap) {
  483|   443k|	uint32_t bits = hashmap->tables[hashmap->hindex].hashbits;
  484|   443k|	if (bits == HASHMAP_MAX_BITS) {
  ------------------
  |  |   67|   443k|#define HASHMAP_MAX_BITS 32U
  ------------------
  |  Branch (484:6): [True: 0, False: 443k]
  ------------------
  485|      0|		return false;
  486|      0|	}
  487|   443k|	size_t threshold = APPROX_90_PERCENT(HASHSIZE(bits));
  ------------------
  |  |   45|   443k|#define APPROX_90_PERCENT(x) (((x) * 921) >> 10)
  ------------------
  488|   443k|	return hashmap->count > threshold;
  489|   443k|}
hashmap.c:hashmap_rehash_start_grow:
  416|  14.5k|hashmap_rehash_start_grow(isc_hashmap_t *hashmap) {
  417|  14.5k|	uint32_t newbits;
  418|  14.5k|	uint8_t oldindex = hashmap->hindex;
  419|  14.5k|	uint32_t oldbits = hashmap->tables[oldindex].hashbits;
  420|  14.5k|	uint8_t newindex = hashmap_nexttable(oldindex);
  421|       |
  422|  14.5k|	REQUIRE(!rehashing_in_progress(hashmap));
  ------------------
  |  |  198|  14.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  14.5k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 14.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  14.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  423|       |
  424|  14.5k|	newbits = grow_bits(hashmap);
  425|       |
  426|  14.5k|	if (newbits > oldbits) {
  ------------------
  |  Branch (426:6): [True: 14.5k, False: 0]
  ------------------
  427|  14.5k|		hashmap_create_table(hashmap, newindex, newbits);
  428|  14.5k|		hashmap->hindex = newindex;
  429|  14.5k|	}
  430|  14.5k|}
hashmap.c:grow_bits:
  389|  14.5k|grow_bits(isc_hashmap_t *hashmap) {
  390|  14.5k|	uint32_t newbits = hashmap->tables[hashmap->hindex].hashbits + 1;
  391|  14.5k|	size_t newsize = HASHSIZE(newbits);
  ------------------
  |  |   63|  14.5k|#define HASHSIZE(bits) (UINT64_C(1) << (bits))
  ------------------
  392|       |
  393|  29.0k|	while (hashmap->count > APPROX_40_PERCENT(newsize)) {
  ------------------
  |  |   47|  29.0k|#define APPROX_40_PERCENT(x) (((x) * 409) >> 10)
  ------------------
  |  Branch (393:9): [True: 14.5k, False: 14.5k]
  ------------------
  394|  14.5k|		newbits += 1;
  395|  14.5k|		newsize = HASHSIZE(newbits);
  ------------------
  |  |   63|  14.5k|#define HASHSIZE(bits) (UINT64_C(1) << (bits))
  ------------------
  396|  14.5k|	}
  397|  14.5k|	if (newbits > HASHMAP_MAX_BITS) {
  ------------------
  |  |   67|  14.5k|#define HASHMAP_MAX_BITS 32U
  ------------------
  |  Branch (397:6): [True: 0, False: 14.5k]
  ------------------
  398|      0|		newbits = HASHMAP_MAX_BITS;
  ------------------
  |  |   67|      0|#define HASHMAP_MAX_BITS 32U
  ------------------
  399|      0|	}
  400|       |
  401|  14.5k|	return newbits;
  402|  14.5k|}
hashmap.c:hashmap_nexttable:
  118|  1.13M|hashmap_nexttable(uint8_t idx) {
  119|  1.13M|	return (idx == 0) ? 1 : 0;
  ------------------
  |  Branch (119:9): [True: 636k, False: 498k]
  ------------------
  120|  1.13M|}
hashmap.c:hashmap_add:
  504|   531k|	    void **foundp, uint8_t idx) {
  505|   531k|	uint32_t hash;
  506|   531k|	uint32_t psl = 0;
  507|   531k|	hashmap_node_t node;
  508|   531k|	hashmap_node_t *current = NULL;
  509|   531k|	uint32_t pos;
  510|       |
  511|   531k|	INSIST(atomic_load_acquire(&hashmap->iterators) == 0);
  ------------------
  |  |  202|   531k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   531k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 531k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   531k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  512|       |
  513|   531k|	hash = isc_hash_bits32(hashval, hashmap->tables[idx].hashbits);
  514|       |
  515|       |	/* Initialize the node to be store to 'node' */
  516|   531k|	hashmap_node_init(&node, hashval, key, value);
  517|       |
  518|   531k|	psl = 0;
  519|   725k|	while (true) {
  ------------------
  |  Branch (519:9): [True: 725k, Folded]
  ------------------
  520|   725k|		pos = (hash + psl) & hashmap->tables[idx].hashmask;
  521|       |
  522|   725k|		current = &hashmap->tables[idx].table[pos];
  523|       |
  524|       |		/* Found an empty node */
  525|   725k|		if (current->key == NULL) {
  ------------------
  |  Branch (525:7): [True: 158k, False: 566k]
  ------------------
  526|   158k|			break;
  527|   158k|		}
  528|       |
  529|   566k|		if (current->hashval == hashval) {
  ------------------
  |  Branch (529:7): [True: 372k, False: 193k]
  ------------------
  530|   372k|			if (match != NULL && match(current->value, key)) {
  ------------------
  |  Branch (530:8): [True: 372k, False: 20]
  |  Branch (530:25): [True: 372k, False: 42]
  ------------------
  531|   372k|				SET_IF_NOT_NULL(foundp, current->value);
  ------------------
  |  |  104|   372k|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 372k, False: 0]
  |  |  ------------------
  |  |  105|   372k|		*(obj) = (val);   \
  |  |  106|   372k|	}
  ------------------
  532|   372k|				return ISC_R_EXISTS;
  533|   372k|			}
  534|   372k|		}
  535|       |
  536|       |		/* Found rich node */
  537|   193k|		if (node.psl > current->psl) {
  ------------------
  |  Branch (537:7): [True: 35.4k, False: 158k]
  ------------------
  538|       |			/* Swap the poor with the rich node */
  539|  35.4k|			ISC_SWAP(*current, node);
  ------------------
  |  |  305|  35.4k|	{                                 \
  |  |  306|  35.4k|		typeof(a) __tmp_swap = a; \
  |  |  307|  35.4k|		a = b;                    \
  |  |  308|  35.4k|		b = __tmp_swap;           \
  |  |  309|  35.4k|	}
  ------------------
  540|  35.4k|		}
  541|       |
  542|   193k|		node.psl++;
  543|   193k|		psl++;
  544|   193k|	}
  545|       |
  546|       |	/*
  547|       |	 * Possible optimalization - start growing when the poor node is too far
  548|       |	 */
  549|       |#if ISC_HASHMAP_GROW_FAST
  550|       |	if (psl > hashmap->hashbits[idx]) {
  551|       |		if (!rehashing_in_progress(hashmap)) {
  552|       |			hashmap_rehash_start_grow(hashmap);
  553|       |		}
  554|       |	}
  555|       |#endif
  556|       |
  557|   158k|	hashmap->count++;
  558|       |
  559|       |	/* We found an empty place, store entry into current node */
  560|   158k|	*current = node;
  561|       |
  562|   158k|	return ISC_R_SUCCESS;
  563|   531k|}
hashmap.c:hashmap_node_init:
  135|   531k|		  const uint8_t *key, void *value) {
  136|   531k|	*node = (hashmap_node_t){
  137|   531k|		.value = value,
  138|   531k|		.hashval = hashval,
  139|   531k|		.key = key,
  140|   531k|		.psl = 0,
  141|   531k|	};
  142|   531k|}

isc_hex_totext:
   54|  77.4k|	       isc_buffer_t *target) {
   55|  77.4k|	char buf[3];
   56|  77.4k|	unsigned int loops = 0;
   57|       |
   58|  77.4k|	if (wordlength < 2) {
  ------------------
  |  Branch (58:6): [True: 9.51k, False: 67.8k]
  ------------------
   59|  9.51k|		wordlength = 2;
   60|  9.51k|	}
   61|       |
   62|  77.4k|	memset(buf, 0, sizeof(buf));
   63|  1.94M|	while (source->length > 0) {
  ------------------
  |  Branch (63:9): [True: 1.87M, False: 77.4k]
  ------------------
   64|  1.87M|		buf[0] = hex[(source->base[0] >> 4) & 0xf];
   65|  1.87M|		buf[1] = hex[(source->base[0]) & 0xf];
   66|  1.87M|		RETERR(str_totext(buf, target));
  ------------------
  |  |  276|  1.87M|	{                                  \
  |  |  277|  1.87M|		isc_result_t _r = (x);     \
  |  |  278|  1.87M|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 1.87M]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|  1.87M|	}
  ------------------
   67|  1.87M|		isc_region_consume(source, 1);
  ------------------
  |  |   50|  1.87M|	do {                              \
  |  |   51|  1.87M|		isc_region_t *_r = (r);   \
  |  |   52|  1.87M|		unsigned int  _l = (l);   \
  |  |   53|  1.87M|		INSIST(_r->length >= _l); \
  |  |  ------------------
  |  |  |  |  202|  1.87M|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|  1.87M|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 1.87M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|  1.87M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   54|  1.87M|		_r->base += _l;           \
  |  |   55|  1.87M|		_r->length -= _l;         \
  |  |   56|  1.87M|	} while (0)
  |  |  ------------------
  |  |  |  Branch (56:11): [Folded, False: 1.87M]
  |  |  ------------------
  ------------------
   68|       |
   69|  1.87M|		loops++;
   70|  1.87M|		if (source->length != 0 && (int)((loops + 1) * 2) >= wordlength)
  ------------------
  |  Branch (70:7): [True: 1.79M, False: 77.4k]
  |  Branch (70:30): [True: 107k, False: 1.68M]
  ------------------
   71|   107k|		{
   72|   107k|			loops = 0;
   73|   107k|			RETERR(str_totext(wordbreak, target));
  ------------------
  |  |  276|   107k|	{                                  \
  |  |  277|   107k|		isc_result_t _r = (x);     \
  |  |  278|   107k|		if (_r != ISC_R_SUCCESS) { \
  |  |  ------------------
  |  |  |  Branch (278:7): [True: 0, False: 107k]
  |  |  ------------------
  |  |  279|      0|			return ((_r));     \
  |  |  280|      0|		}                          \
  |  |  281|   107k|	}
  ------------------
   74|   107k|		}
   75|  1.87M|	}
   76|  77.4k|	return ISC_R_SUCCESS;
   77|  77.4k|}
hex.c:str_totext:
  185|  1.97M|str_totext(const char *source, isc_buffer_t *target) {
  186|  1.97M|	unsigned int l;
  187|  1.97M|	isc_region_t region;
  188|       |
  189|  1.97M|	isc_buffer_availableregion(target, &region);
  190|  1.97M|	l = strlen(source);
  191|       |
  192|  1.97M|	if (l > region.length) {
  ------------------
  |  Branch (192:6): [True: 0, False: 1.97M]
  ------------------
  193|      0|		return ISC_R_NOSPACE;
  194|      0|	}
  195|       |
  196|  1.97M|	memmove(region.base, source, l);
  197|  1.97M|	isc_buffer_add(target, l);
  198|  1.97M|	return ISC_R_SUCCESS;
  199|  1.97M|}

compress.c:isc__ascii_tolower1:
   39|  9.98M|isc__ascii_tolower1(uint8_t c) {
   40|  9.98M|	return c + ('a' - 'A') * ('A' <= c && c <= 'Z');
  ------------------
  |  Branch (40:28): [True: 745k, False: 9.24M]
  |  Branch (40:40): [True: 41.7k, False: 703k]
  ------------------
   41|  9.98M|}
compress.c:isc_ascii_lowerequal:
  135|   547k|		     unsigned int len) {
  136|   547k|	uint64_t a8 = 0, b8 = 0;
  137|   547k|	if (len >= 8) {
  ------------------
  |  Branch (137:6): [True: 180k, False: 367k]
  ------------------
  138|   180k|		const uint8_t *a_tail = a + len - 8;
  139|   180k|		const uint8_t *b_tail = b + len - 8;
  140|  1.04M|		while (len >= 8) {
  ------------------
  |  Branch (140:10): [True: 874k, False: 174k]
  ------------------
  141|   874k|			a8 = isc_ascii_tolower8(isc__ascii_load8(a));
  142|   874k|			b8 = isc_ascii_tolower8(isc__ascii_load8(b));
  143|   874k|			if (a8 != b8) {
  ------------------
  |  Branch (143:8): [True: 5.53k, False: 869k]
  ------------------
  144|  5.53k|				return false;
  145|  5.53k|			}
  146|   869k|			len -= 8;
  147|   869k|			a += 8;
  148|   869k|			b += 8;
  149|   869k|		}
  150|       |
  151|   174k|		a8 = isc_ascii_tolower8(isc__ascii_load8(a_tail));
  152|   174k|		b8 = isc_ascii_tolower8(isc__ascii_load8(b_tail));
  153|   174k|		return a8 == b8;
  154|   180k|	}
  155|       |
  156|  1.96M|	while (len-- > 0) {
  ------------------
  |  Branch (156:9): [True: 1.59M, False: 364k]
  ------------------
  157|  1.59M|		if (isc_ascii_tolower(*a++) != isc_ascii_tolower(*b++)) {
  ------------------
  |  |   31|  1.59M|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
              		if (isc_ascii_tolower(*a++) != isc_ascii_tolower(*b++)) {
  ------------------
  |  |   31|  1.59M|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
  |  Branch (157:7): [True: 2.15k, False: 1.59M]
  ------------------
  158|  2.15k|			return false;
  159|  2.15k|		}
  160|  1.59M|	}
  161|   364k|	return true;
  162|   367k|}
compress.c:isc_ascii_tolower8:
   71|  2.09M|isc_ascii_tolower8(uint64_t octets) {
   72|       |	/*
   73|       |	 * Multiply a single-byte constant by `all_bytes` to replicate
   74|       |	 * it to all eight bytes in a word.
   75|       |	 */
   76|  2.09M|	uint64_t all_bytes = 0x0101010101010101;
   77|       |	/*
   78|       |	 * Clear the top bit of each byte to make space for a per-byte flag.
   79|       |	 */
   80|  2.09M|	uint64_t heptets = octets & (0x7F * all_bytes);
   81|       |	/*
   82|       |	 * We will need to avoid going wrong if our flag bits were originally
   83|       |	 * set, and clear calculation leftovers in our non-flag bits
   84|       |	 */
   85|  2.09M|	uint64_t is_ascii = ~octets & (0x80 * all_bytes);
   86|       |	/*
   87|       |	 * To compare a heptet to `N`, we can add `0x7F - N` so that carry
   88|       |	 * propagation will set the flag when our heptet is greater than `N`
   89|       |	 */
   90|  2.09M|	uint64_t is_gt_Z = heptets + (0x7F - 'Z') * all_bytes;
   91|       |	/*
   92|       |	 * Add one for greater-than-or-equal comparison
   93|       |	 */
   94|  2.09M|	uint64_t is_ge_A = heptets + (0x80 - 'A') * all_bytes;
   95|       |	/*
   96|       |	 * Now we have what we need to identify the ascii uppercase bytes
   97|       |	 */
   98|  2.09M|	uint64_t is_upper = (is_ge_A ^ is_gt_Z) & is_ascii;
   99|       |	/*
  100|       |	 * Move the is_upper flag bits to bit 0x20 (which is 'a' - 'A')
  101|       |	 * and use them to adjust each byte as required
  102|       |	 */
  103|  2.09M|	return octets | (is_upper >> 2);
  104|  2.09M|}
compress.c:isc__ascii_load8:
  124|  2.09M|isc__ascii_load8(const uint8_t *ptr) {
  125|  2.09M|	uint64_t bytes = 0;
  126|  2.09M|	memmove(&bytes, ptr, sizeof(bytes));
  127|  2.09M|	return bytes;
  128|  2.09M|}
name.c:isc_ascii_lowercmp:
  171|  10.0k|isc_ascii_lowercmp(const uint8_t *a, const uint8_t *b, unsigned int len) {
  172|  10.0k|	uint64_t a8 = 0, b8 = 0;
  173|  73.3k|	while (len >= 8) {
  ------------------
  |  Branch (173:9): [True: 64.3k, False: 8.99k]
  ------------------
  174|  64.3k|		a8 = isc_ascii_tolower8(htobe64(isc__ascii_load8(a)));
  175|  64.3k|		b8 = isc_ascii_tolower8(htobe64(isc__ascii_load8(b)));
  176|  64.3k|		if (a8 != b8) {
  ------------------
  |  Branch (176:7): [True: 1.05k, False: 63.2k]
  ------------------
  177|  1.05k|			goto ret;
  178|  1.05k|		}
  179|  63.2k|		len -= 8;
  180|  63.2k|		a += 8;
  181|  63.2k|		b += 8;
  182|  63.2k|	}
  183|  23.9k|	while (len-- > 0) {
  ------------------
  |  Branch (183:9): [True: 16.5k, False: 7.32k]
  ------------------
  184|  16.5k|		a8 = isc_ascii_tolower(*a++);
  ------------------
  |  |   31|  16.5k|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
  185|  16.5k|		b8 = isc_ascii_tolower(*b++);
  ------------------
  |  |   31|  16.5k|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
  186|  16.5k|		if (a8 != b8) {
  ------------------
  |  Branch (186:7): [True: 1.67k, False: 14.9k]
  ------------------
  187|  1.67k|			goto ret;
  188|  1.67k|		}
  189|  16.5k|	}
  190|  10.0k|ret:
  191|  10.0k|	if (a8 < b8) {
  ------------------
  |  Branch (191:6): [True: 1.52k, False: 8.52k]
  ------------------
  192|  1.52k|		return -1;
  193|  1.52k|	}
  194|  8.52k|	if (a8 > b8) {
  ------------------
  |  Branch (194:6): [True: 1.20k, False: 7.32k]
  ------------------
  195|  1.20k|		return +1;
  196|  1.20k|	}
  197|  7.32k|	return 0;
  198|  8.52k|}
name.c:isc_ascii_tolower8:
   71|   509k|isc_ascii_tolower8(uint64_t octets) {
   72|       |	/*
   73|       |	 * Multiply a single-byte constant by `all_bytes` to replicate
   74|       |	 * it to all eight bytes in a word.
   75|       |	 */
   76|   509k|	uint64_t all_bytes = 0x0101010101010101;
   77|       |	/*
   78|       |	 * Clear the top bit of each byte to make space for a per-byte flag.
   79|       |	 */
   80|   509k|	uint64_t heptets = octets & (0x7F * all_bytes);
   81|       |	/*
   82|       |	 * We will need to avoid going wrong if our flag bits were originally
   83|       |	 * set, and clear calculation leftovers in our non-flag bits
   84|       |	 */
   85|   509k|	uint64_t is_ascii = ~octets & (0x80 * all_bytes);
   86|       |	/*
   87|       |	 * To compare a heptet to `N`, we can add `0x7F - N` so that carry
   88|       |	 * propagation will set the flag when our heptet is greater than `N`
   89|       |	 */
   90|   509k|	uint64_t is_gt_Z = heptets + (0x7F - 'Z') * all_bytes;
   91|       |	/*
   92|       |	 * Add one for greater-than-or-equal comparison
   93|       |	 */
   94|   509k|	uint64_t is_ge_A = heptets + (0x80 - 'A') * all_bytes;
   95|       |	/*
   96|       |	 * Now we have what we need to identify the ascii uppercase bytes
   97|       |	 */
   98|   509k|	uint64_t is_upper = (is_ge_A ^ is_gt_Z) & is_ascii;
   99|       |	/*
  100|       |	 * Move the is_upper flag bits to bit 0x20 (which is 'a' - 'A')
  101|       |	 * and use them to adjust each byte as required
  102|       |	 */
  103|   509k|	return octets | (is_upper >> 2);
  104|   509k|}
name.c:isc__ascii_load8:
  124|   509k|isc__ascii_load8(const uint8_t *ptr) {
  125|   509k|	uint64_t bytes = 0;
  126|   509k|	memmove(&bytes, ptr, sizeof(bytes));
  127|   509k|	return bytes;
  128|   509k|}
name.c:isc_ascii_lowerequal:
  135|   227k|		     unsigned int len) {
  136|   227k|	uint64_t a8 = 0, b8 = 0;
  137|   227k|	if (len >= 8) {
  ------------------
  |  Branch (137:6): [True: 20.8k, False: 206k]
  ------------------
  138|  20.8k|		const uint8_t *a_tail = a + len - 8;
  139|  20.8k|		const uint8_t *b_tail = b + len - 8;
  140|   190k|		while (len >= 8) {
  ------------------
  |  Branch (140:10): [True: 169k, False: 20.8k]
  ------------------
  141|   169k|			a8 = isc_ascii_tolower8(isc__ascii_load8(a));
  142|   169k|			b8 = isc_ascii_tolower8(isc__ascii_load8(b));
  143|   169k|			if (a8 != b8) {
  ------------------
  |  Branch (143:8): [True: 0, False: 169k]
  ------------------
  144|      0|				return false;
  145|      0|			}
  146|   169k|			len -= 8;
  147|   169k|			a += 8;
  148|   169k|			b += 8;
  149|   169k|		}
  150|       |
  151|  20.8k|		a8 = isc_ascii_tolower8(isc__ascii_load8(a_tail));
  152|  20.8k|		b8 = isc_ascii_tolower8(isc__ascii_load8(b_tail));
  153|  20.8k|		return a8 == b8;
  154|  20.8k|	}
  155|       |
  156|   484k|	while (len-- > 0) {
  ------------------
  |  Branch (156:9): [True: 278k, False: 206k]
  ------------------
  157|   278k|		if (isc_ascii_tolower(*a++) != isc_ascii_tolower(*b++)) {
  ------------------
  |  |   31|   278k|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
              		if (isc_ascii_tolower(*a++) != isc_ascii_tolower(*b++)) {
  ------------------
  |  |   31|   278k|#define isc_ascii_tolower(c) isc__ascii_tolower[(uint8_t)(c)]
  ------------------
  |  Branch (157:7): [True: 0, False: 278k]
  ------------------
  158|      0|			return false;
  159|      0|		}
  160|   278k|	}
  161|   206k|	return true;
  162|   206k|}
hash.c:isc__ascii_tolower1:
   39|   296k|isc__ascii_tolower1(uint8_t c) {
   40|   296k|	return c + ('a' - 'A') * ('A' <= c && c <= 'Z');
  ------------------
  |  Branch (40:28): [True: 12.0k, False: 284k]
  |  Branch (40:40): [True: 595, False: 11.4k]
  ------------------
   41|   296k|}
hash.c:isc_ascii_tolower4:
  110|   618k|isc_ascii_tolower4(uint32_t octets) {
  111|   618k|	uint32_t all_bytes = 0x01010101;
  112|   618k|	uint32_t heptets = octets & (0x7F * all_bytes);
  113|   618k|	uint32_t is_ascii = ~octets & (0x80 * all_bytes);
  114|   618k|	uint32_t is_gt_Z = heptets + (0x7F - 'Z') * all_bytes;
  115|   618k|	uint32_t is_ge_A = heptets + (0x80 - 'A') * all_bytes;
  116|   618k|	uint32_t is_upper = (is_ge_A ^ is_gt_Z) & is_ascii;
  117|   618k|	return octets | (is_upper >> 2);
  118|   618k|}

hash.c:isc_rotate_left32:
   82|  16.9M|isc_rotate_left32(const uint32_t x, uint32_t n) {
   83|  16.9M|	return (x << n) | (x >> (32 - n));
   84|  16.9M|}

dns_message_parse.c:isc_buffer_init:
  524|  39.7k|		const unsigned int length) {
  525|  39.7k|	REQUIRE(b != NULL);
  ------------------
  |  |  198|  39.7k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  39.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 39.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  39.7k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|  39.7k|	*b = (isc_buffer_t){
  528|  39.7k|		.base = base,
  529|  39.7k|		.length = length,
  530|  39.7k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  39.7k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  39.7k|	{                                         \
  |  |  |  |   27|  39.7k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  39.7k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  39.7k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  39.7k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  39.7k|	}
  |  |  ------------------
  ------------------
  531|  39.7k|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|  39.7k|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|  39.7k|	};
  533|  39.7k|}
dns_message_parse.c:isc_buffer_add:
  652|  13.1k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  13.1k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  13.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  26.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 13.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 13.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  13.1k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  13.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  13.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 13.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  13.1k|	b->used += n;
  657|  13.1k|}
dns_message_parse.c:isc_buffer_setactive:
  771|  13.1k|isc_buffer_setactive(isc_buffer_t *restrict b, const unsigned int n) {
  772|  13.1k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  13.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  26.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 13.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 13.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  773|  13.1k|	REQUIRE(b->current + n <= b->used);
  ------------------
  |  |  198|  13.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  13.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 13.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  774|       |
  775|  13.1k|	b->active = b->current + n;
  776|  13.1k|}
masterdump.c:isc_buffer_availableregion:
  634|  2.49M|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  2.49M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.49M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.98M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.49M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.49M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.49M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  2.49M|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  2.49M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.49M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.49M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.49M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  2.49M|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  2.49M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  2.49M|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  2.49M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  2.49M|}
masterdump.c:isc_buffer_add:
  652|  2.49M|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  2.49M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.49M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.98M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.49M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.49M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.49M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  2.49M|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  2.49M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.49M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.49M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.49M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  2.49M|	b->used += n;
  657|  2.49M|}
message.c:isc_buffer_allocate:
 1077|  92.1k|		    const unsigned int length) {
 1078|  92.1k|	REQUIRE(dbufp != NULL && *dbufp == NULL);
  ------------------
  |  |  198|  92.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   184k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 92.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 92.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  92.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1079|       |
 1080|  92.1k|	isc_buffer_t *dbuf = isc_mem_get(mctx, sizeof(*dbuf) + length);
  ------------------
  |  |  128|  92.1k|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1081|  92.1k|	uint8_t	     *bdata = (uint8_t *)dbuf + sizeof(*dbuf);
 1082|       |
 1083|  92.1k|	isc_buffer_init(dbuf, bdata, length);
 1084|  92.1k|	dbuf->extra = length;
 1085|  92.1k|	isc_buffer_setmctx(dbuf, mctx);
 1086|       |
 1087|  92.1k|	*dbufp = dbuf;
 1088|  92.1k|}
message.c:isc_buffer_setmctx:
 1091|  92.1k|isc_buffer_setmctx(isc_buffer_t *restrict b, isc_mem_t *mctx) {
 1092|  92.1k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  92.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   184k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 92.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 92.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  92.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1093|       |
 1094|  92.1k|	b->mctx = mctx;
 1095|  92.1k|}
message.c:isc_buffer_free:
 1154|  92.1k|isc_buffer_free(isc_buffer_t **restrict dbufp) {
 1155|  92.1k|	REQUIRE(dbufp != NULL && ISC_BUFFER_VALID(*dbufp));
  ------------------
  |  |  198|  92.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   368k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 92.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 92.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 92.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  92.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1156|  92.1k|	REQUIRE((*dbufp)->mctx != NULL);
  ------------------
  |  |  198|  92.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  92.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 92.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  92.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1157|       |
 1158|  92.1k|	isc_buffer_t *dbuf = *dbufp;
 1159|  92.1k|	isc_mem_t    *mctx = dbuf->mctx;
 1160|  92.1k|	unsigned int  extra = dbuf->extra;
 1161|       |
 1162|  92.1k|	*dbufp = NULL; /* destroy external reference */
 1163|       |
 1164|  92.1k|	isc_buffer_clearmctx(dbuf);
 1165|       |
 1166|  92.1k|	isc_buffer_invalidate(dbuf);
 1167|       |	isc_mem_put(mctx, dbuf, sizeof(*dbuf) + extra);
  ------------------
  |  |  148|  92.1k|	do {                                                      \
  |  |  149|  92.1k|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|  92.1k|		(p) = NULL;                                       \
  |  |  151|  92.1k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 92.1k]
  |  |  ------------------
  ------------------
 1168|  92.1k|}
message.c:isc_buffer_clearmctx:
 1098|  92.1k|isc_buffer_clearmctx(isc_buffer_t *restrict b) {
 1099|  92.1k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  92.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   184k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 92.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 92.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  92.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1100|       |
 1101|  92.1k|	if (b->dynamic) {
  ------------------
  |  Branch (1101:6): [True: 0, False: 92.1k]
  ------------------
 1102|      0|		isc_mem_put(b->mctx, b->base, b->length);
  ------------------
  |  |  148|      0|	do {                                                      \
  |  |  149|      0|		isc__mem_put((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  150|      0|		(p) = NULL;                                       \
  |  |  151|      0|	} while (0)
  |  |  ------------------
  |  |  |  Branch (151:11): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1103|      0|		b->dynamic = false;
 1104|      0|	}
 1105|       |
 1106|       |	b->mctx = NULL;
 1107|  92.1k|}
message.c:isc_buffer_invalidate:
  577|  92.1k|isc_buffer_invalidate(isc_buffer_t *restrict b) {
  578|  92.1k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  92.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   184k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 92.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 92.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  92.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  579|  92.1k|	REQUIRE(!ISC_LINK_LINKED(b, link));
  ------------------
  |  |  198|  92.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  92.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 92.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  92.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  580|  92.1k|	REQUIRE(b->mctx == NULL);
  ------------------
  |  |  198|  92.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  92.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 92.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  92.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  581|       |
  582|  92.1k|	*b = (isc_buffer_t){
  583|  92.1k|		.magic = 0,
  584|  92.1k|	};
  585|  92.1k|}
message.c:isc_buffer_usedregion:
  616|  30.7k|		      isc_region_t *restrict r) {
  617|  30.7k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  30.7k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  61.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 30.7k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 30.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  30.7k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  618|  30.7k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  30.7k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  30.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 30.7k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  30.7k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  619|       |
  620|  30.7k|	r->base = b->base;
  621|  30.7k|	r->length = b->used;
  622|  30.7k|}
message.c:isc_buffer_remainingregion:
  730|   891k|isc_buffer_remainingregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  731|   891k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   891k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.78M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 891k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 891k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   891k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  732|   891k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   891k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   891k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 891k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   891k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  733|       |
  734|   891k|	r->base = isc_buffer_current(b);
  ------------------
  |  |  145|   891k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  735|   891k|	r->length = isc_buffer_remaininglength(b);
  ------------------
  |  |  159|   891k|#define isc_buffer_remaininglength(b) ((b)->used - (b)->current)   /* d-b */
  ------------------
  736|   891k|}
message.c:isc_buffer_getuint16:
  888|  2.12M|isc_buffer_getuint16(isc_buffer_t *restrict b) {
  889|  2.12M|	uint16_t     val = 0;
  890|  2.12M|	isc_result_t result = isc_buffer_peekuint16(b, &val);
  891|  2.12M|	ENSURE(result == ISC_R_SUCCESS);
  ------------------
  |  |  200|  2.12M|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|  2.12M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 2.12M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|  2.12M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  892|  2.12M|	b->current += sizeof(val);
  893|  2.12M|	return val;
  894|  2.12M|}
message.c:isc_buffer_peekuint16:
  878|  2.12M|isc_buffer_peekuint16(const isc_buffer_t *restrict b, uint16_t *valp) {
  879|  2.12M|	ISC_BUFFER_PEEK_CHECK(b, sizeof(*valp));
  ------------------
  |  |  831|  2.12M|	{                                           \
  |  |  832|  2.12M|		REQUIRE(ISC_BUFFER_VALID(b));       \
  |  |  ------------------
  |  |  |  |  198|  2.12M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  4.24M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 2.12M, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 2.12M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  2.12M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  833|  2.12M|		if ((b)->used - (b)->current < s) { \
  |  |  ------------------
  |  |  |  Branch (833:7): [True: 0, False: 2.12M]
  |  |  ------------------
  |  |  834|      0|			return (ISC_R_NOMORE);      \
  |  |  835|      0|		}                                   \
  |  |  836|  2.12M|	}
  ------------------
  880|       |
  881|  2.12M|	uint8_t *cp = isc_buffer_current(b);
  ------------------
  |  |  145|  2.12M|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  882|       |
  883|       |	SET_IF_NOT_NULL(valp, ISC_U8TO16_BE(cp));
  ------------------
  |  |  104|  2.12M|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 2.12M, False: 0]
  |  |  ------------------
  |  |  105|  2.12M|		*(obj) = (val);   \
  |  |  106|  2.12M|	}
  ------------------
  884|  2.12M|	return ISC_R_SUCCESS;
  885|  2.12M|}
message.c:isc_buffer_clear:
  694|  31.8k|isc_buffer_clear(isc_buffer_t *restrict b) {
  695|  31.8k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  31.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  63.7k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 31.8k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 31.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  31.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  696|       |
  697|  31.8k|	b->used = 0;
  698|  31.8k|	b->current = 0;
  699|  31.8k|	b->active = 0;
  700|  31.8k|}
message.c:isc_buffer_availableregion:
  634|  17.6k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  17.6k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  17.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  35.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 17.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 17.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  17.6k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  17.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  17.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 17.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  17.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  17.6k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  17.6k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  17.6k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  17.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  17.6k|}
message.c:isc_buffer_add:
  652|  26.6k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  26.6k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  26.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  53.2k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 26.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 26.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  26.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  26.6k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  26.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  26.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 26.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  26.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  26.6k|	b->used += n;
  657|  26.6k|}
message.c:isc_buffer_putuint16:
  897|  52.5k|isc_buffer_putuint16(isc_buffer_t *restrict b, const uint16_t val) {
  898|  52.5k|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|  52.5k|	{                                                               \
  |  |  858|  52.5k|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|  52.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   105k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 52.5k, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 52.5k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  52.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|  52.5k|                                                                        \
  |  |  860|  52.5k|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 52.5k]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|  52.5k|                                                                        \
  |  |  865|  52.5k|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|  52.5k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  52.5k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 52.5k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  52.5k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|  52.5k|	}
  ------------------
  899|       |
  900|  52.5k|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|  52.5k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  901|  52.5k|	b->used += sizeof(val);
  902|  52.5k|	ISC_U16TO8_BE(cp, val);
  ------------------
  |  |  223|  52.5k|	(p)[0] = (uint8_t)((v) >> 8); \
  |  |  224|  52.5k|	(p)[1] = (uint8_t)((v));
  ------------------
  903|  52.5k|}
message.c:isc_buffer_init:
  524|   117k|		const unsigned int length) {
  525|   117k|	REQUIRE(b != NULL);
  ------------------
  |  |  198|   117k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   117k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 117k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   117k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|   117k|	*b = (isc_buffer_t){
  528|   117k|		.base = base,
  529|   117k|		.length = length,
  530|   117k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|   117k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|   117k|	{                                         \
  |  |  |  |   27|   117k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   117k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|   117k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   117k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|   117k|	}
  |  |  ------------------
  ------------------
  531|   117k|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|   117k|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|   117k|	};
  533|   117k|}
message.c:isc_buffer_putmem:
  965|  21.4M|		  const unsigned int length) {
  966|  21.4M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  21.4M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  42.8M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 21.4M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 21.4M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.4M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  967|       |
  968|  21.4M|	if (b->mctx) {
  ------------------
  |  Branch (968:6): [True: 0, False: 21.4M]
  ------------------
  969|      0|		isc_result_t result = isc_buffer_reserve(b, length);
  970|      0|		REQUIRE(result == ISC_R_SUCCESS);
  ------------------
  |  |  198|      0|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      0|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      0|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  971|      0|	}
  972|       |
  973|  21.4M|	REQUIRE(isc_buffer_availablelength(b) >= (unsigned int)length);
  ------------------
  |  |  198|  21.4M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  21.4M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 21.4M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  21.4M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  974|       |
  975|  21.4M|	if (length > 0U) {
  ------------------
  |  Branch (975:6): [True: 21.4M, False: 0]
  ------------------
  976|  21.4M|		memmove(isc_buffer_used(b), base, length);
  ------------------
  |  |  149|  21.4M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  977|  21.4M|		b->used += length;
  978|  21.4M|	}
  979|  21.4M|}
message.c:isc_buffer_putstr:
  996|   539M|isc_buffer_putstr(isc_buffer_t *restrict b, const char *restrict source) {
  997|   539M|	unsigned int   length;
  998|   539M|	unsigned char *cp;
  999|       |
 1000|   539M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   539M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.07G|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 539M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 539M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   539M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1001|   539M|	REQUIRE(source != NULL);
  ------------------
  |  |  198|   539M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   539M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 539M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   539M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1002|       |
 1003|   539M|	length = (unsigned int)strlen(source);
 1004|   539M|	if (b->mctx) {
  ------------------
  |  Branch (1004:6): [True: 0, False: 539M]
  ------------------
 1005|      0|		isc_result_t result = isc_buffer_reserve(b, length);
 1006|      0|		ENSURE(result == ISC_R_SUCCESS);
  ------------------
  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
 1007|      0|	}
 1008|       |
 1009|   539M|	REQUIRE(isc_buffer_availablelength(b) >= length);
  ------------------
  |  |  198|   539M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   539M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 539M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   539M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1010|       |
 1011|   539M|	cp = isc_buffer_used(b);
  ------------------
  |  |  149|   539M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1012|   539M|	memmove(cp, source, length);
 1013|   539M|	b->used += length;
 1014|   539M|}
message.c:isc_buffer_getuint32:
  916|   341k|isc_buffer_getuint32(isc_buffer_t *restrict b) {
  917|   341k|	uint32_t     val = 0;
  918|   341k|	isc_result_t result = isc_buffer_peekuint32(b, &val);
  919|   341k|	ENSURE(result == ISC_R_SUCCESS);
  ------------------
  |  |  200|   341k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|   341k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 341k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|   341k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  920|   341k|	b->current += sizeof(val);
  921|   341k|	return val;
  922|   341k|}
message.c:isc_buffer_peekuint32:
  906|   341k|isc_buffer_peekuint32(const isc_buffer_t *restrict b, uint32_t *valp) {
  907|   341k|	ISC_BUFFER_PEEK_CHECK(b, sizeof(*valp));
  ------------------
  |  |  831|   341k|	{                                           \
  |  |  832|   341k|		REQUIRE(ISC_BUFFER_VALID(b));       \
  |  |  ------------------
  |  |  |  |  198|   341k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   683k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 341k, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 341k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|   341k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  833|   341k|		if ((b)->used - (b)->current < s) { \
  |  |  ------------------
  |  |  |  Branch (833:7): [True: 0, False: 341k]
  |  |  ------------------
  |  |  834|      0|			return (ISC_R_NOMORE);      \
  |  |  835|      0|		}                                   \
  |  |  836|   341k|	}
  ------------------
  908|       |
  909|   341k|	uint8_t *cp = isc_buffer_current(b);
  ------------------
  |  |  145|   341k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  910|       |
  911|       |	SET_IF_NOT_NULL(valp, ISC_U8TO32_BE(cp));
  ------------------
  |  |  104|   341k|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 341k, False: 0]
  |  |  ------------------
  |  |  105|   341k|		*(obj) = (val);   \
  |  |  106|   341k|	}
  ------------------
  912|   341k|	return ISC_R_SUCCESS;
  913|   341k|}
message.c:isc_buffer_getuint8:
  848|  97.2k|isc_buffer_getuint8(isc_buffer_t *restrict b) {
  849|  97.2k|	uint8_t	     val = 0;
  850|  97.2k|	isc_result_t result = isc_buffer_peekuint8(b, &val);
  851|  97.2k|	ENSURE(result == ISC_R_SUCCESS);
  ------------------
  |  |  200|  97.2k|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|  97.2k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 97.2k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|  97.2k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
  852|  97.2k|	b->current += sizeof(val);
  853|  97.2k|	return val;
  854|  97.2k|}
message.c:isc_buffer_peekuint8:
  839|  97.2k|isc_buffer_peekuint8(const isc_buffer_t *restrict b, uint8_t *valp) {
  840|  97.2k|	ISC_BUFFER_PEEK_CHECK(b, sizeof(*valp));
  ------------------
  |  |  831|  97.2k|	{                                           \
  |  |  832|  97.2k|		REQUIRE(ISC_BUFFER_VALID(b));       \
  |  |  ------------------
  |  |  |  |  198|  97.2k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   194k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 97.2k, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 97.2k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  97.2k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  833|  97.2k|		if ((b)->used - (b)->current < s) { \
  |  |  ------------------
  |  |  |  Branch (833:7): [True: 0, False: 97.2k]
  |  |  ------------------
  |  |  834|      0|			return (ISC_R_NOMORE);      \
  |  |  835|      0|		}                                   \
  |  |  836|  97.2k|	}
  ------------------
  841|       |
  842|  97.2k|	uint8_t *cp = isc_buffer_current(b);
  ------------------
  |  |  145|  97.2k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  843|       |	SET_IF_NOT_NULL(valp, (uint8_t)(cp[0]));
  ------------------
  |  |  104|  97.2k|	if ((obj) != NULL) {      \
  |  |  ------------------
  |  |  |  Branch (104:6): [True: 97.2k, False: 0]
  |  |  ------------------
  |  |  105|  97.2k|		*(obj) = (val);   \
  |  |  106|  97.2k|	}
  ------------------
  844|  97.2k|	return ISC_R_SUCCESS;
  845|  97.2k|}
message.c:isc_buffer_forward:
  806|   128k|isc_buffer_forward(isc_buffer_t *restrict b, const unsigned int n) {
  807|   128k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   128k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   257k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 128k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 128k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   128k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  808|   128k|	REQUIRE(b->current + n <= b->used);
  ------------------
  |  |  198|   128k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   128k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 128k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   128k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  809|       |
  810|   128k|	b->current += n;
  811|   128k|}
message.c:isc_buffer_setactive:
  771|   763k|isc_buffer_setactive(isc_buffer_t *restrict b, const unsigned int n) {
  772|   763k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   763k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.52M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 763k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 763k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   763k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  773|   763k|	REQUIRE(b->current + n <= b->used);
  ------------------
  |  |  198|   763k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   763k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 763k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   763k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  774|       |
  775|   763k|	b->active = b->current + n;
  776|   763k|}
name.c:isc_buffer_clear:
  694|   284k|isc_buffer_clear(isc_buffer_t *restrict b) {
  695|   284k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   284k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   569k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 284k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 284k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   284k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  696|       |
  697|   284k|	b->used = 0;
  698|   284k|	b->current = 0;
  699|   284k|	b->active = 0;
  700|   284k|}
name.c:isc_buffer_add:
  652|  2.24M|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  2.24M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.24M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.49M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.24M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.24M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.24M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  2.24M|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  2.24M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.24M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.24M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.24M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  2.24M|	b->used += n;
  657|  2.24M|}
name.c:isc_buffer_reserve:
 1110|  86.8M|isc_buffer_reserve(isc_buffer_t *restrict dbuf, const unsigned int size) {
 1111|  86.8M|	REQUIRE(ISC_BUFFER_VALID(dbuf));
  ------------------
  |  |  198|  86.8M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   173M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 86.8M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 86.8M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  86.8M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1112|       |
 1113|  86.8M|	size_t len;
 1114|       |
 1115|  86.8M|	len = dbuf->length;
 1116|  86.8M|	if ((len - dbuf->used) >= size) {
  ------------------
  |  Branch (1116:6): [True: 86.8M, False: 7]
  ------------------
 1117|  86.8M|		return ISC_R_SUCCESS;
 1118|  86.8M|	}
 1119|       |
 1120|      7|	if (dbuf->mctx == NULL) {
  ------------------
  |  Branch (1120:6): [True: 7, False: 0]
  ------------------
 1121|      7|		return ISC_R_NOSPACE;
 1122|      7|	}
 1123|       |
 1124|       |	/* Round to nearest buffer size increment */
 1125|      0|	len = size + dbuf->used;
 1126|      0|	len = ISC_ALIGN(len, ISC_BUFFER_INCR);
  ------------------
  |  |  296|      0|#define ISC_ALIGN(x, a) (((x) + (a) - 1) & ~((typeof(x))(a) - 1))
  ------------------
 1127|       |
 1128|       |	/* Cap at UINT_MAX */
 1129|      0|	if (len > UINT_MAX) {
  ------------------
  |  Branch (1129:6): [True: 0, False: 0]
  ------------------
 1130|      0|		len = UINT_MAX;
 1131|      0|	}
 1132|       |
 1133|      0|	if ((len - dbuf->used) < size) {
  ------------------
  |  Branch (1133:6): [True: 0, False: 0]
  ------------------
 1134|      0|		return ISC_R_NOMEMORY;
 1135|      0|	}
 1136|       |
 1137|      0|	if (!dbuf->dynamic) {
  ------------------
  |  Branch (1137:6): [True: 0, False: 0]
  ------------------
 1138|      0|		void *old_base = dbuf->base;
 1139|      0|		dbuf->base = isc_mem_get(dbuf->mctx, len);
  ------------------
  |  |  128|      0|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1140|      0|		if (old_base != NULL) {
  ------------------
  |  Branch (1140:7): [True: 0, False: 0]
  ------------------
 1141|      0|			memmove(dbuf->base, old_base, dbuf->used);
 1142|      0|		}
 1143|      0|		dbuf->dynamic = true;
 1144|      0|	} else {
 1145|      0|		dbuf->base = isc_mem_creget(dbuf->mctx, dbuf->base,
  ------------------
  |  |  135|      0|	isc__mem_reget((c), (p), ISC_CHECKED_MUL((o), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  136|      0|		       ISC_CHECKED_MUL((n), (s)),           \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  137|      0|		       ISC__MEM_ZERO _ISC_MEM_FILELINE)
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  ------------------
 1146|      0|					    dbuf->length, len, sizeof(char));
 1147|      0|	}
 1148|      0|	dbuf->length = (unsigned int)len;
 1149|       |
 1150|      0|	return ISC_R_SUCCESS;
 1151|      0|}
name.c:isc_buffer_putuint8:
  869|  10.5M|isc_buffer_putuint8(isc_buffer_t *restrict b, const uint8_t val) {
  870|  10.5M|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|  10.5M|	{                                                               \
  |  |  858|  10.5M|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|  10.5M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  21.0M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 10.5M, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 10.5M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  10.5M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|  10.5M|                                                                        \
  |  |  860|  10.5M|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 10.5M]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|  10.5M|                                                                        \
  |  |  865|  10.5M|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|  10.5M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  10.5M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 10.5M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  10.5M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|  10.5M|	}
  ------------------
  871|       |
  872|  10.5M|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|  10.5M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  873|  10.5M|	b->used += sizeof(val);
  874|  10.5M|	cp[0] = val;
  875|  10.5M|}
name.c:isc_buffer_putuint16:
  897|  2.33M|isc_buffer_putuint16(isc_buffer_t *restrict b, const uint16_t val) {
  898|  2.33M|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|  2.33M|	{                                                               \
  |  |  858|  2.33M|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|  2.33M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  4.67M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 2.33M, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 2.33M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  2.33M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|  2.33M|                                                                        \
  |  |  860|  2.33M|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 2.33M]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|  2.33M|                                                                        \
  |  |  865|  2.33M|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|  2.33M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  2.33M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 2.33M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  2.33M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|  2.33M|	}
  ------------------
  899|       |
  900|  2.33M|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|  2.33M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  901|  2.33M|	b->used += sizeof(val);
  902|  2.33M|	ISC_U16TO8_BE(cp, val);
  ------------------
  |  |  223|  2.33M|	(p)[0] = (uint8_t)((v) >> 8); \
  |  |  224|  2.33M|	(p)[1] = (uint8_t)((v));
  ------------------
  903|  2.33M|}
name.c:isc_buffer_putuint32:
  925|  74.0M|isc_buffer_putuint32(isc_buffer_t *restrict b, const uint32_t val) {
  926|  74.0M|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|  74.0M|	{                                                               \
  |  |  858|  74.0M|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|  74.0M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   148M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 74.0M, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 74.0M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  74.0M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|  74.0M|                                                                        \
  |  |  860|  74.0M|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 74.0M]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|  74.0M|                                                                        \
  |  |  865|  74.0M|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|  74.0M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|  74.0M|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 74.0M, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|  74.0M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|  74.0M|	}
  ------------------
  927|       |
  928|  74.0M|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|  74.0M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  929|  74.0M|	b->used += sizeof(val);
  930|       |
  931|  74.0M|	ISC_U32TO8_BE(cp, val);
  ------------------
  |  |  229|  74.0M|	(p)[0] = (uint8_t)((v) >> 24); \
  |  |  230|  74.0M|	(p)[1] = (uint8_t)((v) >> 16); \
  |  |  231|  74.0M|	(p)[2] = (uint8_t)((v) >> 8);  \
  |  |  232|  74.0M|	(p)[3] = (uint8_t)((v));
  ------------------
  932|  74.0M|}
name.c:isc_buffer_forward:
  806|  1.79M|isc_buffer_forward(isc_buffer_t *restrict b, const unsigned int n) {
  807|  1.79M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  1.79M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.59M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.79M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.79M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.79M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  808|  1.79M|	REQUIRE(b->current + n <= b->used);
  ------------------
  |  |  198|  1.79M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.79M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.79M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.79M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  809|       |
  810|  1.79M|	b->current += n;
  811|  1.79M|}
name.c:isc_buffer_init:
  524|  2.49k|		const unsigned int length) {
  525|  2.49k|	REQUIRE(b != NULL);
  ------------------
  |  |  198|  2.49k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.49k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.49k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.49k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|  2.49k|	*b = (isc_buffer_t){
  528|  2.49k|		.base = base,
  529|  2.49k|		.length = length,
  530|  2.49k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  2.49k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  2.49k|	{                                         \
  |  |  |  |   27|  2.49k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  2.49k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  2.49k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  2.49k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  2.49k|	}
  |  |  ------------------
  ------------------
  531|  2.49k|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|  2.49k|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|  2.49k|	};
  533|  2.49k|}
rcode.c:isc_buffer_init:
  524|  5.98k|		const unsigned int length) {
  525|  5.98k|	REQUIRE(b != NULL);
  ------------------
  |  |  198|  5.98k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.98k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.98k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.98k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|  5.98k|	*b = (isc_buffer_t){
  528|  5.98k|		.base = base,
  529|  5.98k|		.length = length,
  530|  5.98k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  5.98k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  5.98k|	{                                         \
  |  |  |  |   27|  5.98k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  5.98k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  5.98k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  5.98k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  5.98k|	}
  |  |  ------------------
  ------------------
  531|  5.98k|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|  5.98k|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|  5.98k|	};
  533|  5.98k|}
rcode.c:isc_buffer_usedregion:
  616|  5.98k|		      isc_region_t *restrict r) {
  617|  5.98k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  5.98k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  11.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 5.98k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 5.98k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.98k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  618|  5.98k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  5.98k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.98k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 5.98k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  5.98k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  619|       |
  620|  5.98k|	r->base = b->base;
  621|  5.98k|	r->length = b->used;
  622|  5.98k|}
rcode.c:isc_buffer_availableregion:
  634|   407k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|   407k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   407k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   815k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 407k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 407k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   407k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|   407k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   407k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   407k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 407k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   407k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|   407k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|   407k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|   407k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|   407k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|   407k|}
rcode.c:isc_buffer_add:
  652|   407k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|   407k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   407k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   815k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 407k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 407k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   407k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|   407k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|   407k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   407k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 407k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   407k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|   407k|	b->used += n;
  657|   407k|}
rdata.c:isc_buffer_activeregion:
  748|   315k|isc_buffer_activeregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  749|   315k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   315k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   631k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 315k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 315k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   315k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  750|   315k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   315k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   315k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 315k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   315k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  751|       |
  752|   315k|	if (b->current < b->active) {
  ------------------
  |  Branch (752:6): [True: 304k, False: 11.4k]
  ------------------
  753|   304k|		r->base = isc_buffer_current(b);
  ------------------
  |  |  145|   304k|	((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
  ------------------
  754|   304k|		r->length = isc_buffer_activelength(b);
  ------------------
  |  |  160|   304k|#define isc_buffer_activelength(b)    ((b)->active - (b)->current) /* c-b */
  ------------------
  755|   304k|	} else {
  756|       |		r->base = NULL;
  757|  11.4k|		r->length = 0;
  758|  11.4k|	}
  759|   315k|}
rdata.c:isc_buffer_putmem:
  965|   104k|		  const unsigned int length) {
  966|   104k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   104k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   208k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 104k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 104k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   104k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  967|       |
  968|   104k|	if (b->mctx) {
  ------------------
  |  Branch (968:6): [True: 104k, False: 0]
  ------------------
  969|   104k|		isc_result_t result = isc_buffer_reserve(b, length);
  970|   104k|		REQUIRE(result == ISC_R_SUCCESS);
  ------------------
  |  |  198|   104k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   104k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 104k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   104k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  971|   104k|	}
  972|       |
  973|   104k|	REQUIRE(isc_buffer_availablelength(b) >= (unsigned int)length);
  ------------------
  |  |  198|   104k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   104k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 104k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   104k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  974|       |
  975|   104k|	if (length > 0U) {
  ------------------
  |  Branch (975:6): [True: 52.5k, False: 51.7k]
  ------------------
  976|  52.5k|		memmove(isc_buffer_used(b), base, length);
  ------------------
  |  |  149|  52.5k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  977|  52.5k|		b->used += length;
  978|  52.5k|	}
  979|   104k|}
rdata.c:isc_buffer_reserve:
 1110|   104k|isc_buffer_reserve(isc_buffer_t *restrict dbuf, const unsigned int size) {
 1111|   104k|	REQUIRE(ISC_BUFFER_VALID(dbuf));
  ------------------
  |  |  198|   104k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   208k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 104k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 104k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   104k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1112|       |
 1113|   104k|	size_t len;
 1114|       |
 1115|   104k|	len = dbuf->length;
 1116|   104k|	if ((len - dbuf->used) >= size) {
  ------------------
  |  Branch (1116:6): [True: 104k, False: 0]
  ------------------
 1117|   104k|		return ISC_R_SUCCESS;
 1118|   104k|	}
 1119|       |
 1120|      0|	if (dbuf->mctx == NULL) {
  ------------------
  |  Branch (1120:6): [True: 0, False: 0]
  ------------------
 1121|      0|		return ISC_R_NOSPACE;
 1122|      0|	}
 1123|       |
 1124|       |	/* Round to nearest buffer size increment */
 1125|      0|	len = size + dbuf->used;
 1126|      0|	len = ISC_ALIGN(len, ISC_BUFFER_INCR);
  ------------------
  |  |  296|      0|#define ISC_ALIGN(x, a) (((x) + (a) - 1) & ~((typeof(x))(a) - 1))
  ------------------
 1127|       |
 1128|       |	/* Cap at UINT_MAX */
 1129|      0|	if (len > UINT_MAX) {
  ------------------
  |  Branch (1129:6): [True: 0, False: 0]
  ------------------
 1130|      0|		len = UINT_MAX;
 1131|      0|	}
 1132|       |
 1133|      0|	if ((len - dbuf->used) < size) {
  ------------------
  |  Branch (1133:6): [True: 0, False: 0]
  ------------------
 1134|      0|		return ISC_R_NOMEMORY;
 1135|      0|	}
 1136|       |
 1137|      0|	if (!dbuf->dynamic) {
  ------------------
  |  Branch (1137:6): [True: 0, False: 0]
  ------------------
 1138|      0|		void *old_base = dbuf->base;
 1139|      0|		dbuf->base = isc_mem_get(dbuf->mctx, len);
  ------------------
  |  |  128|      0|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1140|      0|		if (old_base != NULL) {
  ------------------
  |  Branch (1140:7): [True: 0, False: 0]
  ------------------
 1141|      0|			memmove(dbuf->base, old_base, dbuf->used);
 1142|      0|		}
 1143|      0|		dbuf->dynamic = true;
 1144|      0|	} else {
 1145|      0|		dbuf->base = isc_mem_creget(dbuf->mctx, dbuf->base,
  ------------------
  |  |  135|      0|	isc__mem_reget((c), (p), ISC_CHECKED_MUL((o), (s)), \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  136|      0|		       ISC_CHECKED_MUL((n), (s)),           \
  |  |  ------------------
  |  |  |  |   32|      0|	({                                                \
  |  |  |  |   33|      0|		typeof(a) _c;                             \
  |  |  |  |   34|      0|		bool	  _overflow = ckd_mul(&_c, a, b); \
  |  |  |  |   35|      0|		INSIST(!_overflow);                       \
  |  |  |  |  ------------------
  |  |  |  |  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      0|		_c;                                       \
  |  |  |  |   37|      0|	})
  |  |  ------------------
  |  |  137|      0|		       ISC__MEM_ZERO _ISC_MEM_FILELINE)
  |  |  ------------------
  |  |  |  |  126|      0|#define ISC__MEM_ZERO ((int)0x40)
  |  |  ------------------
  ------------------
 1146|      0|					    dbuf->length, len, sizeof(char));
 1147|      0|	}
 1148|      0|	dbuf->length = (unsigned int)len;
 1149|       |
 1150|      0|	return ISC_R_SUCCESS;
 1151|      0|}
rdata.c:isc_buffer_forward:
  806|   411k|isc_buffer_forward(isc_buffer_t *restrict b, const unsigned int n) {
  807|   411k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   411k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   822k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 411k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 411k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   411k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  808|   411k|	REQUIRE(b->current + n <= b->used);
  ------------------
  |  |  198|   411k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   411k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 411k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   411k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  809|       |
  810|   411k|	b->current += n;
  811|   411k|}
rdata.c:isc_buffer_availableregion:
  634|  2.69M|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  2.69M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.69M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.38M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.69M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.69M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.69M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  2.69M|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  2.69M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.69M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.69M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.69M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  2.69M|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  2.69M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  2.69M|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  2.69M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  2.69M|}
rdata.c:isc_buffer_add:
  652|  2.67M|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  2.67M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  2.67M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  5.34M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.67M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.67M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.67M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  2.67M|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  2.67M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.67M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.67M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.67M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  2.67M|	b->used += n;
  657|  2.67M|}
rdata.c:isc_buffer_putstr:
  996|  11.4k|isc_buffer_putstr(isc_buffer_t *restrict b, const char *restrict source) {
  997|  11.4k|	unsigned int   length;
  998|  11.4k|	unsigned char *cp;
  999|       |
 1000|  11.4k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  11.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  22.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 11.4k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 11.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  11.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1001|  11.4k|	REQUIRE(source != NULL);
  ------------------
  |  |  198|  11.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  11.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 11.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  11.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1002|       |
 1003|  11.4k|	length = (unsigned int)strlen(source);
 1004|  11.4k|	if (b->mctx) {
  ------------------
  |  Branch (1004:6): [True: 0, False: 11.4k]
  ------------------
 1005|      0|		isc_result_t result = isc_buffer_reserve(b, length);
 1006|      0|		ENSURE(result == ISC_R_SUCCESS);
  ------------------
  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  ------------------
  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |   51|      0|		 0)))
  |  |  ------------------
  ------------------
 1007|      0|	}
 1008|       |
 1009|  11.4k|	REQUIRE(isc_buffer_availablelength(b) >= length);
  ------------------
  |  |  198|  11.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  11.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 11.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  11.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1010|       |
 1011|  11.4k|	cp = isc_buffer_used(b);
  ------------------
  |  |  149|  11.4k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
 1012|  11.4k|	memmove(cp, source, length);
 1013|  11.4k|	b->used += length;
 1014|  11.4k|}
rdata.c:isc_buffer_subtract:
  669|   102k|isc_buffer_subtract(isc_buffer_t *restrict b, const unsigned int n) {
  670|   102k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   102k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   205k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 102k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 102k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   102k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  671|   102k|	REQUIRE(b->used >= n);
  ------------------
  |  |  198|   102k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   102k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 102k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   102k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  672|       |
  673|   102k|	b->used -= n;
  674|   102k|	if (b->current > b->used) {
  ------------------
  |  Branch (674:6): [True: 0, False: 102k]
  ------------------
  675|      0|		b->current = b->used;
  676|      0|	}
  677|   102k|	if (b->active > b->used) {
  ------------------
  |  Branch (677:6): [True: 0, False: 102k]
  ------------------
  678|      0|		b->active = b->used;
  679|      0|	}
  680|   102k|}
rdata.c:isc_buffer_init:
  524|  8.59k|		const unsigned int length) {
  525|  8.59k|	REQUIRE(b != NULL);
  ------------------
  |  |  198|  8.59k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.59k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8.59k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  8.59k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|  8.59k|	*b = (isc_buffer_t){
  528|  8.59k|		.base = base,
  529|  8.59k|		.length = length,
  530|  8.59k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|  8.59k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|  8.59k|	{                                         \
  |  |  |  |   27|  8.59k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  8.59k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|  8.59k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|  8.59k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|  8.59k|	}
  |  |  ------------------
  ------------------
  531|  8.59k|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|  8.59k|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|  8.59k|	};
  533|  8.59k|}
rdataset.c:isc_buffer_availableregion:
  634|   159k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|   159k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   159k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   318k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 159k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 159k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   159k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|   159k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|   159k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   159k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 159k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   159k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|   159k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|   159k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|   159k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|   159k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|   159k|}
rdataset.c:isc_buffer_putuint16:
  897|   449k|isc_buffer_putuint16(isc_buffer_t *restrict b, const uint16_t val) {
  898|   449k|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|   449k|	{                                                               \
  |  |  858|   449k|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|   449k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   899k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 449k, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 449k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|   449k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|   449k|                                                                        \
  |  |  860|   449k|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 449k]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|   449k|                                                                        \
  |  |  865|   449k|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|   449k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   449k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 449k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|   449k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|   449k|	}
  ------------------
  899|       |
  900|   449k|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|   449k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  901|   449k|	b->used += sizeof(val);
  902|   449k|	ISC_U16TO8_BE(cp, val);
  ------------------
  |  |  223|   449k|	(p)[0] = (uint8_t)((v) >> 8); \
  |  |  224|   449k|	(p)[1] = (uint8_t)((v));
  ------------------
  903|   449k|}
rdataset.c:isc_buffer_putuint32:
  925|   131k|isc_buffer_putuint32(isc_buffer_t *restrict b, const uint32_t val) {
  926|   131k|	ISC_BUFFER_PUT_RESERVE(b, val, sizeof(val));
  ------------------
  |  |  857|   131k|	{                                                               \
  |  |  858|   131k|		REQUIRE(ISC_BUFFER_VALID(b));                           \
  |  |  ------------------
  |  |  |  |  198|   131k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   263k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:11): [True: 131k, False: 0]
  |  |  |  |  |  |  |  Branch (42:11): [True: 131k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|   131k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  859|   131k|                                                                        \
  |  |  860|   131k|		if (b->mctx) {                                          \
  |  |  ------------------
  |  |  |  Branch (860:7): [True: 0, False: 131k]
  |  |  ------------------
  |  |  861|      0|			isc_result_t result = isc_buffer_reserve(b, s); \
  |  |  862|      0|			ENSURE(result == ISC_R_SUCCESS);                \
  |  |  ------------------
  |  |  |  |  200|      0|#define ENSURE(e)    ISC_ENSURE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   48|      0|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (48:10): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   49|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (49:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   50|      0|					isc_assertiontype_ensure, #cond), \
  |  |  |  |  |  |   51|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  863|      0|		}                                                       \
  |  |  864|   131k|                                                                        \
  |  |  865|   131k|		REQUIRE(isc_buffer_availablelength(b) >= s);            \
  |  |  ------------------
  |  |  |  |  198|   131k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|   131k|	((void)((cond) ||                                                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (42:10): [True: 131k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   43|   131k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |  |  |   45|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  866|   131k|	}
  ------------------
  927|       |
  928|   131k|	uint8_t *cp = isc_buffer_used(b);
  ------------------
  |  |  149|   131k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  929|   131k|	b->used += sizeof(val);
  930|       |
  931|   131k|	ISC_U32TO8_BE(cp, val);
  ------------------
  |  |  229|   131k|	(p)[0] = (uint8_t)((v) >> 24); \
  |  |  230|   131k|	(p)[1] = (uint8_t)((v) >> 16); \
  |  |  231|   131k|	(p)[2] = (uint8_t)((v) >> 8);  \
  |  |  232|   131k|	(p)[3] = (uint8_t)((v));
  ------------------
  932|   131k|}
rdataset.c:isc_buffer_add:
  652|   131k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|   131k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|   131k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   263k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 131k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 131k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   131k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|   131k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|   131k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   131k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 131k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   131k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|   131k|	b->used += n;
  657|   131k|}
time.c:isc_buffer_availableregion:
  634|  16.6k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  16.6k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  16.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  33.2k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 16.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 16.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  16.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  16.6k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  16.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  16.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 16.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  16.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  16.6k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  16.6k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  16.6k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  16.6k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  16.6k|}
time.c:isc_buffer_add:
  652|  16.6k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  16.6k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  16.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  33.2k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 16.6k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 16.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  16.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  16.6k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  16.6k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  16.6k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 16.6k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  16.6k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  16.6k|	b->used += n;
  657|  16.6k|}
ttl.c:isc_buffer_availableregion:
  634|  99.0k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  99.0k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  99.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   198k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 99.0k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 99.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  99.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  99.0k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  99.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  99.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 99.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  99.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  99.0k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  99.0k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  99.0k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  99.0k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  99.0k|}
ttl.c:isc_buffer_add:
  652|  99.0k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  99.0k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  99.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   198k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 99.0k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 99.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  99.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  99.0k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  99.0k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  99.0k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 99.0k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  99.0k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  99.0k|	b->used += n;
  657|  99.0k|}
fixedname.c:isc_buffer_init:
  524|   950k|		const unsigned int length) {
  525|   950k|	REQUIRE(b != NULL);
  ------------------
  |  |  198|   950k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   950k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 950k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   950k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  526|       |
  527|   950k|	*b = (isc_buffer_t){
  528|   950k|		.base = base,
  529|   950k|		.length = length,
  530|   950k|		.link = ISC_LINK_INITIALIZER,
  ------------------
  |  |   30|   950k|#define ISC_LINK_INITIALIZER ISC_LINK_INITIALIZER_TYPE(void)
  |  |  ------------------
  |  |  |  |   26|   950k|	{                                         \
  |  |  |  |   27|   950k|		.prev = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   950k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   28|   950k|		.next = ISC_LINK_TOMBSTONE(type), \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|   950k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   29|   950k|	}
  |  |  ------------------
  ------------------
  531|   950k|		.magic = ISC_BUFFER_MAGIC,
  ------------------
  |  |  121|   950k|#define ISC_BUFFER_MAGIC    0x42756621U /* Buf!. */
  ------------------
  532|   950k|	};
  533|   950k|}
base32.c:isc_buffer_availableregion:
  634|  19.1k|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  19.1k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  19.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  38.2k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 19.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 19.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  19.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  19.1k|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  19.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  19.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 19.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  19.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  19.1k|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  19.1k|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  19.1k|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  19.1k|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  19.1k|}
base32.c:isc_buffer_add:
  652|  19.1k|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  19.1k|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  19.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  38.2k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 19.1k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 19.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  19.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  19.1k|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  19.1k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  19.1k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 19.1k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  19.1k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  19.1k|	b->used += n;
  657|  19.1k|}
base64.c:isc_buffer_availableregion:
  634|  1.28M|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  1.28M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  1.28M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.57M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.28M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.28M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.28M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  1.28M|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  1.28M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.28M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.28M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.28M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  1.28M|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  1.28M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  1.28M|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  1.28M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  1.28M|}
base64.c:isc_buffer_add:
  652|  1.28M|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  1.28M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  1.28M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.57M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.28M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.28M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.28M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  1.28M|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  1.28M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.28M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.28M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.28M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  1.28M|	b->used += n;
  657|  1.28M|}
hex.c:isc_buffer_availableregion:
  634|  1.97M|isc_buffer_availableregion(isc_buffer_t *restrict b, isc_region_t *restrict r) {
  635|  1.97M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  1.97M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.95M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.97M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.97M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.97M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  636|  1.97M|	REQUIRE(r != NULL);
  ------------------
  |  |  198|  1.97M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.97M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.97M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.97M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  637|       |
  638|  1.97M|	r->base = isc_buffer_used(b);
  ------------------
  |  |  149|  1.97M|	((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
  ------------------
  639|  1.97M|	r->length = isc_buffer_availablelength(b);
  ------------------
  |  |  161|  1.97M|#define isc_buffer_availablelength(b) ((b)->length - (b)->used)	   /* e-d */
  ------------------
  640|  1.97M|}
hex.c:isc_buffer_add:
  652|  1.97M|isc_buffer_add(isc_buffer_t *restrict b, const unsigned int n) {
  653|  1.97M|	REQUIRE(ISC_BUFFER_VALID(b));
  ------------------
  |  |  198|  1.97M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  3.95M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 1.97M, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 1.97M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.97M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  654|  1.97M|	REQUIRE(b->used + n <= b->length);
  ------------------
  |  |  198|  1.97M|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.97M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 1.97M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  1.97M|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  655|       |
  656|  1.97M|	b->used += n;
  657|  1.97M|}

compress.c:isc_hash_bits32:
  114|   639k|isc_hash_bits32(uint32_t val, unsigned int bits) {
  115|   639k|	ISC_REQUIRE(bits <= ISC_HASH_MAX_BITS);
  ------------------
  |  |   42|   639k|	((void)((cond) ||                                                  \
  |  |  ------------------
  |  |  |  Branch (42:10): [True: 639k, False: 0]
  |  |  ------------------
  |  |   43|   639k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  ------------------
  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  ------------------
  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |   45|      0|		 0)))
  ------------------
  116|       |	/* High bits are more random. */
  117|   639k|	return val * ISC_HASH_GOLDENRATIO_32 >> (32 - bits);
  ------------------
  |  |  111|   639k|#define ISC_HASH_GOLDENRATIO_32 0x61C88647
  ------------------
  118|   639k|}
name.c:isc_hash32:
   53|   255k|isc_hash32(const void *data, const size_t length, const bool case_sensitive) {
   54|   255k|	isc_hash32_t state;
   55|   255k|	isc_hash32_init(&state);
   56|   255k|	isc_hash32_hash(&state, data, length, case_sensitive);
   57|   255k|	return isc_hash32_finalize(&state);
   58|   255k|}
hashmap.c:isc_hash_bits32:
  114|   635k|isc_hash_bits32(uint32_t val, unsigned int bits) {
  115|   635k|	ISC_REQUIRE(bits <= ISC_HASH_MAX_BITS);
  ------------------
  |  |   42|   635k|	((void)((cond) ||                                                  \
  |  |  ------------------
  |  |  |  Branch (42:10): [True: 635k, False: 0]
  |  |  ------------------
  |  |   43|   635k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  ------------------
  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  ------------------
  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |   45|      0|		 0)))
  ------------------
  116|       |	/* High bits are more random. */
  117|   635k|	return val * ISC_HASH_GOLDENRATIO_32 >> (32 - bits);
  ------------------
  |  |  111|   635k|#define ISC_HASH_GOLDENRATIO_32 0x61C88647
  ------------------
  118|   635k|}

isc_lib_initialize:
   57|      2|isc_lib_initialize(void) {
   58|      2|	isc__lib_initialize();
   59|      2|}

isc_mem_attach:
  222|  96.4k|	stat void name##_attach(name##_t *ptr, name##_t **ptrp) {    \
  223|  96.4k|		REQUIRE(ptrp != NULL && *ptrp == NULL);              \
  ------------------
  |  |  198|  96.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   192k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 96.4k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 96.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  96.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  224|  96.4k|		name##_ref(ptr);                                     \
  225|  96.4k|		*ptrp = ptr;                                         \
  226|  96.4k|	}                                                            \

hash.c:isc_halfsiphash13_init:
  633|   491k|isc_halfsiphash13_init(isc_halfsiphash24_t *restrict state, const uint8_t *k) {
  634|   491k|	REQUIRE(k != NULL);
  ------------------
  |  |  198|   491k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   491k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 491k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   491k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  635|       |
  636|   491k|	uint32_t k0 = ISC_U8TO32_LE(k);
  ------------------
  |  |  188|   491k|	(((uint32_t)((p)[0])) | ((uint32_t)((p)[1]) << 8) | \
  |  |  189|   491k|	 ((uint32_t)((p)[2]) << 16) | ((uint32_t)((p)[3]) << 24))
  ------------------
  637|   491k|	uint32_t k1 = ISC_U8TO32_LE(k + 4);
  ------------------
  |  |  188|   491k|	(((uint32_t)((p)[0])) | ((uint32_t)((p)[1]) << 8) | \
  |  |  189|   491k|	 ((uint32_t)((p)[2]) << 16) | ((uint32_t)((p)[3]) << 24))
  ------------------
  638|       |
  639|   491k|	*state = (isc_halfsiphash24_t){
  640|   491k|		.k0 = k0,
  641|   491k|		.k1 = k1,
  642|   491k|		.v0 = UINT32_C(0x00000000) ^ k0,
  643|   491k|		.v1 = UINT32_C(0x00000000) ^ k1,
  644|   491k|		.v2 = UINT32_C(0x6c796765) ^ k0,
  645|       |		.v3 = UINT32_C(0x74656462) ^ k1,
  646|   491k|	};
  647|   491k|}
hash.c:isc_halfsiphash13_hash:
  662|   962k|		       const size_t inlen, const bool case_sensitive) {
  663|   962k|	REQUIRE(inlen == 0 || in != NULL);
  ------------------
  |  |  198|   962k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.92M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 0, False: 962k]
  |  |  |  |  |  Branch (42:11): [True: 962k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   962k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  664|       |
  665|   962k|	if (in == NULL || inlen == 0) {
  ------------------
  |  Branch (665:6): [True: 0, False: 962k]
  |  Branch (665:20): [True: 0, False: 962k]
  ------------------
  666|      0|		return;
  667|      0|	}
  668|       |
  669|   962k|	size_t	  len = inlen;
  670|   962k|	const int right = state->inlen & 3;
  671|       |
  672|   962k|	switch (right) {
  673|   726k|	case 0:
  ------------------
  |  Branch (673:2): [True: 726k, False: 235k]
  ------------------
  674|   726k|		break;
  675|      0|	case 1:
  ------------------
  |  Branch (675:2): [True: 0, False: 962k]
  ------------------
  676|      0|		state->b |= U8TO32_ONE(case_sensitive, in[0]) << 8;
  ------------------
  |  |   77|      0|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  677|      0|		state->inlen++;
  678|      0|		++in;
  679|       |
  680|      0|		if (--len == 0) {
  ------------------
  |  Branch (680:7): [True: 0, False: 0]
  ------------------
  681|      0|			return;
  682|      0|		}
  683|      0|		FALLTHROUGH;
  ------------------
  |  |  101|      0|#define FALLTHROUGH [[fallthrough]]
  ------------------
  684|   235k|	case 2:
  ------------------
  |  Branch (684:2): [True: 235k, False: 726k]
  ------------------
  685|   235k|		state->b |= U8TO32_ONE(case_sensitive, in[0]) << 16;
  ------------------
  |  |   77|   235k|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 235k, False: 0]
  |  |  ------------------
  ------------------
  686|   235k|		state->inlen++;
  687|   235k|		++in;
  688|       |
  689|   235k|		if (--len == 0) {
  ------------------
  |  Branch (689:7): [True: 0, False: 235k]
  ------------------
  690|      0|			return;
  691|      0|		}
  692|   235k|		FALLTHROUGH;
  ------------------
  |  |  101|   235k|#define FALLTHROUGH [[fallthrough]]
  ------------------
  693|   235k|	case 3:
  ------------------
  |  Branch (693:2): [True: 0, False: 962k]
  ------------------
  694|   235k|		state->b |= U8TO32_ONE(case_sensitive, in[0]) << 24;
  ------------------
  |  |   77|   235k|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 235k, False: 0]
  |  |  ------------------
  ------------------
  695|   235k|		state->inlen++;
  696|   235k|		++in;
  697|       |
  698|   235k|		isc_halfsiphash13_one(state, state->b);
  699|   235k|		state->b = 0; /* consumed */
  700|       |
  701|   235k|		if (--len == 0) {
  ------------------
  |  Branch (701:7): [True: 235k, False: 0]
  ------------------
  702|   235k|			return;
  703|   235k|		}
  704|      0|		break;
  705|      0|	default:
  ------------------
  |  Branch (705:2): [True: 0, False: 962k]
  ------------------
  706|      0|		UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  707|   962k|	}
  708|       |
  709|   726k|	const uint8_t *end = in + len - (len % sizeof(uint32_t));
  710|   726k|	const int      left = len & 3;
  711|       |
  712|  1.34M|	for (; in != end; in += 4) {
  ------------------
  |  Branch (712:9): [True: 618k, False: 726k]
  ------------------
  713|   618k|		uint32_t m = case_sensitive
  ------------------
  |  Branch (713:16): [True: 0, False: 618k]
  ------------------
  714|   618k|				     ? ISC_U8TO32_LE(in)
  ------------------
  |  |  188|      0|	(((uint32_t)((p)[0])) | ((uint32_t)((p)[1]) << 8) | \
  |  |  189|      0|	 ((uint32_t)((p)[2]) << 16) | ((uint32_t)((p)[3]) << 24))
  ------------------
  715|   618k|				     : isc_ascii_tolower4(ISC_U8TO32_LE(in));
  ------------------
  |  |  188|   618k|	(((uint32_t)((p)[0])) | ((uint32_t)((p)[1]) << 8) | \
  |  |  189|   618k|	 ((uint32_t)((p)[2]) << 16) | ((uint32_t)((p)[3]) << 24))
  ------------------
  716|       |
  717|   618k|		isc_halfsiphash13_one(state, m);
  718|   618k|	}
  719|       |
  720|   726k|	INSIST(state->b == 0);
  ------------------
  |  |  202|   726k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   726k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 726k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   726k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  721|   726k|	switch (left) {
  722|  24.0k|	case 3:
  ------------------
  |  Branch (722:2): [True: 24.0k, False: 702k]
  ------------------
  723|  24.0k|		state->b |= U8TO32_ONE(case_sensitive, in[2]) << 16;
  ------------------
  |  |   77|  24.0k|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 0, False: 24.0k]
  |  |  ------------------
  ------------------
  724|  24.0k|		FALLTHROUGH;
  ------------------
  |  |  101|  24.0k|#define FALLTHROUGH [[fallthrough]]
  ------------------
  725|   508k|	case 2:
  ------------------
  |  Branch (725:2): [True: 484k, False: 242k]
  ------------------
  726|   508k|		state->b |= U8TO32_ONE(case_sensitive, in[1]) << 8;
  ------------------
  |  |   77|   508k|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 471k, False: 37.3k]
  |  |  ------------------
  ------------------
  727|   508k|		FALLTHROUGH;
  ------------------
  |  |  101|   508k|#define FALLTHROUGH [[fallthrough]]
  ------------------
  728|   706k|	case 1:
  ------------------
  |  Branch (728:2): [True: 198k, False: 528k]
  ------------------
  729|   706k|		state->b |= U8TO32_ONE(case_sensitive, in[0]);
  ------------------
  |  |   77|   706k|	(uint32_t)(case_sensitive ? byte : isc__ascii_tolower1(byte))
  |  |  ------------------
  |  |  |  Branch (77:13): [True: 471k, False: 235k]
  |  |  ------------------
  ------------------
  730|   706k|		FALLTHROUGH;
  ------------------
  |  |  101|   706k|#define FALLTHROUGH [[fallthrough]]
  ------------------
  731|   726k|	case 0:
  ------------------
  |  Branch (731:2): [True: 20.0k, False: 706k]
  ------------------
  732|   726k|		break;
  733|      0|	default:
  ------------------
  |  Branch (733:2): [True: 0, False: 726k]
  ------------------
  734|      0|		UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  735|   726k|	}
  736|       |
  737|   726k|	state->inlen += len;
  738|   726k|}
hash.c:isc_halfsiphash13_one:
  650|  1.34M|isc_halfsiphash13_one(isc_halfsiphash13_t *restrict state, const uint32_t m) {
  651|  1.34M|	state->v3 ^= m;
  652|       |
  653|  2.68M|	for (size_t i = 0; i < cROUNDS_13; ++i) {
  ------------------
  |  |   47|  2.68M|#define cROUNDS_13 1
  ------------------
  |  Branch (653:21): [True: 1.34M, False: 1.34M]
  ------------------
  654|  1.34M|		HALFSIPROUND(state->v0, state->v1, state->v2, state->v3);
  ------------------
  |  |   74|  1.34M|#define HALFSIPROUND FULL_ROUND32
  |  |  ------------------
  |  |  |  |   71|  1.34M|	HALF_ROUND32(v0, v1, v2, v3, 5, 8); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   64|  1.34M|	a += b;                        \
  |  |  |  |  |  |   65|  1.34M|	c += d;                        \
  |  |  |  |  |  |   66|  1.34M|	b = ISC_ROTATE_LEFT(b, s) ^ a; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.34M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.34M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.34M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.34M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.34M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   67|  1.34M|	d = ISC_ROTATE_LEFT(d, t) ^ c; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.34M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.34M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.34M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.34M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.34M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   68|  1.34M|	a = ISC_ROTATE_LEFT(a, 16);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.34M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.34M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.34M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.34M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.34M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   72|  1.34M|	HALF_ROUND32(v2, v1, v0, v3, 13, 7);
  |  |  |  |  ------------------
  |  |  |  |  |  |   64|  1.34M|	a += b;                        \
  |  |  |  |  |  |   65|  1.34M|	c += d;                        \
  |  |  |  |  |  |   66|  1.34M|	b = ISC_ROTATE_LEFT(b, s) ^ a; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.34M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.34M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.34M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.34M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.34M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   67|  1.34M|	d = ISC_ROTATE_LEFT(d, t) ^ c; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.34M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.34M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.34M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.34M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.34M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   68|  1.34M|	a = ISC_ROTATE_LEFT(a, 16);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.34M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.34M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.34M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.34M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.34M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  655|  1.34M|	}
  656|       |
  657|  1.34M|	state->v0 ^= m;
  658|  1.34M|}
hash.c:isc_halfsiphash13_finalize:
  741|   491k|isc_halfsiphash13_finalize(isc_halfsiphash13_t *restrict state, uint8_t *out) {
  742|   491k|	REQUIRE(out != NULL);
  ------------------
  |  |  198|   491k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   491k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 491k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   491k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  743|       |
  744|   491k|	uint32_t b = ((uint32_t)state->inlen) << 24 | state->b;
  745|       |
  746|   491k|	isc_halfsiphash13_one(state, b);
  747|       |
  748|   491k|	state->v2 ^= 0xff;
  749|       |
  750|  1.96M|	for (size_t i = 0; i < dROUNDS_13; ++i) {
  ------------------
  |  |   48|  1.96M|#define dROUNDS_13 3
  ------------------
  |  Branch (750:21): [True: 1.47M, False: 491k]
  ------------------
  751|  1.47M|		HALFSIPROUND(state->v0, state->v1, state->v2, state->v3);
  ------------------
  |  |   74|  1.47M|#define HALFSIPROUND FULL_ROUND32
  |  |  ------------------
  |  |  |  |   71|  1.47M|	HALF_ROUND32(v0, v1, v2, v3, 5, 8); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   64|  1.47M|	a += b;                        \
  |  |  |  |  |  |   65|  1.47M|	c += d;                        \
  |  |  |  |  |  |   66|  1.47M|	b = ISC_ROTATE_LEFT(b, s) ^ a; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.47M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.47M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.47M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.47M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.47M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   67|  1.47M|	d = ISC_ROTATE_LEFT(d, t) ^ c; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.47M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.47M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.47M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.47M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.47M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   68|  1.47M|	a = ISC_ROTATE_LEFT(a, 16);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.47M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.47M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.47M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.47M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.47M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   72|  1.47M|	HALF_ROUND32(v2, v1, v0, v3, 13, 7);
  |  |  |  |  ------------------
  |  |  |  |  |  |   64|  1.47M|	a += b;                        \
  |  |  |  |  |  |   65|  1.47M|	c += d;                        \
  |  |  |  |  |  |   66|  1.47M|	b = ISC_ROTATE_LEFT(b, s) ^ a; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.47M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.47M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.47M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.47M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.47M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   67|  1.47M|	d = ISC_ROTATE_LEFT(d, t) ^ c; \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.47M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.47M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.47M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.47M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.47M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   68|  1.47M|	a = ISC_ROTATE_LEFT(a, 16);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  133|  1.47M|	_Generic((x),                        \
  |  |  |  |  |  |  |  |  134|  1.47M|		uint8_t: isc_rotate_left8,   \
  |  |  |  |  |  |  |  |  135|  1.47M|		uint16_t: isc_rotate_left16, \
  |  |  |  |  |  |  |  |  136|  1.47M|		uint32_t: isc_rotate_left32, \
  |  |  |  |  |  |  |  |  137|  1.47M|		uint64_t: isc_rotate_left64 EXTRA_ROTATE_LEFT)(x, n)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  752|  1.47M|	}
  753|       |
  754|   491k|	b = state->v1 ^ state->v3;
  755|   491k|	ISC_U32TO8_LE(out, b);
  ------------------
  |  |  182|   491k|	(p)[0] = (uint8_t)((v));       \
  |  |  183|   491k|	(p)[1] = (uint8_t)((v) >> 8);  \
  |  |  184|   491k|	(p)[2] = (uint8_t)((v) >> 16); \
  |  |  185|   491k|	(p)[3] = (uint8_t)((v) >> 24);
  ------------------
  756|   491k|}

mem.c:isc_tid:
   39|  86.3M|isc_tid(void) {
   40|  86.3M|	return isc__tid_local;
   41|  86.3M|}

isc__iterated_hash_initialize:
  144|      2|isc__iterated_hash_initialize(void) {
  145|      2|	if (initialized) {
  ------------------
  |  Branch (145:6): [True: 0, False: 2]
  ------------------
  146|      0|		return;
  147|      0|	}
  148|       |
  149|      2|	basectx = EVP_MD_CTX_new();
  150|      2|	INSIST(basectx != NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  151|      2|	mdctx = EVP_MD_CTX_new();
  152|      2|	INSIST(mdctx != NULL);
  ------------------
  |  |  202|      2|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      2|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      2|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  153|       |
  154|      2|	RUNTIME_CHECK(EVP_DigestInit_ex(basectx, isc__crypto_md[ISC_MD_SHA1],
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  155|      2|					NULL) == 1);
  156|       |	initialized = true;
  157|      2|}

mem.c:mallocx:
   66|  43.1M|mallocx(size_t size, int flags) {
   67|  43.1M|	void *ptr = malloc(size);
   68|  43.1M|	INSIST(ptr != NULL);
  ------------------
  |  |  202|  43.1M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  43.1M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 43.1M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  43.1M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
   69|       |
   70|  43.1M|	if ((flags & MALLOCX_ZERO) != 0) {
  ------------------
  |  |   32|  43.1M|#define MALLOCX_ZERO		((int)0x40)
  ------------------
  |  Branch (70:6): [True: 45.1k, False: 43.1M]
  ------------------
   71|  45.1k|		memset(ptr, 0, size);
   72|  45.1k|	}
   73|       |
   74|  43.1M|	return ptr;
   75|  43.1M|}
mem.c:sdallocx:
   78|  43.1M|sdallocx(void *ptr, size_t size ISC_ATTR_UNUSED, int flags ISC_ATTR_UNUSED) {
   79|  43.1M|	free(ptr);
   80|  43.1M|}
mem.c:sallocx:
   59|      8|sallocx(void *ptr, int flags ISC_ATTR_UNUSED) {
   60|      8|	return malloc_usable_size(ptr);
   61|      8|}

isc__lib_initialize:
   46|      4|isc__lib_initialize(void) {
   47|      4|	if (isc_refcount_increment0(&isc__lib_references) > 0) {
  ------------------
  |  |   68|      4|	({                                                 \
  |  |   69|      4|		uint_fast32_t __v;                         \
  |  |   70|      4|		__v = atomic_fetch_add_release(target, 1); \
  |  |  ------------------
  |  |  |  |   52|      4|	atomic_fetch_add_explicit((o), (v), memory_order_release)
  |  |  ------------------
  |  |   71|      4|		INSIST(__v < UINT32_MAX);                  \
  |  |  ------------------
  |  |  |  |  202|      4|#define INSIST(e)    ISC_INSIST(e)
  |  |  |  |  ------------------
  |  |  |  |  |  |   54|      4|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (54:10): [True: 4, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   55|      4|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   72|      4|		__v;                                       \
  |  |   73|      4|	})
  ------------------
  |  Branch (47:6): [True: 2, False: 2]
  ------------------
   48|      2|		return;
   49|      2|	}
   50|       |
   51|      4|	rcu_register_thread();
   52|      2|	isc__os_initialize();
   53|      2|	isc__mutex_initialize();
   54|      2|	isc__mem_initialize();
   55|      2|	isc__log_initialize();
   56|      2|	isc__crypto_initialize();
   57|      2|	isc__uv_initialize();
   58|      2|	isc__xml_initialize();
   59|      2|	isc__hash_initialize();
   60|      2|	isc__iterated_hash_initialize();
   61|      2|	(void)isc_os_ncpus();
   62|      2|}

isc_logconfig_create:
  328|      2|isc_logconfig_create(isc_logconfig_t **lcfgp) {
  329|      2|	REQUIRE(lcfgp != NULL && *lcfgp == NULL);
  ------------------
  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  330|      2|	REQUIRE(VALID_CONTEXT(isc__lctx));
  ------------------
  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  331|       |
  332|      2|	int level = ISC_LOG_INFO;
  ------------------
  |  |   42|      2|#define ISC_LOG_INFO	 (-1)
  ------------------
  333|       |
  334|      2|	isc_logconfig_t *lcfg = isc_mem_get(isc__lctx->mctx, sizeof(*lcfg));
  ------------------
  |  |  128|      2|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
  335|       |
  336|      2|	*lcfg = (isc_logconfig_t){
  337|      2|		.magic = LCFG_MAGIC,
  ------------------
  |  |   43|      2|#define LCFG_MAGIC	   ISC_MAGIC('L', 'c', 'f', 'g')
  |  |  ------------------
  |  |  |  |   31|      2|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  338|      2|		.lctx = isc__lctx,
  339|      2|		.channels = ISC_LIST_INITIALIZER,
  ------------------
  |  |   21|      2|	{                     \
  |  |   22|      2|		.head = NULL, \
  |  |   23|      2|		.tail = NULL, \
  |  |   24|      2|	}
  ------------------
  340|      2|		.highest_level = level,
  341|      2|	};
  342|       |
  343|       |	/*
  344|       |	 * Create the default channels:
  345|       |	 *      default_syslog, default_stderr, default_debug and null.
  346|       |	 */
  347|      2|	isc_log_createchannel(lcfg, "default_syslog", ISC_LOG_TOSYSLOG, level,
  ------------------
  |  |   54|      2|#define ISC_LOG_TOSYSLOG   2
  ------------------
  348|      2|			      ISC_LOGDESTINATION_SYSLOG(LOG_DAEMON), 0);
  ------------------
  |  |  287|      2|	(&(isc_logdestination_t){ .facility = (f) })
  ------------------
  349|       |
  350|      2|	isc_log_createchannel(lcfg, "default_stderr", ISC_LOG_TOFILEDESC, level,
  ------------------
  |  |   56|      2|#define ISC_LOG_TOFILEDESC 4
  ------------------
  351|      2|			      ISC_LOGDESTINATION_STDERR, ISC_LOG_PRINTTIME);
  ------------------
  |  |  284|      2|#define ISC_LOGDESTINATION_STDERR ISC_LOGDESTINATION_FILE(stderr)
  |  |  ------------------
  |  |  |  |  277|      2|	(&(isc_logdestination_t){                               \
  |  |  |  |  278|      2|		.file = {                                       \
  |  |  |  |  279|      2|			.stream = errout,                       \
  |  |  |  |  280|      2|			.versions = ISC_LOG_ROLLNEVER,          \
  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      2|#define ISC_LOG_ROLLNEVER    (-2)
  |  |  |  |  ------------------
  |  |  |  |  281|      2|			.suffix = isc_log_rollsuffix_increment, \
  |  |  |  |  282|      2|		} })
  |  |  ------------------
  ------------------
              			      ISC_LOGDESTINATION_STDERR, ISC_LOG_PRINTTIME);
  ------------------
  |  |   63|      2|#define ISC_LOG_PRINTTIME     0x00001
  ------------------
  352|       |
  353|       |	/*
  354|       |	 * Set the default category's channel to default_stderr,
  355|       |	 * which is at the head of the channels list because it was
  356|       |	 * just created.
  357|       |	 */
  358|      2|	default_channel.channel = ISC_LIST_HEAD(lcfg->channels);
  ------------------
  |  |   62|      2|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  359|       |
  360|      2|	isc_log_createchannel(lcfg, "default_debug", ISC_LOG_TOFILEDESC,
  ------------------
  |  |   56|      2|#define ISC_LOG_TOFILEDESC 4
  ------------------
  361|      2|			      ISC_LOG_DYNAMIC, ISC_LOGDESTINATION_STDERR,
  ------------------
  |  |   41|      2|#define ISC_LOG_DYNAMIC	 0
  ------------------
              			      ISC_LOG_DYNAMIC, ISC_LOGDESTINATION_STDERR,
  ------------------
  |  |  284|      2|#define ISC_LOGDESTINATION_STDERR ISC_LOGDESTINATION_FILE(stderr)
  |  |  ------------------
  |  |  |  |  277|      2|	(&(isc_logdestination_t){                               \
  |  |  |  |  278|      2|		.file = {                                       \
  |  |  |  |  279|      2|			.stream = errout,                       \
  |  |  |  |  280|      2|			.versions = ISC_LOG_ROLLNEVER,          \
  |  |  |  |  ------------------
  |  |  |  |  |  |   87|      2|#define ISC_LOG_ROLLNEVER    (-2)
  |  |  |  |  ------------------
  |  |  |  |  281|      2|			.suffix = isc_log_rollsuffix_increment, \
  |  |  |  |  282|      2|		} })
  |  |  ------------------
  ------------------
  362|      2|			      ISC_LOG_PRINTTIME);
  ------------------
  |  |   63|      2|#define ISC_LOG_PRINTTIME     0x00001
  ------------------
  363|       |
  364|      2|	isc_log_createchannel(lcfg, "null", ISC_LOG_TONULL, ISC_LOG_DYNAMIC,
  ------------------
  |  |   53|      2|#define ISC_LOG_TONULL	   1
  ------------------
              	isc_log_createchannel(lcfg, "null", ISC_LOG_TONULL, ISC_LOG_DYNAMIC,
  ------------------
  |  |   41|      2|#define ISC_LOG_DYNAMIC	 0
  ------------------
  365|      2|			      NULL, 0);
  366|       |
  367|      2|	*lcfgp = lcfg;
  368|      2|}
isc_log_createchannel:
  473|      8|		      unsigned int flags) {
  474|      8|	isc_logchannel_t *channel;
  475|      8|	isc_mem_t *mctx;
  476|      8|	unsigned int permitted = ISC_LOG_PRINTALL | ISC_LOG_DEBUGONLY |
  ------------------
  |  |   69|      8|#define ISC_LOG_PRINTALL      0x0003F
  ------------------
              	unsigned int permitted = ISC_LOG_PRINTALL | ISC_LOG_DEBUGONLY |
  ------------------
  |  |   71|      8|#define ISC_LOG_DEBUGONLY     0x01000
  ------------------
  477|      8|				 ISC_LOG_BUFFERED | ISC_LOG_ISO8601 |
  ------------------
  |  |   70|      8|#define ISC_LOG_BUFFERED      0x00040
  ------------------
              				 ISC_LOG_BUFFERED | ISC_LOG_ISO8601 |
  ------------------
  |  |   73|      8|#define ISC_LOG_ISO8601	      0x10000 /* if PRINTTIME, use ISO8601 */
  ------------------
  478|      8|				 ISC_LOG_UTC | ISC_LOG_TZINFO;
  ------------------
  |  |   74|      8|#define ISC_LOG_UTC	      0x20000 /* if PRINTTIME, use UTC */
  ------------------
              				 ISC_LOG_UTC | ISC_LOG_TZINFO;
  ------------------
  |  |   75|      8|#define ISC_LOG_TZINFO	      0x40000 /* if PRINTTIME, output TZ info */
  ------------------
  479|       |
  480|      8|	REQUIRE(VALID_CONFIG(lcfg));
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     16|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  481|      8|	REQUIRE(name != NULL);
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  482|      8|	REQUIRE(type == ISC_LOG_TOSYSLOG || type == ISC_LOG_TOFILE ||
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     38|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2, False: 6]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 6]
  |  |  |  |  |  Branch (42:11): [True: 4, False: 2]
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  483|      8|		type == ISC_LOG_TOFILEDESC || type == ISC_LOG_TONULL);
  484|      8|	REQUIRE(destination != NULL || type == ISC_LOG_TONULL);
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     10|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 6, False: 2]
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  485|      8|	REQUIRE(level >= ISC_LOG_CRITICAL);
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  486|      8|	REQUIRE((flags & ~permitted) == 0);
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  487|      8|	REQUIRE(!(flags & ISC_LOG_UTC) || !(flags & ISC_LOG_TZINFO));
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  488|       |
  489|       |	/* FIXME: find duplicate names? */
  490|       |
  491|      8|	mctx = lcfg->lctx->mctx;
  492|       |
  493|      8|	channel = isc_mem_get(mctx, sizeof(*channel));
  ------------------
  |  |  128|      8|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
  494|       |
  495|      8|	channel->name = isc_mem_strdup(mctx, name);
  ------------------
  |  |  144|      8|#define isc_mem_strdup(c, p) isc__mem_strdup((c), (p)_ISC_MEM_FILELINE)
  ------------------
  496|       |
  497|      8|	channel->type = type;
  498|      8|	channel->level = level;
  499|      8|	channel->flags = flags;
  500|      8|	ISC_LINK_INIT(channel, link);
  ------------------
  |  |   57|      8|#define ISC_LINK_INIT(elt, link) ISC_LINK_INIT_TYPE(elt, link, void)
  |  |  ------------------
  |  |  |  |   53|      8|	do {                                                 \
  |  |  |  |   54|      8|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      8|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   55|      8|		(elt)->link.next = ISC_LINK_TOMBSTONE(type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |   18|      8|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  ------------------
  |  |  |  |   56|      8|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (56:11): [Folded, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  501|       |
  502|      8|	switch (type) {
  503|      2|	case ISC_LOG_TOSYSLOG:
  ------------------
  |  |   54|      2|#define ISC_LOG_TOSYSLOG   2
  ------------------
  |  Branch (503:2): [True: 2, False: 6]
  ------------------
  504|      2|		FACILITY(channel) = destination->facility;
  ------------------
  |  |  314|      2|#define FACILITY(channel)	 (channel->destination.facility)
  ------------------
  505|      2|		break;
  506|       |
  507|      0|	case ISC_LOG_TOFILE:
  ------------------
  |  |   55|      0|#define ISC_LOG_TOFILE	   3
  ------------------
  |  Branch (507:2): [True: 0, False: 8]
  ------------------
  508|       |		/*
  509|       |		 * The file name is copied because greatest_version wants
  510|       |		 * to scribble on it, so it needs to be definitely in
  511|       |		 * writable memory.
  512|       |		 */
  513|      0|		FILE_NAME(channel) = isc_mem_strdup(mctx,
  ------------------
  |  |  315|      0|#define FILE_NAME(channel)	 (channel->destination.file.name)
  ------------------
              		FILE_NAME(channel) = isc_mem_strdup(mctx,
  ------------------
  |  |  144|      0|#define isc_mem_strdup(c, p) isc__mem_strdup((c), (p)_ISC_MEM_FILELINE)
  ------------------
  514|      0|						    destination->file.name);
  515|      0|		FILE_STREAM(channel) = NULL;
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
  516|      0|		FILE_VERSIONS(channel) = destination->file.versions;
  ------------------
  |  |  317|      0|#define FILE_VERSIONS(channel)	 (channel->destination.file.versions)
  ------------------
  517|      0|		FILE_SUFFIX(channel) = destination->file.suffix;
  ------------------
  |  |  318|      0|#define FILE_SUFFIX(channel)	 (channel->destination.file.suffix)
  ------------------
  518|      0|		FILE_MAXSIZE(channel) = destination->file.maximum_size;
  ------------------
  |  |  319|      0|#define FILE_MAXSIZE(channel)	 (channel->destination.file.maximum_size)
  ------------------
  519|      0|		FILE_MAXREACHED(channel) = false;
  ------------------
  |  |  320|      0|#define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
  ------------------
  520|      0|		break;
  521|       |
  522|      4|	case ISC_LOG_TOFILEDESC:
  ------------------
  |  |   56|      4|#define ISC_LOG_TOFILEDESC 4
  ------------------
  |  Branch (522:2): [True: 4, False: 4]
  ------------------
  523|      4|		FILE_NAME(channel) = NULL;
  ------------------
  |  |  315|      4|#define FILE_NAME(channel)	 (channel->destination.file.name)
  ------------------
  524|      4|		FILE_STREAM(channel) = destination->file.stream;
  ------------------
  |  |  316|      4|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
  525|      4|		FILE_MAXSIZE(channel) = 0;
  ------------------
  |  |  319|      4|#define FILE_MAXSIZE(channel)	 (channel->destination.file.maximum_size)
  ------------------
  526|      4|		FILE_VERSIONS(channel) = ISC_LOG_ROLLNEVER;
  ------------------
  |  |  317|      4|#define FILE_VERSIONS(channel)	 (channel->destination.file.versions)
  ------------------
              		FILE_VERSIONS(channel) = ISC_LOG_ROLLNEVER;
  ------------------
  |  |   87|      4|#define ISC_LOG_ROLLNEVER    (-2)
  ------------------
  527|      4|		FILE_SUFFIX(channel) = isc_log_rollsuffix_increment;
  ------------------
  |  |  318|      4|#define FILE_SUFFIX(channel)	 (channel->destination.file.suffix)
  ------------------
  528|      4|		break;
  529|       |
  530|      2|	case ISC_LOG_TONULL:
  ------------------
  |  |   53|      2|#define ISC_LOG_TONULL	   1
  ------------------
  |  Branch (530:2): [True: 2, False: 6]
  ------------------
  531|       |		/* Nothing. */
  532|      2|		break;
  533|       |
  534|      0|	default:
  ------------------
  |  Branch (534:2): [True: 0, False: 8]
  ------------------
  535|      0|		UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  536|      8|	}
  537|       |
  538|      8|	ISC_LIST_PREPEND(lcfg->channels, channel, link);
  ------------------
  |  |   79|      8|	do {                                                  \
  |  |   80|      8|		ISC_LINK_INSIST(!ISC_LINK_LINKED(elt, link)); \
  |  |   81|      8|		__ISC_LIST_PREPENDUNSAFE(list, elt, link);    \
  |  |  ------------------
  |  |  |  |   67|      8|	do {                                            \
  |  |  |  |   68|      8|		if ((list).head != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (68:7): [True: 6, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   69|      6|			(list).head->link.prev = (elt); \
  |  |  |  |   70|      6|		} else {                                \
  |  |  |  |   71|      2|			(list).tail = (elt);            \
  |  |  |  |   72|      2|		}                                       \
  |  |  |  |   73|      8|		(elt)->link.prev = NULL;                \
  |  |  |  |   74|      8|		(elt)->link.next = (list).head;         \
  |  |  |  |   75|      8|		(list).head = (elt);                    \
  |  |  |  |   76|      8|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (76:11): [Folded, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      8|	} while (0)
  |  |  ------------------
  |  |  |  Branch (82:11): [Folded, False: 8]
  |  |  ------------------
  ------------------
  539|       |
  540|       |	/*
  541|       |	 * If default_stderr was redefined, make the default category
  542|       |	 * point to the new default_stderr.
  543|       |	 */
  544|      8|	if (strcmp(name, "default_stderr") == 0) {
  ------------------
  |  Branch (544:6): [True: 2, False: 6]
  ------------------
  545|      2|		default_channel.channel = channel;
  546|      2|	}
  547|      8|}
isc_log_write:
  612|  2.23k|	      const char *format, ...) {
  613|  2.23k|	va_list args;
  614|       |
  615|       |	/*
  616|       |	 * Contract checking is done in isc_log_doit().
  617|       |	 */
  618|       |
  619|  2.23k|	va_start(args, format);
  620|  2.23k|	isc_log_doit(category, module, level, format, args);
  621|       |	va_end(args);
  622|  2.23k|}
isc_log_wouldlog:
 1197|  2.23k|isc_log_wouldlog(int level) {
 1198|       |	/*
 1199|       |	 * Try to avoid locking the mutex for messages which can't
 1200|       |	 * possibly be logged to any channels -- primarily debugging
 1201|       |	 * messages that the debug level is not high enough to print.
 1202|       |	 *
 1203|       |	 * If the level is (mathematically) less than or equal to the
 1204|       |	 * highest_level, or if there is a dynamic channel and the level is
 1205|       |	 * less than or equal to the debug level, the main loop must be
 1206|       |	 * entered to see if the message should really be output.
 1207|       |	 */
 1208|  2.23k|	if (isc__lctx == NULL) {
  ------------------
  |  Branch (1208:6): [True: 0, False: 2.23k]
  ------------------
 1209|      0|		return false;
 1210|      0|	}
 1211|  2.23k|	if (forcelog) {
  ------------------
  |  Branch (1211:6): [True: 0, False: 2.23k]
  ------------------
 1212|      0|		return true;
 1213|      0|	}
 1214|       |
 1215|  2.23k|	int highest_level = atomic_load_acquire(&isc__lctx->highest_level);
  ------------------
  |  |   50|  2.23k|#define atomic_load_acquire(o) atomic_load_explicit((o), memory_order_acquire)
  ------------------
 1216|  2.23k|	if (level <= highest_level) {
  ------------------
  |  Branch (1216:6): [True: 0, False: 2.23k]
  ------------------
 1217|      0|		return true;
 1218|      0|	}
 1219|  2.23k|	if (atomic_load_acquire(&isc__lctx->dynamic)) {
  ------------------
  |  |   50|  2.23k|#define atomic_load_acquire(o) atomic_load_explicit((o), memory_order_acquire)
  |  |  ------------------
  |  |  |  Branch (50:32): [True: 0, False: 2.23k]
  |  |  ------------------
  ------------------
 1220|      0|		int debug_level = atomic_load_acquire(&isc__lctx->debug_level);
  ------------------
  |  |   50|      0|#define atomic_load_acquire(o) atomic_load_explicit((o), memory_order_acquire)
  ------------------
 1221|      0|		if (level <= debug_level) {
  ------------------
  |  Branch (1221:7): [True: 0, False: 0]
  ------------------
 1222|      0|			return true;
 1223|      0|		}
 1224|      0|	}
 1225|       |
 1226|  2.23k|	return false;
 1227|  2.23k|}
isc__log_initialize:
 1532|      2|isc__log_initialize(void) {
 1533|      2|	REQUIRE(isc__lctx == NULL);
  ------------------
  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      2|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1534|       |
 1535|      2|	isc_mem_t *mctx = NULL;
 1536|       |
 1537|      2|	isc_mem_create("log", &mctx);
  ------------------
  |  |  198|      2|#define isc_mem_create(name, cp) isc__mem_create((name), (cp)_ISC_MEM_FILELINE)
  ------------------
 1538|      2|	isc_mem_setdebugging(mctx, 0);
 1539|       |
 1540|      2|	isc__lctx = isc_mem_get(mctx, sizeof(*isc__lctx));
  ------------------
  |  |  128|      2|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1541|      2|	*isc__lctx = (isc_log_t){
 1542|      2|		.magic = LCTX_MAGIC,
  ------------------
  |  |   40|      2|#define LCTX_MAGIC	    ISC_MAGIC('L', 'c', 't', 'x')
  |  |  ------------------
  |  |  |  |   31|      2|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
 1543|      2|		.mctx = mctx, /* implicit attach */
 1544|      2|	};
 1545|       |
 1546|      2|	isc_mutex_init(&isc__lctx->lock);
  ------------------
  |  |   68|      2|#define isc_mutex_init(mp)    isc__mutex_init(mp)
  |  |  ------------------
  |  |  |  |   79|      2|	{                                                                 \
  |  |  |  |   80|      2|		int _ret = pthread_mutex_init(mp, &isc__mutex_init_attr); \
  |  |  |  |   81|      2|		PTHREADS_RUNTIME_CHECK(pthread_mutex_init, _ret);         \
  |  |  |  |  ------------------
  |  |  |  |  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  ------------------
  |  |  |  |   82|      2|	}
  |  |  ------------------
  ------------------
 1547|       |
 1548|       |	/* Create default logging configuration */
 1549|      2|	isc_logconfig_t *lcfg = NULL;
 1550|      2|	isc_logconfig_create(&lcfg);
 1551|       |
 1552|      2|	atomic_init(&isc__lctx->highest_level, lcfg->highest_level);
 1553|      2|	atomic_init(&isc__lctx->dynamic, lcfg->dynamic);
 1554|       |
 1555|      2|	isc__lctx->logconfig = lcfg;
 1556|      2|}
log.c:isc_log_doit:
 1231|  2.23k|	     const char *format, va_list args) {
 1232|  2.23k|	int syslog_level;
 1233|  2.23k|	const char *time_string;
 1234|  2.23k|	char local_time[64] = { 0 };
 1235|  2.23k|	char iso8601z_string[64] = { 0 };
 1236|  2.23k|	char iso8601l_string[64] = { 0 };
 1237|  2.23k|	char iso8601tz_string[64] = { 0 };
 1238|  2.23k|	char level_string[24] = { 0 };
 1239|  2.23k|	struct stat statbuf;
 1240|  2.23k|	bool matched = false;
 1241|  2.23k|	bool printtime, iso8601, utc, tzinfo, printtag, printcolon;
 1242|  2.23k|	bool printcategory, printmodule, printlevel, buffered;
 1243|  2.23k|	isc_logchannel_t *channel;
 1244|  2.23k|	isc_logchannellist_t *category_channels;
 1245|  2.23k|	int_fast32_t dlevel;
 1246|  2.23k|	isc_result_t result;
 1247|       |
 1248|  2.23k|	REQUIRE(isc__lctx == NULL || VALID_CONTEXT(isc__lctx));
  ------------------
  |  |  198|  2.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  8.92k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.23k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.23k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 0, False: 2.23k]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1249|  2.23k|	REQUIRE(category > ISC_LOGCATEGORY_DEFAULT &&
  ------------------
  |  |  198|  2.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.46k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.23k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1250|  2.23k|		category < ISC_LOGCATEGORY_MAX);
 1251|  2.23k|	REQUIRE(module > ISC_LOGMODULE_DEFAULT && module < ISC_LOGMODULE_MAX);
  ------------------
  |  |  198|  2.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  4.46k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2.23k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1252|  2.23k|	REQUIRE(level != ISC_LOG_DYNAMIC);
  ------------------
  |  |  198|  2.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.23k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1253|  2.23k|	REQUIRE(format != NULL);
  ------------------
  |  |  198|  2.23k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.23k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.23k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.23k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1254|       |
 1255|  2.23k|	if (!isc_log_wouldlog(level)) {
  ------------------
  |  Branch (1255:6): [True: 2.23k, False: 0]
  ------------------
 1256|  2.23k|		return;
 1257|  2.23k|	}
 1258|       |
 1259|  2.23k|	rcu_read_lock();
 1260|      0|	LOCK(&isc__lctx->lock);
  ------------------
  |  |   26|      0|	{                                                                  \
  |  |   27|      0|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKING %p %s %d\n", (lp), \
  |  |   28|      0|				       __FILE__, __LINE__));               \
  |  |   29|      0|		isc_mutex_lock((lp));                                      \
  |  |  ------------------
  |  |  |  |   69|      0|#define isc_mutex_lock(mp)    isc__mutex_lock(mp)
  |  |  |  |  ------------------
  |  |  |  |  |  |   85|      0|	{                                                         \
  |  |  |  |  |  |   86|      0|		int _ret = pthread_mutex_lock(mp);                \
  |  |  |  |  |  |   87|      0|		PTHREADS_RUNTIME_CHECK(pthread_mutex_lock, _ret); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  288|      0|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|      0|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   30|      0|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKED %p %s %d\n", (lp),  \
  |  |   31|      0|				       __FILE__, __LINE__));               \
  |  |   32|      0|	}
  ------------------
 1261|       |
 1262|      0|	isc__lctx->buffer[0] = '\0';
 1263|       |
 1264|      0|	isc_logconfig_t *lcfg = rcu_dereference(isc__lctx->logconfig);
 1265|      0|	if (lcfg == NULL) {
  ------------------
  |  Branch (1265:6): [True: 0, False: 0]
  ------------------
 1266|      0|		goto unlock;
 1267|      0|	}
 1268|       |
 1269|      0|	category_channels = ISC_LIST_HEAD(lcfg->channellists[category]);
  ------------------
  |  |   62|      0|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1270|       |
 1271|      0|	do {
 1272|       |		/*
 1273|       |		 * If the channel list end was reached and a match was
 1274|       |		 * made, everything is finished.
 1275|       |		 */
 1276|      0|		if (category_channels == NULL && matched) {
  ------------------
  |  Branch (1276:7): [True: 0, False: 0]
  |  Branch (1276:36): [True: 0, False: 0]
  ------------------
 1277|      0|			break;
 1278|      0|		}
 1279|       |
 1280|      0|		if (category_channels == NULL && !matched &&
  ------------------
  |  Branch (1280:7): [True: 0, False: 0]
  |  Branch (1280:36): [True: 0, False: 0]
  ------------------
 1281|      0|		    category_channels != ISC_LIST_HEAD(lcfg->channellists[0]))
  ------------------
  |  |   62|      0|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
  |  Branch (1281:7): [True: 0, False: 0]
  ------------------
 1282|      0|		{
 1283|       |			/*
 1284|       |			 * No category/module pair was explicitly
 1285|       |			 * configured. Try the category named "default".
 1286|       |			 */
 1287|      0|			category_channels =
 1288|      0|				ISC_LIST_HEAD(lcfg->channellists[0]);
  ------------------
  |  |   62|      0|#define ISC_LIST_HEAD(list)  ((list).head)
  ------------------
 1289|      0|		}
 1290|       |
 1291|      0|		if (category_channels == NULL && !matched) {
  ------------------
  |  Branch (1291:7): [True: 0, False: 0]
  |  Branch (1291:36): [True: 0, False: 0]
  ------------------
 1292|       |			/*
 1293|       |			 * No matching module was explicitly configured
 1294|       |			 * for the category named "default".  Use the
 1295|       |			 * internal default channel.
 1296|       |			 */
 1297|      0|			category_channels = &default_channel;
 1298|      0|		}
 1299|       |
 1300|      0|		if (category_channels->module != ISC_LOGMODULE_DEFAULT &&
  ------------------
  |  Branch (1300:7): [True: 0, False: 0]
  ------------------
 1301|      0|		    category_channels->module != module)
  ------------------
  |  Branch (1301:7): [True: 0, False: 0]
  ------------------
 1302|      0|		{
 1303|      0|			category_channels = ISC_LIST_NEXT(category_channels,
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
 1304|      0|							  link);
 1305|      0|			continue;
 1306|      0|		}
 1307|       |
 1308|      0|		matched = true;
 1309|       |
 1310|      0|		channel = category_channels->channel;
 1311|      0|		category_channels = ISC_LIST_NEXT(category_channels, link);
  ------------------
  |  |  140|      0|#define ISC_LIST_NEXT(elt, link) ((elt)->link.next)
  ------------------
 1312|       |
 1313|      0|		if (!forcelog) {
  ------------------
  |  Branch (1313:7): [True: 0, False: 0]
  ------------------
 1314|      0|			dlevel = atomic_load_acquire(&isc__lctx->debug_level);
  ------------------
  |  |   50|      0|#define atomic_load_acquire(o) atomic_load_explicit((o), memory_order_acquire)
  ------------------
 1315|      0|			if (((channel->flags & ISC_LOG_DEBUGONLY) != 0) &&
  ------------------
  |  |   71|      0|#define ISC_LOG_DEBUGONLY     0x01000
  ------------------
  |  Branch (1315:8): [True: 0, False: 0]
  ------------------
 1316|      0|			    dlevel == 0)
  ------------------
  |  Branch (1316:8): [True: 0, False: 0]
  ------------------
 1317|      0|			{
 1318|      0|				continue;
 1319|      0|			}
 1320|       |
 1321|      0|			if (channel->level == ISC_LOG_DYNAMIC) {
  ------------------
  |  |   41|      0|#define ISC_LOG_DYNAMIC	 0
  ------------------
  |  Branch (1321:8): [True: 0, False: 0]
  ------------------
 1322|      0|				if (dlevel < level) {
  ------------------
  |  Branch (1322:9): [True: 0, False: 0]
  ------------------
 1323|      0|					continue;
 1324|      0|				}
 1325|      0|			} else if (channel->level < level) {
  ------------------
  |  Branch (1325:15): [True: 0, False: 0]
  ------------------
 1326|      0|				continue;
 1327|      0|			}
 1328|      0|		}
 1329|       |
 1330|      0|		if ((channel->flags & ISC_LOG_PRINTTIME) != 0 &&
  ------------------
  |  |   63|      0|#define ISC_LOG_PRINTTIME     0x00001
  ------------------
  |  Branch (1330:7): [True: 0, False: 0]
  ------------------
 1331|      0|		    local_time[0] == '\0')
  ------------------
  |  Branch (1331:7): [True: 0, False: 0]
  ------------------
 1332|      0|		{
 1333|      0|			isc_time_t isctime;
 1334|       |
 1335|      0|			isctime = isc_time_now();
 1336|       |
 1337|      0|			isc_time_formattimestamp(&isctime, local_time,
 1338|      0|						 sizeof(local_time));
 1339|      0|			isc_time_formatISO8601ms(&isctime, iso8601z_string,
 1340|      0|						 sizeof(iso8601z_string));
 1341|      0|			isc_time_formatISO8601Lms(&isctime, iso8601l_string,
 1342|      0|						  sizeof(iso8601l_string));
 1343|      0|			isc_time_formatISO8601TZms(&isctime, iso8601tz_string,
 1344|      0|						   sizeof(iso8601tz_string));
 1345|      0|		}
 1346|       |
 1347|      0|		if ((channel->flags & ISC_LOG_PRINTLEVEL) != 0 &&
  ------------------
  |  |   64|      0|#define ISC_LOG_PRINTLEVEL    0x00002
  ------------------
  |  Branch (1347:7): [True: 0, False: 0]
  ------------------
 1348|      0|		    level_string[0] == '\0')
  ------------------
  |  Branch (1348:7): [True: 0, False: 0]
  ------------------
 1349|      0|		{
 1350|      0|			if (level < ISC_LOG_CRITICAL) {
  ------------------
  |  |   46|      0|#define ISC_LOG_CRITICAL (-5)
  ------------------
  |  Branch (1350:8): [True: 0, False: 0]
  ------------------
 1351|      0|				snprintf(level_string, sizeof(level_string),
 1352|      0|					 "level %d: ", level);
 1353|      0|			} else if (level > ISC_LOG_DYNAMIC) {
  ------------------
  |  |   41|      0|#define ISC_LOG_DYNAMIC	 0
  ------------------
  |  Branch (1353:15): [True: 0, False: 0]
  ------------------
 1354|      0|				snprintf(level_string, sizeof(level_string),
 1355|      0|					 "%s %d: ", log_level_strings[0],
 1356|      0|					 level);
 1357|      0|			} else {
 1358|      0|				snprintf(level_string, sizeof(level_string),
 1359|      0|					 "%s: ", log_level_strings[-level]);
 1360|      0|			}
 1361|      0|		}
 1362|       |
 1363|       |		/*
 1364|       |		 * Only format the message once.
 1365|       |		 */
 1366|      0|		if (isc__lctx->buffer[0] == '\0') {
  ------------------
  |  Branch (1366:7): [True: 0, False: 0]
  ------------------
 1367|      0|			(void)vsnprintf(isc__lctx->buffer,
 1368|      0|					sizeof(isc__lctx->buffer), format,
 1369|      0|					args);
 1370|      0|		}
 1371|       |
 1372|      0|		utc = ((channel->flags & ISC_LOG_UTC) != 0);
  ------------------
  |  |   74|      0|#define ISC_LOG_UTC	      0x20000 /* if PRINTTIME, use UTC */
  ------------------
 1373|      0|		tzinfo = ((channel->flags & ISC_LOG_TZINFO) != 0);
  ------------------
  |  |   75|      0|#define ISC_LOG_TZINFO	      0x40000 /* if PRINTTIME, output TZ info */
  ------------------
 1374|      0|		iso8601 = ((channel->flags & ISC_LOG_ISO8601) != 0);
  ------------------
  |  |   73|      0|#define ISC_LOG_ISO8601	      0x10000 /* if PRINTTIME, use ISO8601 */
  ------------------
 1375|      0|		printtime = ((channel->flags & ISC_LOG_PRINTTIME) != 0);
  ------------------
  |  |   63|      0|#define ISC_LOG_PRINTTIME     0x00001
  ------------------
 1376|      0|		printtag = ((channel->flags &
  ------------------
  |  Branch (1376:15): [True: 0, False: 0]
  ------------------
 1377|      0|			     (ISC_LOG_PRINTTAG | ISC_LOG_PRINTPREFIX)) != 0 &&
  ------------------
  |  |   67|      0|#define ISC_LOG_PRINTTAG      0x00010 /* tag and ":" */
  ------------------
              			     (ISC_LOG_PRINTTAG | ISC_LOG_PRINTPREFIX)) != 0 &&
  ------------------
  |  |   68|      0|#define ISC_LOG_PRINTPREFIX   0x00020 /* tag only, no colon */
  ------------------
 1378|      0|			    lcfg->tag != NULL);
  ------------------
  |  Branch (1378:8): [True: 0, False: 0]
  ------------------
 1379|      0|		printcolon = ((channel->flags & ISC_LOG_PRINTTAG) != 0 &&
  ------------------
  |  |   67|      0|#define ISC_LOG_PRINTTAG      0x00010 /* tag and ":" */
  ------------------
  |  Branch (1379:17): [True: 0, False: 0]
  ------------------
 1380|      0|			      lcfg->tag != NULL);
  ------------------
  |  Branch (1380:10): [True: 0, False: 0]
  ------------------
 1381|      0|		printcategory = ((channel->flags & ISC_LOG_PRINTCATEGORY) != 0);
  ------------------
  |  |   65|      0|#define ISC_LOG_PRINTCATEGORY 0x00004
  ------------------
 1382|      0|		printmodule = ((channel->flags & ISC_LOG_PRINTMODULE) != 0);
  ------------------
  |  |   66|      0|#define ISC_LOG_PRINTMODULE   0x00008
  ------------------
 1383|      0|		printlevel = ((channel->flags & ISC_LOG_PRINTLEVEL) != 0);
  ------------------
  |  |   64|      0|#define ISC_LOG_PRINTLEVEL    0x00002
  ------------------
 1384|      0|		buffered = ((channel->flags & ISC_LOG_BUFFERED) != 0);
  ------------------
  |  |   70|      0|#define ISC_LOG_BUFFERED      0x00040
  ------------------
 1385|       |
 1386|      0|		if (printtime) {
  ------------------
  |  Branch (1386:7): [True: 0, False: 0]
  ------------------
 1387|      0|			if (iso8601) {
  ------------------
  |  Branch (1387:8): [True: 0, False: 0]
  ------------------
 1388|      0|				if (utc) {
  ------------------
  |  Branch (1388:9): [True: 0, False: 0]
  ------------------
 1389|      0|					time_string = iso8601z_string;
 1390|      0|				} else if (tzinfo) {
  ------------------
  |  Branch (1390:16): [True: 0, False: 0]
  ------------------
 1391|      0|					time_string = iso8601tz_string;
 1392|      0|				} else {
 1393|      0|					time_string = iso8601l_string;
 1394|      0|				}
 1395|      0|			} else {
 1396|      0|				time_string = local_time;
 1397|      0|			}
 1398|      0|		} else {
 1399|      0|			time_string = "";
 1400|      0|		}
 1401|       |
 1402|      0|		switch (channel->type) {
  ------------------
  |  Branch (1402:11): [True: 0, False: 0]
  ------------------
 1403|      0|		case ISC_LOG_TOFILE:
  ------------------
  |  |   55|      0|#define ISC_LOG_TOFILE	   3
  ------------------
  |  Branch (1403:3): [True: 0, False: 0]
  ------------------
 1404|      0|			if (FILE_MAXREACHED(channel)) {
  ------------------
  |  |  320|      0|#define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
  |  |  ------------------
  |  |  |  Branch (320:34): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1405|       |				/*
 1406|       |				 * If the file can be rolled, OR
 1407|       |				 * If the file no longer exists, OR
 1408|       |				 * If the file is less than the maximum
 1409|       |				 * size, (such as if it had been renamed
 1410|       |				 * and a new one touched, or it was
 1411|       |				 * truncated in place)
 1412|       |				 * ... then close it to trigger
 1413|       |				 * reopening.
 1414|       |				 */
 1415|      0|				if (FILE_VERSIONS(channel) !=
  ------------------
  |  |  317|      0|#define FILE_VERSIONS(channel)	 (channel->destination.file.versions)
  ------------------
  |  Branch (1415:9): [True: 0, False: 0]
  ------------------
 1416|      0|					    ISC_LOG_ROLLNEVER ||
  ------------------
  |  |   87|      0|#define ISC_LOG_ROLLNEVER    (-2)
  ------------------
 1417|      0|				    (stat(FILE_NAME(channel), &statbuf) != 0 &&
  ------------------
  |  |  315|      0|#define FILE_NAME(channel)	 (channel->destination.file.name)
  ------------------
  |  Branch (1417:10): [True: 0, False: 0]
  ------------------
 1418|      0|				     errno == ENOENT) ||
  ------------------
  |  Branch (1418:10): [True: 0, False: 0]
  ------------------
 1419|      0|				    statbuf.st_size < FILE_MAXSIZE(channel))
  ------------------
  |  |  319|      0|#define FILE_MAXSIZE(channel)	 (channel->destination.file.maximum_size)
  ------------------
  |  Branch (1419:9): [True: 0, False: 0]
  ------------------
 1420|      0|				{
 1421|      0|					if (FILE_STREAM(channel) != NULL) {
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
  |  Branch (1421:10): [True: 0, False: 0]
  ------------------
 1422|      0|						(void)fclose(
 1423|      0|							FILE_STREAM(channel));
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
 1424|      0|						FILE_STREAM(channel) = NULL;
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
 1425|      0|					}
 1426|      0|					FILE_MAXREACHED(channel) = false;
  ------------------
  |  |  320|      0|#define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
  ------------------
 1427|      0|				} else {
 1428|       |					/*
 1429|       |					 * Eh, skip it.
 1430|       |					 */
 1431|      0|					break;
 1432|      0|				}
 1433|      0|			}
 1434|       |
 1435|      0|			if (FILE_STREAM(channel) == NULL) {
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
  |  Branch (1435:8): [True: 0, False: 0]
  ------------------
 1436|      0|				result = isc_log_open(channel);
 1437|      0|				if (result != ISC_R_SUCCESS &&
  ------------------
  |  Branch (1437:9): [True: 0, False: 0]
  ------------------
 1438|      0|				    result != ISC_R_MAXSIZE &&
  ------------------
  |  Branch (1438:9): [True: 0, False: 0]
  ------------------
 1439|      0|				    (channel->flags & ISC_LOG_OPENERR) == 0)
  ------------------
  |  |   72|      0|#define ISC_LOG_OPENERR	      0x08000 /* internal */
  ------------------
  |  Branch (1439:9): [True: 0, False: 0]
  ------------------
 1440|      0|				{
 1441|      0|					syslog(LOG_ERR,
 1442|      0|					       "isc_log_open '%s' "
 1443|      0|					       "failed: %s",
 1444|      0|					       FILE_NAME(channel),
  ------------------
  |  |  315|      0|#define FILE_NAME(channel)	 (channel->destination.file.name)
  ------------------
 1445|      0|					       isc_result_totext(result));
 1446|      0|					channel->flags |= ISC_LOG_OPENERR;
  ------------------
  |  |   72|      0|#define ISC_LOG_OPENERR	      0x08000 /* internal */
  ------------------
 1447|      0|				}
 1448|      0|				if (result != ISC_R_SUCCESS) {
  ------------------
  |  Branch (1448:9): [True: 0, False: 0]
  ------------------
 1449|      0|					break;
 1450|      0|				}
 1451|      0|				channel->flags &= ~ISC_LOG_OPENERR;
  ------------------
  |  |   72|      0|#define ISC_LOG_OPENERR	      0x08000 /* internal */
  ------------------
 1452|      0|			}
 1453|      0|			FALLTHROUGH;
  ------------------
  |  |  101|      0|#define FALLTHROUGH [[fallthrough]]
  ------------------
 1454|       |
 1455|      0|		case ISC_LOG_TOFILEDESC:
  ------------------
  |  |   56|      0|#define ISC_LOG_TOFILEDESC 4
  ------------------
  |  Branch (1455:3): [True: 0, False: 0]
  ------------------
 1456|      0|			fprintf(FILE_STREAM(channel), "%s%s%s%s%s%s%s%s%s%s\n",
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
 1457|      0|				printtime ? time_string : "",
  ------------------
  |  Branch (1457:5): [True: 0, False: 0]
  ------------------
 1458|      0|				printtime ? " " : "", printtag ? lcfg->tag : "",
  ------------------
  |  Branch (1458:5): [True: 0, False: 0]
  |  Branch (1458:27): [True: 0, False: 0]
  ------------------
 1459|      0|				printcolon ? ": " : "",
  ------------------
  |  Branch (1459:5): [True: 0, False: 0]
  ------------------
 1460|      0|				printcategory ? categories_description[category]
  ------------------
  |  Branch (1460:5): [True: 0, False: 0]
  ------------------
 1461|      0|					      : "",
 1462|      0|				printcategory ? ": " : "",
  ------------------
  |  Branch (1462:5): [True: 0, False: 0]
  ------------------
 1463|      0|				printmodule ? modules_description[module] : "",
  ------------------
  |  Branch (1463:5): [True: 0, False: 0]
  ------------------
 1464|      0|				printmodule ? ": " : "",
  ------------------
  |  Branch (1464:5): [True: 0, False: 0]
  ------------------
 1465|      0|				printlevel ? level_string : "",
  ------------------
  |  Branch (1465:5): [True: 0, False: 0]
  ------------------
 1466|      0|				isc__lctx->buffer);
 1467|       |
 1468|      0|			if (!buffered) {
  ------------------
  |  Branch (1468:8): [True: 0, False: 0]
  ------------------
 1469|      0|				fflush(FILE_STREAM(channel));
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
 1470|      0|			}
 1471|       |
 1472|       |			/*
 1473|       |			 * If the file now exceeds its maximum size
 1474|       |			 * threshold, note it so that it will not be
 1475|       |			 * logged to any more.
 1476|       |			 */
 1477|      0|			if (FILE_MAXSIZE(channel) > 0) {
  ------------------
  |  |  319|      0|#define FILE_MAXSIZE(channel)	 (channel->destination.file.maximum_size)
  ------------------
  |  Branch (1477:8): [True: 0, False: 0]
  ------------------
 1478|      0|				INSIST(channel->type == ISC_LOG_TOFILE);
  ------------------
  |  |  202|      0|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      0|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      0|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1479|       |
 1480|       |				/* XXXDCL NT fstat/fileno */
 1481|       |				/* XXXDCL complain if fstat fails? */
 1482|      0|				if (fstat(fileno(FILE_STREAM(channel)),
  ------------------
  |  |  316|      0|#define FILE_STREAM(channel)	 (channel->destination.file.stream)
  ------------------
  |  Branch (1482:9): [True: 0, False: 0]
  ------------------
 1483|      0|					  &statbuf) >= 0 &&
 1484|      0|				    statbuf.st_size > FILE_MAXSIZE(channel))
  ------------------
  |  |  319|      0|#define FILE_MAXSIZE(channel)	 (channel->destination.file.maximum_size)
  ------------------
  |  Branch (1484:9): [True: 0, False: 0]
  ------------------
 1485|      0|				{
 1486|      0|					FILE_MAXREACHED(channel) = true;
  ------------------
  |  |  320|      0|#define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
  ------------------
 1487|      0|				}
 1488|      0|			}
 1489|       |
 1490|      0|			break;
 1491|       |
 1492|      0|		case ISC_LOG_TOSYSLOG:
  ------------------
  |  |   54|      0|#define ISC_LOG_TOSYSLOG   2
  ------------------
  |  Branch (1492:3): [True: 0, False: 0]
  ------------------
 1493|      0|			if (level > 0) {
  ------------------
  |  Branch (1493:8): [True: 0, False: 0]
  ------------------
 1494|      0|				syslog_level = LOG_DEBUG;
 1495|      0|			} else if (level < ISC_LOG_CRITICAL) {
  ------------------
  |  |   46|      0|#define ISC_LOG_CRITICAL (-5)
  ------------------
  |  Branch (1495:15): [True: 0, False: 0]
  ------------------
 1496|      0|				syslog_level = LOG_CRIT;
 1497|      0|			} else {
 1498|      0|				syslog_level = syslog_map[-level];
 1499|      0|			}
 1500|       |
 1501|      0|			(void)syslog(
 1502|      0|				FACILITY(channel) | syslog_level,
  ------------------
  |  |  314|      0|#define FACILITY(channel)	 (channel->destination.facility)
  ------------------
 1503|      0|				"%s%s%s%s%s%s%s%s%s%s",
 1504|      0|				printtime ? time_string : "",
  ------------------
  |  Branch (1504:5): [True: 0, False: 0]
  ------------------
 1505|      0|				printtime ? " " : "", printtag ? lcfg->tag : "",
  ------------------
  |  Branch (1505:5): [True: 0, False: 0]
  |  Branch (1505:27): [True: 0, False: 0]
  ------------------
 1506|      0|				printcolon ? ": " : "",
  ------------------
  |  Branch (1506:5): [True: 0, False: 0]
  ------------------
 1507|      0|				printcategory ? categories_description[category]
  ------------------
  |  Branch (1507:5): [True: 0, False: 0]
  ------------------
 1508|      0|					      : "",
 1509|      0|				printcategory ? ": " : "",
  ------------------
  |  Branch (1509:5): [True: 0, False: 0]
  ------------------
 1510|      0|				printmodule ? modules_description[module] : "",
  ------------------
  |  Branch (1510:5): [True: 0, False: 0]
  ------------------
 1511|      0|				printmodule ? ": " : "",
  ------------------
  |  Branch (1511:5): [True: 0, False: 0]
  ------------------
 1512|      0|				printlevel ? level_string : "",
  ------------------
  |  Branch (1512:5): [True: 0, False: 0]
  ------------------
 1513|      0|				isc__lctx->buffer);
 1514|      0|			break;
 1515|       |
 1516|      0|		case ISC_LOG_TONULL:
  ------------------
  |  |   53|      0|#define ISC_LOG_TONULL	   1
  ------------------
  |  Branch (1516:3): [True: 0, False: 0]
  ------------------
 1517|      0|			break;
 1518|      0|		}
 1519|      0|	} while (1);
  ------------------
  |  Branch (1519:11): [True: 0, Folded]
  ------------------
 1520|       |
 1521|      0|unlock:
 1522|      0|	UNLOCK(&isc__lctx->lock);
  ------------------
  |  |   34|      0|	{                                                                   \
  |  |   35|      0|		isc_mutex_unlock((lp));                                     \
  |  |  ------------------
  |  |  |  |   70|      0|#define isc_mutex_unlock(mp)  isc__mutex_unlock(mp)
  |  |  |  |  ------------------
  |  |  |  |  |  |   91|      0|	{                                                           \
  |  |  |  |  |  |   92|      0|		int _ret = pthread_mutex_unlock(mp);                \
  |  |  |  |  |  |   93|      0|		PTHREADS_RUNTIME_CHECK(pthread_mutex_unlock, _ret); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  288|      0|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   94|      0|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|      0|		ISC_UTIL_TRACE(fprintf(stderr, "UNLOCKED %p %s %d\n", (lp), \
  |  |   37|      0|				       __FILE__, __LINE__));                \
  |  |   38|      0|	}
  ------------------
 1523|       |	rcu_read_unlock();
 1524|      0|}

isc__mem_initialize:
  505|      2|isc__mem_initialize(void) {
  506|       |/*
  507|       | * Check if the values copied from jemalloc still match
  508|       | */
  509|       |#ifdef JEMALLOC_API_SUPPORTED
  510|       |	RUNTIME_CHECK(ISC__MEM_ZERO == MALLOCX_ZERO);
  511|       |
  512|       |	/*
  513|       |	 * ignore errors — volumetric-based purge in mem_put handles the rest
  514|       |	 * regardless
  515|       |	 */
  516|       |
  517|       |	(void)mallctl("background_thread", NULL, NULL, &(bool){ true },
  518|       |		      sizeof(bool));
  519|       |
  520|       |	(void)mallctl("arenas.dirty_decay_ms", NULL, NULL,
  521|       |		      &default_dirty_decay_ms, sizeof(default_dirty_decay_ms));
  522|       |
  523|       |	(void)mallctl("arena." STRINGIFY(MALLCTL_ARENAS_ALL) ".dirty_decay_ms",
  524|       |		      NULL, NULL, &default_dirty_decay_ms,
  525|       |		      sizeof(default_dirty_decay_ms));
  526|       |
  527|       |#endif /* JEMALLOC_API_SUPPORTED */
  528|       |
  529|      2|	isc_mutex_init(&contextslock);
  ------------------
  |  |   68|      2|#define isc_mutex_init(mp)    isc__mutex_init(mp)
  |  |  ------------------
  |  |  |  |   79|      2|	{                                                                 \
  |  |  |  |   80|      2|		int _ret = pthread_mutex_init(mp, &isc__mutex_init_attr); \
  |  |  |  |   81|      2|		PTHREADS_RUNTIME_CHECK(pthread_mutex_init, _ret);         \
  |  |  |  |  ------------------
  |  |  |  |  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  ------------------
  |  |  |  |   82|      2|	}
  |  |  ------------------
  ------------------
  530|      2|	ISC_LIST_INIT(contexts);
  ------------------
  |  |   43|      2|	do {                        \
  |  |   44|      2|		(list).head = NULL; \
  |  |   45|      2|		(list).tail = NULL; \
  |  |   46|      2|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 2]
  |  |  ------------------
  ------------------
  531|       |
  532|      2|	if (debugging_enabled("ISC_MEM_DEBUGTRACE")) {
  ------------------
  |  Branch (532:6): [True: 0, False: 2]
  ------------------
  533|      0|		mem_debugging |= ISC_MEM_DEBUGTRACE;
  ------------------
  |  |   39|      0|#define ISC_MEM_DEBUGTRACE  0x00000001U
  ------------------
  534|      0|	}
  535|       |
  536|      2|	if (debugging_enabled("ISC_MEM_DEBUGRECORD")) {
  ------------------
  |  Branch (536:6): [True: 0, False: 2]
  ------------------
  537|      0|		mem_debugging |= ISC_MEM_DEBUGRECORD;
  ------------------
  |  |   40|      0|#define ISC_MEM_DEBUGRECORD 0x00000002U
  ------------------
  538|      0|	}
  539|       |
  540|      2|	if (debugging_enabled("ISC_MEM_DEBUGUSAGE")) {
  ------------------
  |  Branch (540:6): [True: 0, False: 2]
  ------------------
  541|      0|		mem_debugging |= ISC_MEM_DEBUGUSAGE;
  ------------------
  |  |   41|      0|#define ISC_MEM_DEBUGUSAGE  0x00000004U
  ------------------
  542|      0|	}
  543|       |
  544|      2|	isc_mem_create("default", &isc_g_mctx);
  ------------------
  |  |  198|      2|#define isc_mem_create(name, cp) isc__mem_create((name), (cp)_ISC_MEM_FILELINE)
  ------------------
  545|      2|}
isc_mem_setdebugging:
  567|      4|isc_mem_setdebugging(isc_mem_t *ctx, unsigned int debugging) {
  568|      4|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|      4|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 4, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      4|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  569|      4|	REQUIRE(isc_mem_inuse(ctx) == 0);
  ------------------
  |  |  198|      4|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      4|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  570|       |
  571|      4|	ctx->debugging = debugging;
  572|      4|}
isc__mem_putanddetach:
  730|  96.4k|		      int flags FLARG) {
  731|  96.4k|	REQUIRE(ctxp != NULL && VALID_CONTEXT(*ctxp));
  ------------------
  |  |  198|  96.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   385k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 96.4k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 96.4k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 96.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  96.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  732|  96.4k|	REQUIRE(ptr != NULL);
  ------------------
  |  |  198|  96.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  96.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 96.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  96.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  733|  96.4k|	REQUIRE(size != 0);
  ------------------
  |  |  198|  96.4k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  96.4k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 96.4k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  96.4k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  734|       |
  735|  96.4k|	isc_mem_t *ctx = *ctxp;
  736|  96.4k|	*ctxp = NULL;
  737|       |
  738|  96.4k|	isc__mem_put(ctx, ptr, size, flags FLARG_PASS);
  739|       |#if ISC_MEM_TRACE
  740|       |	isc_mem__detach(&ctx, func, file, line);
  741|       |#else
  742|  96.4k|	isc_mem_detach(&ctx);
  743|  96.4k|#endif
  744|  96.4k|}
isc__mem_get:
  747|   351k|isc__mem_get(isc_mem_t *ctx, size_t size, int flags FLARG) {
  748|   351k|	void *ptr = NULL;
  749|       |
  750|   351k|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|   351k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   703k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 351k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 351k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   351k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  751|       |
  752|   351k|	ptr = mem_get(ctx, size, flags);
  753|       |
  754|   351k|	mem_getstats(ctx, size);
  755|   351k|	ADD_TRACE(ctx, ptr, size, func, file, line);
  756|       |
  757|   351k|	return ptr;
  758|   351k|}
isc__mem_put:
  761|   351k|isc__mem_put(isc_mem_t *ctx, void *ptr, size_t size, int flags FLARG) {
  762|   351k|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|   351k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   703k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 351k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 351k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   351k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  763|       |
  764|   351k|	DELETE_TRACE(ctx, ptr, size, func, file, line);
  765|       |
  766|   351k|	mem_putstats(ctx, size);
  767|   351k|	mem_put(ctx, ptr, size, flags);
  768|   351k|}
isc__mem_allocate:
  839|      8|isc__mem_allocate(isc_mem_t *ctx, size_t size, int flags FLARG) {
  840|      8|	void *ptr = NULL;
  841|       |
  842|      8|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     16|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  843|       |
  844|      8|	ptr = mem_get(ctx, size, flags);
  845|       |
  846|       |	/* Recalculate the real allocated size */
  847|      8|	size = sallocx(ptr, flags | ctx->jemalloc_flags);
  848|       |
  849|      8|	mem_getstats(ctx, size);
  850|      8|	ADD_TRACE(ctx, ptr, size, func, file, line);
  851|       |
  852|      8|	return ptr;
  853|      8|}
isc__mem_strdup:
  947|      8|isc__mem_strdup(isc_mem_t *mctx, const char *s FLARG) {
  948|      8|	size_t len;
  949|      8|	char *ns = NULL;
  950|       |
  951|      8|	REQUIRE(VALID_CONTEXT(mctx));
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     16|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  952|      8|	REQUIRE(s != NULL);
  ------------------
  |  |  198|      8|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 8, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      8|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  953|       |
  954|      8|	len = strlen(s) + 1;
  955|       |
  956|      8|	ns = isc__mem_allocate(mctx, len, 0 FLARG_PASS);
  957|       |
  958|      8|	strlcpy(ns, s, len);
  959|       |
  960|      8|	return ns;
  961|      8|}
isc_mem_setdestroycheck:
  964|      2|isc_mem_setdestroycheck(isc_mem_t *ctx, bool flag) {
  965|      2|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|      2|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      4|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 2, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      2|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  966|       |
  967|      2|	MCTXLOCK(ctx);
  ------------------
  |  |   66|      2|#define MCTXLOCK(m)   LOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   26|      2|	{                                                                  \
  |  |  |  |   27|      2|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKING %p %s %d\n", (lp), \
  |  |  |  |   28|      2|				       __FILE__, __LINE__));               \
  |  |  |  |   29|      2|		isc_mutex_lock((lp));                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |   69|      2|#define isc_mutex_lock(mp)    isc__mutex_lock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   85|      2|	{                                                         \
  |  |  |  |  |  |  |  |   86|      2|		int _ret = pthread_mutex_lock(mp);                \
  |  |  |  |  |  |  |  |   87|      2|		PTHREADS_RUNTIME_CHECK(pthread_mutex_lock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   88|      2|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   30|      2|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKED %p %s %d\n", (lp),  \
  |  |  |  |   31|      2|				       __FILE__, __LINE__));               \
  |  |  |  |   32|      2|	}
  |  |  ------------------
  ------------------
  968|       |
  969|      2|	ctx->checkfree = flag;
  970|       |
  971|      2|	MCTXUNLOCK(ctx);
  ------------------
  |  |   67|      2|#define MCTXUNLOCK(m) UNLOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   34|      2|	{                                                                   \
  |  |  |  |   35|      2|		isc_mutex_unlock((lp));                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  |   70|      2|#define isc_mutex_unlock(mp)  isc__mutex_unlock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   91|      2|	{                                                           \
  |  |  |  |  |  |  |  |   92|      2|		int _ret = pthread_mutex_unlock(mp);                \
  |  |  |  |  |  |  |  |   93|      2|		PTHREADS_RUNTIME_CHECK(pthread_mutex_unlock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   94|      2|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|      2|		ISC_UTIL_TRACE(fprintf(stderr, "UNLOCKED %p %s %d\n", (lp), \
  |  |  |  |   37|      2|				       __FILE__, __LINE__));                \
  |  |  |  |   38|      2|	}
  |  |  ------------------
  ------------------
  972|      2|}
isc_mem_inuse:
  975|      4|isc_mem_inuse(isc_mem_t *ctx) {
  976|      4|	REQUIRE(VALID_CONTEXT(ctx));
  ------------------
  |  |  198|      4|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|      8|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 4, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|      4|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  977|       |
  978|      4|	int_fast64_t inuse = 0;
  979|       |
  980|      8|	for (ssize_t i = -1; i < isc_tid_count(); i++) {
  ------------------
  |  Branch (980:23): [True: 4, False: 4]
  ------------------
  981|      4|		inuse += atomic_load_relaxed(&ctx->stat[i].inuse);
  ------------------
  |  |   28|      4|#define atomic_load_relaxed(o) atomic_load_explicit((o), memory_order_relaxed)
  ------------------
  982|      4|	}
  983|      4|	INSIST(inuse >= 0);
  ------------------
  |  |  202|      4|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|      4|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 4, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|      4|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
  984|       |
  985|      4|	return (size_t)inuse;
  986|      4|}
isc__mempool_create:
 1051|  43.9k|		    const char *name, isc_mempool_t **restrict mpctxp FLARG) {
 1052|  43.9k|	isc_mempool_t *restrict mpctx = NULL;
 1053|  43.9k|	size_t size = element_size;
 1054|       |
 1055|  43.9k|	REQUIRE(VALID_CONTEXT(mctx));
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1056|  43.9k|	REQUIRE(size > 0U);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1057|  43.9k|	REQUIRE(mpctxp != NULL && *mpctxp == NULL);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1058|  43.9k|	REQUIRE(name != NULL);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1059|       |
 1060|       |	/*
 1061|       |	 * Mempools are stored as a linked list of element.
 1062|       |	 */
 1063|  43.9k|	if (size < sizeof(element)) {
  ------------------
  |  Branch (1063:6): [True: 0, False: 43.9k]
  ------------------
 1064|      0|		size = sizeof(element);
 1065|      0|	}
 1066|       |
 1067|       |	/*
 1068|       |	 * Allocate space for this pool, initialize values, and if all
 1069|       |	 * works well, attach to the memory context.
 1070|       |	 */
 1071|  43.9k|	mpctx = isc_mem_get(mctx, sizeof(isc_mempool_t));
  ------------------
  |  |  128|  43.9k|#define isc_mem_get(c, s) isc__mem_get((c), (s), 0 _ISC_MEM_FILELINE)
  ------------------
 1072|       |
 1073|  43.9k|	*mpctx = (isc_mempool_t){
 1074|  43.9k|		.size = size,
 1075|  43.9k|		.freemax = 1,
 1076|  43.9k|		.fillcount = 1,
 1077|  43.9k|		.name = strdup(name),
 1078|  43.9k|	};
 1079|       |
 1080|       |#if ISC_MEM_TRACKLINES
 1081|       |	if ((mctx->debugging & ISC_MEM_DEBUGTRACE) != 0) {
 1082|       |		fprintf(stderr,
 1083|       |			"create pool %p func %s file %s line %u mctx %p\n",
 1084|       |			mpctx, func, file, line, mctx);
 1085|       |	}
 1086|       |#endif /* ISC_MEM_TRACKLINES */
 1087|       |
 1088|  43.9k|	isc_mem_attach(mctx, &mpctx->mctx);
 1089|  43.9k|	mpctx->magic = MEMPOOL_MAGIC;
  ------------------
  |  |  158|  43.9k|#define MEMPOOL_MAGIC	 ISC_MAGIC('M', 'E', 'M', 'p')
  |  |  ------------------
  |  |  |  |   31|  43.9k|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
 1090|       |
 1091|  43.9k|	*mpctxp = (isc_mempool_t *)mpctx;
 1092|       |
 1093|  43.9k|	MCTXLOCK(mctx);
  ------------------
  |  |   66|  43.9k|#define MCTXLOCK(m)   LOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   26|  43.9k|	{                                                                  \
  |  |  |  |   27|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKING %p %s %d\n", (lp), \
  |  |  |  |   28|  43.9k|				       __FILE__, __LINE__));               \
  |  |  |  |   29|  43.9k|		isc_mutex_lock((lp));                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |   69|  43.9k|#define isc_mutex_lock(mp)    isc__mutex_lock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   85|  43.9k|	{                                                         \
  |  |  |  |  |  |  |  |   86|  43.9k|		int _ret = pthread_mutex_lock(mp);                \
  |  |  |  |  |  |  |  |   87|  43.9k|		PTHREADS_RUNTIME_CHECK(pthread_mutex_lock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|  43.9k|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 43.9k]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   88|  43.9k|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   30|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKED %p %s %d\n", (lp),  \
  |  |  |  |   31|  43.9k|				       __FILE__, __LINE__));               \
  |  |  |  |   32|  43.9k|	}
  |  |  ------------------
  ------------------
 1094|  43.9k|	ISC_LIST_INITANDAPPEND(mctx->pools, mpctx, link);
  ------------------
  |  |  106|  43.9k|	__ISC_LIST_APPENDUNSAFE(list, elt, link)
  |  |  ------------------
  |  |  |  |   88|  43.9k|	do {                                            \
  |  |  |  |   89|  43.9k|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 21.9k, False: 21.9k]
  |  |  |  |  ------------------
  |  |  |  |   90|  21.9k|			(list).tail->link.next = (elt); \
  |  |  |  |   91|  21.9k|		} else {                                \
  |  |  |  |   92|  21.9k|			(list).head = (elt);            \
  |  |  |  |   93|  21.9k|		}                                       \
  |  |  |  |   94|  43.9k|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|  43.9k|		(elt)->link.next = NULL;                \
  |  |  |  |   96|  43.9k|		(list).tail = (elt);                    \
  |  |  |  |   97|  43.9k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 43.9k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1095|  43.9k|	mctx->poolcnt++;
 1096|  43.9k|	MCTXUNLOCK(mctx);
  ------------------
  |  |   67|  43.9k|#define MCTXUNLOCK(m) UNLOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   34|  43.9k|	{                                                                   \
  |  |  |  |   35|  43.9k|		isc_mutex_unlock((lp));                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  |   70|  43.9k|#define isc_mutex_unlock(mp)  isc__mutex_unlock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   91|  43.9k|	{                                                           \
  |  |  |  |  |  |  |  |   92|  43.9k|		int _ret = pthread_mutex_unlock(mp);                \
  |  |  |  |  |  |  |  |   93|  43.9k|		PTHREADS_RUNTIME_CHECK(pthread_mutex_unlock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|  43.9k|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 43.9k]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   94|  43.9k|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "UNLOCKED %p %s %d\n", (lp), \
  |  |  |  |   37|  43.9k|				       __FILE__, __LINE__));                \
  |  |  |  |   38|  43.9k|	}
  |  |  ------------------
  ------------------
 1097|  43.9k|}
isc__mempool_destroy:
 1100|  43.9k|isc__mempool_destroy(isc_mempool_t **restrict mpctxp FLARG) {
 1101|  43.9k|	isc_mempool_t *restrict mpctx = NULL;
 1102|  43.9k|	isc_mem_t *mctx = NULL;
 1103|  43.9k|	element *restrict item = NULL;
 1104|       |
 1105|  43.9k|	REQUIRE(mpctxp != NULL);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1106|  43.9k|	REQUIRE(VALID_MEMPOOL(*mpctxp));
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1107|       |
 1108|  43.9k|	mpctx = *mpctxp;
 1109|  43.9k|	*mpctxp = NULL;
 1110|       |
 1111|  43.9k|	mctx = mpctx->mctx;
 1112|       |
 1113|       |#if ISC_MEM_TRACKLINES
 1114|       |	if ((mctx->debugging & ISC_MEM_DEBUGTRACE) != 0) {
 1115|       |		fprintf(stderr,
 1116|       |			"destroy pool %p func %s file %s line %u mctx %p\n",
 1117|       |			mpctx, func, file, line, mctx);
 1118|       |	}
 1119|       |#endif
 1120|       |
 1121|  43.9k|	if (mpctx->allocated > 0) {
  ------------------
  |  Branch (1121:6): [True: 0, False: 43.9k]
  ------------------
 1122|      0|		UNEXPECTED_ERROR("mempool %s leaked memory", mpctx->name);
  ------------------
  |  |  217|      0|	isc_error_unexpected(__FILE__, __LINE__, __func__, __VA_ARGS__)
  ------------------
 1123|      0|	}
 1124|  43.9k|	REQUIRE(mpctx->allocated == 0);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1125|       |
 1126|       |	/*
 1127|       |	 * Return any items on the free list
 1128|       |	 */
 1129|  42.8M|	while (mpctx->items != NULL) {
  ------------------
  |  Branch (1129:9): [True: 42.8M, False: 43.9k]
  ------------------
 1130|  42.8M|		INSIST(mpctx->freecount > 0);
  ------------------
  |  |  202|  42.8M|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  42.8M|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 42.8M, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  42.8M|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1131|  42.8M|		mpctx->freecount--;
 1132|       |
 1133|  42.8M|		item = mpctx->items;
 1134|  42.8M|		mpctx->items = item->next;
 1135|       |
 1136|  42.8M|		mem_putstats(mctx, mpctx->size);
 1137|  42.8M|		mem_put(mctx, item, mpctx->size, 0);
 1138|  42.8M|	}
 1139|       |
 1140|       |	/*
 1141|       |	 * Remove our linked list entry from the memory context.
 1142|       |	 */
 1143|  43.9k|	MCTXLOCK(mctx);
  ------------------
  |  |   66|  43.9k|#define MCTXLOCK(m)   LOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   26|  43.9k|	{                                                                  \
  |  |  |  |   27|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKING %p %s %d\n", (lp), \
  |  |  |  |   28|  43.9k|				       __FILE__, __LINE__));               \
  |  |  |  |   29|  43.9k|		isc_mutex_lock((lp));                                      \
  |  |  |  |  ------------------
  |  |  |  |  |  |   69|  43.9k|#define isc_mutex_lock(mp)    isc__mutex_lock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   85|  43.9k|	{                                                         \
  |  |  |  |  |  |  |  |   86|  43.9k|		int _ret = pthread_mutex_lock(mp);                \
  |  |  |  |  |  |  |  |   87|  43.9k|		PTHREADS_RUNTIME_CHECK(pthread_mutex_lock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|  43.9k|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 43.9k]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   88|  43.9k|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   30|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKED %p %s %d\n", (lp),  \
  |  |  |  |   31|  43.9k|				       __FILE__, __LINE__));               \
  |  |  |  |   32|  43.9k|	}
  |  |  ------------------
  ------------------
 1144|  43.9k|	ISC_LIST_UNLINK(mctx->pools, mpctx, link);
  ------------------
  |  |  137|  43.9k|	ISC_LIST_UNLINK_TYPE(list, elt, link, void)
  |  |  ------------------
  |  |  |  |  132|  43.9k|	do {                                                         \
  |  |  |  |  133|  43.9k|		ISC_LINK_INSIST(ISC_LINK_LINKED(elt, link));         \
  |  |  |  |  134|  43.9k|		__ISC_LIST_UNLINKUNSAFE_TYPE(list, elt, link, type); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  109|  43.9k|	do {                                                            \
  |  |  |  |  |  |  110|  43.9k|		if ((elt)->link.next != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (110:7): [True: 0, False: 43.9k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  111|      0|			(elt)->link.next->link.prev = (elt)->link.prev; \
  |  |  |  |  |  |  112|  43.9k|		} else {                                                \
  |  |  |  |  |  |  113|  43.9k|			ISC_INSIST((list).tail == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  43.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 43.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  114|  43.9k|			(list).tail = (elt)->link.prev;                 \
  |  |  |  |  |  |  115|  43.9k|		}                                                       \
  |  |  |  |  |  |  116|  43.9k|		if ((elt)->link.prev != NULL) {                         \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (116:7): [True: 21.9k, False: 21.9k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  117|  21.9k|			(elt)->link.prev->link.next = (elt)->link.next; \
  |  |  |  |  |  |  118|  21.9k|		} else {                                                \
  |  |  |  |  |  |  119|  21.9k|			ISC_INSIST((list).head == (elt));               \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  21.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 21.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  21.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  120|  21.9k|			(list).head = (elt)->link.next;                 \
  |  |  |  |  |  |  121|  21.9k|		}                                                       \
  |  |  |  |  |  |  122|  43.9k|		(elt)->link.prev = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  43.9k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  123|  43.9k|		(elt)->link.next = ISC_LINK_TOMBSTONE(type);            \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   18|  43.9k|#define ISC_LINK_TOMBSTONE(type) ((type *)-1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  124|  43.9k|		ISC_INSIST((list).head != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  43.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 43.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  125|  43.9k|		ISC_INSIST((list).tail != (elt));                       \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   54|  43.9k|	((void)((cond) ||                                                 \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (54:10): [True: 43.9k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   55|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |  |  |  |  |   57|      0|		 0)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  126|  43.9k|	} while (0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (126:11): [Folded, False: 43.9k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  135|  43.9k|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (135:11): [Folded, False: 43.9k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1145|  43.9k|	mctx->poolcnt--;
 1146|  43.9k|	MCTXUNLOCK(mctx);
  ------------------
  |  |   67|  43.9k|#define MCTXUNLOCK(m) UNLOCK(&m->lock)
  |  |  ------------------
  |  |  |  |   34|  43.9k|	{                                                                   \
  |  |  |  |   35|  43.9k|		isc_mutex_unlock((lp));                                     \
  |  |  |  |  ------------------
  |  |  |  |  |  |   70|  43.9k|#define isc_mutex_unlock(mp)  isc__mutex_unlock(mp)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   91|  43.9k|	{                                                           \
  |  |  |  |  |  |  |  |   92|  43.9k|		int _ret = pthread_mutex_unlock(mp);                \
  |  |  |  |  |  |  |  |   93|  43.9k|		PTHREADS_RUNTIME_CHECK(pthread_mutex_unlock, _ret); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  288|  43.9k|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 43.9k]
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   94|  43.9k|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   36|  43.9k|		ISC_UTIL_TRACE(fprintf(stderr, "UNLOCKED %p %s %d\n", (lp), \
  |  |  |  |   37|  43.9k|				       __FILE__, __LINE__));                \
  |  |  |  |   38|  43.9k|	}
  |  |  ------------------
  ------------------
 1147|       |
 1148|  43.9k|	free(mpctx->name);
 1149|       |
 1150|  43.9k|	mpctx->magic = 0;
 1151|       |
 1152|       |	isc_mem_putanddetach(&mpctx->mctx, mpctx, sizeof(isc_mempool_t));
  ------------------
  |  |  159|  43.9k|	do {                                                               \
  |  |  160|  43.9k|		isc__mem_putanddetach((c), (p), (s), 0 _ISC_MEM_FILELINE); \
  |  |  161|  43.9k|		(p) = NULL;                                                \
  |  |  162|  43.9k|	} while (0)
  |  |  ------------------
  |  |  |  Branch (162:11): [Folded, False: 43.9k]
  |  |  ------------------
  ------------------
 1153|  43.9k|}
isc__mempool_get:
 1156|   849k|isc__mempool_get(isc_mempool_t *restrict mpctx FLARG) {
 1157|   849k|	element *restrict item = NULL;
 1158|       |
 1159|   849k|	REQUIRE(VALID_MEMPOOL(mpctx));
  ------------------
  |  |  198|   849k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.69M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 849k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 849k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   849k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1160|       |
 1161|   849k|	mpctx->allocated++;
 1162|       |
 1163|   849k|	if (mpctx->items == NULL) {
  ------------------
  |  Branch (1163:6): [True: 41.8k, False: 807k]
  ------------------
 1164|  41.8k|		isc_mem_t *mctx = mpctx->mctx;
 1165|  41.8k|#if !__SANITIZE_ADDRESS__
 1166|  41.8k|		const size_t fillcount = mpctx->fillcount;
 1167|       |#else
 1168|       |		const size_t fillcount = 1;
 1169|       |#endif
 1170|       |		/*
 1171|       |		 * We need to dip into the well.  Fill up our free list.
 1172|       |		 */
 1173|  42.8M|		for (size_t i = 0; i < fillcount; i++) {
  ------------------
  |  Branch (1173:22): [True: 42.8M, False: 41.8k]
  ------------------
 1174|  42.8M|			item = mem_get(mctx, mpctx->size, 0);
 1175|  42.8M|			mem_getstats(mctx, mpctx->size);
 1176|  42.8M|			item->next = mpctx->items;
 1177|  42.8M|			mpctx->items = item;
 1178|  42.8M|			mpctx->freecount++;
 1179|  42.8M|		}
 1180|  41.8k|	}
 1181|       |
 1182|   849k|	INSIST(mpctx->items != NULL);
  ------------------
  |  |  202|   849k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   849k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 849k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   849k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1183|   849k|	item = mpctx->items;
 1184|       |
 1185|   849k|	mpctx->items = item->next;
 1186|       |
 1187|   849k|	INSIST(mpctx->freecount > 0);
  ------------------
  |  |  202|   849k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   849k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 849k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   849k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1188|   849k|	mpctx->freecount--;
 1189|   849k|	mpctx->gets++;
 1190|       |
 1191|   849k|	ADD_TRACE(mpctx->mctx, item, mpctx->size, func, file, line);
 1192|       |
 1193|   849k|	return item;
 1194|   849k|}
isc__mempool_put:
 1198|   849k|isc__mempool_put(isc_mempool_t *restrict mpctx, void *mem FLARG) {
 1199|   849k|	element *restrict item = NULL;
 1200|       |
 1201|   849k|	REQUIRE(VALID_MEMPOOL(mpctx));
  ------------------
  |  |  198|   849k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  1.69M|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 849k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 849k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   849k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1202|   849k|	REQUIRE(mem != NULL);
  ------------------
  |  |  198|   849k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|   849k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 849k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|   849k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1203|       |
 1204|   849k|	isc_mem_t *mctx = mpctx->mctx;
 1205|   849k|	const size_t freecount = mpctx->freecount;
 1206|   849k|#if !__SANITIZE_ADDRESS__
 1207|   849k|	const size_t freemax = mpctx->freemax;
 1208|       |#else
 1209|       |	const size_t freemax = 0;
 1210|       |#endif
 1211|       |
 1212|   849k|	INSIST(mpctx->allocated > 0);
  ------------------
  |  |  202|   849k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|   849k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:10): [True: 849k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|   849k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
 1213|   849k|	mpctx->allocated--;
 1214|       |
 1215|   849k|	DELETE_TRACE(mctx, mem, mpctx->size, func, file, line);
 1216|       |
 1217|       |	/*
 1218|       |	 * If our free list is full, return this to the mctx directly.
 1219|       |	 */
 1220|   849k|	if (freecount >= freemax) {
  ------------------
  |  Branch (1220:6): [True: 24.5k, False: 824k]
  ------------------
 1221|  24.5k|		mem_putstats(mctx, mpctx->size);
 1222|  24.5k|		mem_put(mctx, mem, mpctx->size, 0);
 1223|  24.5k|		return;
 1224|  24.5k|	}
 1225|       |
 1226|       |	/*
 1227|       |	 * Otherwise, attach it to our free list and bump the counter.
 1228|       |	 */
 1229|   824k|	item = (element *)mem;
 1230|   824k|	item->next = mpctx->items;
 1231|   824k|	mpctx->items = item;
 1232|   824k|	mpctx->freecount++;
 1233|   824k|}
isc_mempool_setfreemax:
 1241|  43.9k|		       const unsigned int limit) {
 1242|  43.9k|	REQUIRE(VALID_MEMPOOL(mpctx));
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1243|  43.9k|	mpctx->freemax = limit;
 1244|  43.9k|}
isc_mempool_getallocated:
 1261|  43.9k|isc_mempool_getallocated(isc_mempool_t *restrict mpctx) {
 1262|  43.9k|	REQUIRE(VALID_MEMPOOL(mpctx));
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1263|       |
 1264|  43.9k|	return mpctx->allocated;
 1265|  43.9k|}
isc_mempool_setfillcount:
 1269|  43.9k|			 unsigned int const limit) {
 1270|  43.9k|	REQUIRE(VALID_MEMPOOL(mpctx));
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  87.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1271|  43.9k|	REQUIRE(limit > 0);
  ------------------
  |  |  198|  43.9k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  43.9k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 43.9k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  43.9k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
 1272|       |
 1273|  43.9k|	mpctx->fillcount = limit;
 1274|  43.9k|}
isc__mem_create:
 1536|     10|isc__mem_create(const char *name, isc_mem_t **mctxp FLARG) {
 1537|     10|	mem_create(name, mctxp, mem_debugging, 0);
 1538|       |#if ISC_MEM_TRACKLINES
 1539|       |	if ((mem_debugging & ISC_MEM_DEBUGTRACE) != 0) {
 1540|       |		fprintf(stderr, "create mctx %p func %s file %s line %u\n",
 1541|       |			*mctxp, func, file, line);
 1542|       |	}
 1543|       |#endif /* ISC_MEM_TRACKLINES */
 1544|     10|}
mem.c:debugging_enabled:
  488|      6|debugging_enabled(const char *name) {
  489|      6|	char env_buf[256];
  490|      6|	size_t env_size = sizeof(env_buf);
  491|       |
  492|      6|	int r = uv_os_getenv(name, env_buf, &env_size);
  493|      6|	switch (r) {
  494|      0|	case 0:
  ------------------
  |  Branch (494:2): [True: 0, False: 6]
  ------------------
  495|      0|		return true;
  496|      6|	case UV_ENOENT:
  ------------------
  |  Branch (496:2): [True: 6, False: 0]
  ------------------
  497|      6|		return false;
  498|      0|	default:
  ------------------
  |  Branch (498:2): [True: 0, False: 6]
  ------------------
  499|      0|		UV_RUNTIME_CHECK(uv_os_getenv, r);
  ------------------
  |  |   50|      0|	if (ret != 0) {                                                  \
  |  |  ------------------
  |  |  |  Branch (50:6): [True: 0, False: 0]
  |  |  ------------------
  |  |   51|      0|		FATAL_ERROR("%s failed: %s\n", #func, uv_strerror(ret)); \
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |   52|      0|	}
  ------------------
  500|      0|		UNREACHABLE();
  ------------------
  |  |  206|      0|#define UNREACHABLE() ISC_UNREACHABLE()
  |  |  ------------------
  |  |  |  |   66|      0|	(isc_assertion_failed(__FILE__, __LINE__, isc_assertiontype_insist, \
  |  |  |  |   67|      0|			      "unreachable"),                               \
  |  |  |  |   68|      0|	 __builtin_unreachable())
  |  |  ------------------
  ------------------
  501|      6|	}
  502|      6|}
mem.c:mem_get:
  395|  43.1M|mem_get(isc_mem_t *ctx, size_t size, int flags) {
  396|  43.1M|	ADJUST_ZERO_ALLOCATION_SIZE(size);
  ------------------
  |  |  387|  43.1M|	if (s == 0) {                     \
  |  |  ------------------
  |  |  |  Branch (387:6): [True: 0, False: 43.1M]
  |  |  ------------------
  |  |  388|      0|		s = ZERO_ALLOCATION_SIZE; \
  |  |  ------------------
  |  |  |  |   83|      0|#define ZERO_ALLOCATION_SIZE sizeof(void *)
  |  |  ------------------
  |  |  389|      0|	}
  ------------------
  397|       |
  398|  43.1M|	void *ptr = mallocx(size, flags | ctx->jemalloc_flags);
  399|  43.1M|	CHECK_OOM(ptr, size);
  ------------------
  |  |  241|  43.1M|#define CHECK_OOM(ptr, size) (void)((ptr != NULL) || (oom(size), false))
  |  |  ------------------
  |  |  |  Branch (241:37): [True: 43.1M, False: 0]
  |  |  |  Branch (241:54): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  400|       |
  401|  43.1M|	return ptr;
  402|  43.1M|}
mem.c:mem_getstats:
  471|  43.1M|mem_getstats(isc_mem_t *ctx, size_t size) {
  472|       |	atomic_fetch_add_relaxed(&ctx->stat[isc_tid()].inuse, size);
  ------------------
  |  |   30|  43.1M|	atomic_fetch_add_explicit((o), (v), memory_order_relaxed)
  ------------------
  473|  43.1M|}
mem.c:mem_putstats:
  479|  43.1M|mem_putstats(isc_mem_t *ctx, size_t size) {
  480|       |	atomic_fetch_sub_relaxed(&ctx->stat[isc_tid()].inuse, size);
  ------------------
  |  |   32|  43.1M|	atomic_fetch_sub_explicit((o), (v), memory_order_relaxed)
  ------------------
  481|  43.1M|}
mem.c:mem_put:
  442|  43.1M|mem_put(isc_mem_t *ctx, void *mem, size_t size, int flags) {
  443|  43.1M|	ADJUST_ZERO_ALLOCATION_SIZE(size);
  ------------------
  |  |  387|  43.1M|	if (s == 0) {                     \
  |  |  ------------------
  |  |  |  Branch (387:6): [True: 0, False: 43.1M]
  |  |  ------------------
  |  |  388|      0|		s = ZERO_ALLOCATION_SIZE; \
  |  |  ------------------
  |  |  |  |   83|      0|#define ZERO_ALLOCATION_SIZE sizeof(void *)
  |  |  ------------------
  |  |  389|      0|	}
  ------------------
  444|       |
  445|  43.1M|	sdallocx(mem, size, flags | ctx->jemalloc_flags);
  446|       |
  447|  43.1M|	freed_bytes += size;
  448|       |
  449|  43.1M|	if (freed_bytes >= purge_threshold) {
  ------------------
  |  Branch (449:6): [True: 661, False: 43.1M]
  ------------------
  450|    661|		freed_bytes = 0;
  451|    661|		mem_purge();
  452|    661|	}
  453|  43.1M|}
mem.c:mem_purge:
  413|    661|mem_purge(void) {
  414|    661|	isc_stdtime_t now = isc_stdtime_now();
  415|    661|	isc_stdtime_t last = atomic_load_relaxed(&last_purge);
  ------------------
  |  |   28|    661|#define atomic_load_relaxed(o) atomic_load_explicit((o), memory_order_relaxed)
  ------------------
  416|       |
  417|    661|	if (now > last &&
  ------------------
  |  Branch (417:6): [True: 17, False: 644]
  ------------------
  418|    661|	    atomic_compare_exchange_strong_acq_rel(&last_purge, &last, now))
  ------------------
  |  |   71|    661|	atomic_compare_exchange_strong_explicit(        \
  |  |  ------------------
  |  |  |  Branch (71:2): [True: 17, False: 0]
  |  |  ------------------
  |  |   72|     17|		(o), (e), (d), memory_order_acq_rel, memory_order_acquire)
  ------------------
  419|     17|	{
  420|       |#if defined(JEMALLOC_API_SUPPORTED)
  421|       |		(void)mallctl("arena." STRINGIFY(MALLCTL_ARENAS_ALL) ".decay",
  422|       |			      NULL, NULL, NULL, 0);
  423|       |#elif defined(__GLIBC__)
  424|       |		(void)malloc_trim(0);
  425|     17|#endif
  426|     17|	}
  427|    661|}
mem.c:mem_create:
  602|     10|	   unsigned int jemalloc_flags) {
  603|     10|	isc_mem_t *ctx = NULL;
  604|       |
  605|     10|	REQUIRE(ctxp != NULL && *ctxp == NULL);
  ------------------
  |  |  198|     10|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     20|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 10, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 10, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     10|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  606|     10|	REQUIRE(name != NULL);
  ------------------
  |  |  198|     10|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     10|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 10, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     10|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  607|       |
  608|     10|	ctx = mallocx(sizeof(*ctx), jemalloc_flags);
  609|     10|	CHECK_OOM(ctx, sizeof(*ctx));
  ------------------
  |  |  241|     10|#define CHECK_OOM(ptr, size) (void)((ptr != NULL) || (oom(size), false))
  |  |  ------------------
  |  |  |  Branch (241:37): [True: 10, False: 0]
  |  |  |  Branch (241:54): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  610|       |
  611|     10|	*ctx = (isc_mem_t){
  612|     10|		.magic = MEM_MAGIC,
  ------------------
  |  |  118|     10|#define MEM_MAGIC	 ISC_MAGIC('M', 'e', 'm', 'C')
  |  |  ------------------
  |  |  |  |   31|     10|#define ISC_MAGIC(a, b, c, d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
  |  |  ------------------
  ------------------
  613|     10|		.debugging = debugging,
  614|     10|		.jemalloc_flags = jemalloc_flags,
  615|     10|		.checkfree = true,
  616|     10|		.name = strdup(name),
  617|     10|	};
  618|       |
  619|     10|	isc_mutex_init(&ctx->lock);
  ------------------
  |  |   68|     10|#define isc_mutex_init(mp)    isc__mutex_init(mp)
  |  |  ------------------
  |  |  |  |   79|     10|	{                                                                 \
  |  |  |  |   80|     10|		int _ret = pthread_mutex_init(mp, &isc__mutex_init_attr); \
  |  |  |  |   81|     10|		PTHREADS_RUNTIME_CHECK(pthread_mutex_init, _ret);         \
  |  |  |  |  ------------------
  |  |  |  |  |  |  288|     10|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 10]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  ------------------
  |  |  |  |   82|     10|	}
  |  |  ------------------
  ------------------
  620|     10|	isc_refcount_init(&ctx->references, 1);
  ------------------
  |  |   44|     10|#define isc_refcount_init(target, value) atomic_init(target, value)
  ------------------
  621|       |
  622|  5.14k|	for (size_t i = 0; i < ARRAY_SIZE(ctx->stat_s); i++) {
  ------------------
  |  |   98|  5.14k|#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
  ------------------
  |  Branch (622:21): [True: 5.13k, False: 10]
  ------------------
  623|  5.13k|		atomic_init(&ctx->stat_s[i].inuse, 0);
  624|  5.13k|	}
  625|       |
  626|       |	/* Reserve the [-1] index for ISC_TID_UNKNOWN */
  627|     10|	ctx->stat = &ctx->stat_s[1];
  628|       |
  629|     10|	atomic_init(&ctx->hi_water, 0);
  630|     10|	atomic_init(&ctx->lo_water, 0);
  631|       |
  632|     10|	ISC_LIST_INIT(ctx->pools);
  ------------------
  |  |   43|     10|	do {                        \
  |  |   44|     10|		(list).head = NULL; \
  |  |   45|     10|		(list).tail = NULL; \
  |  |   46|     10|	} while (0)
  |  |  ------------------
  |  |  |  Branch (46:11): [Folded, False: 10]
  |  |  ------------------
  ------------------
  633|       |
  634|       |#if ISC_MEM_TRACKLINES
  635|       |	if ((ctx->debugging & ISC_MEM_DEBUGRECORD) != 0) {
  636|       |		unsigned int i;
  637|       |		size_t debuglist_size = ISC_CHECKED_MUL(DEBUG_TABLE_COUNT,
  638|       |							sizeof(debuglist_t));
  639|       |
  640|       |		ctx->debuglist = mallocx(debuglist_size, jemalloc_flags);
  641|       |		CHECK_OOM(ctx->debuglist, debuglist_size);
  642|       |
  643|       |		for (i = 0; i < DEBUG_TABLE_COUNT; i++) {
  644|       |			ISC_LIST_INIT(ctx->debuglist[i]);
  645|       |		}
  646|       |	}
  647|       |#endif /* if ISC_MEM_TRACKLINES */
  648|       |
  649|     10|	LOCK(&contextslock);
  ------------------
  |  |   26|     10|	{                                                                  \
  |  |   27|     10|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKING %p %s %d\n", (lp), \
  |  |   28|     10|				       __FILE__, __LINE__));               \
  |  |   29|     10|		isc_mutex_lock((lp));                                      \
  |  |  ------------------
  |  |  |  |   69|     10|#define isc_mutex_lock(mp)    isc__mutex_lock(mp)
  |  |  |  |  ------------------
  |  |  |  |  |  |   85|     10|	{                                                         \
  |  |  |  |  |  |   86|     10|		int _ret = pthread_mutex_lock(mp);                \
  |  |  |  |  |  |   87|     10|		PTHREADS_RUNTIME_CHECK(pthread_mutex_lock, _ret); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  288|     10|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 10]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   88|     10|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   30|     10|		ISC_UTIL_TRACE(fprintf(stderr, "LOCKED %p %s %d\n", (lp),  \
  |  |   31|     10|				       __FILE__, __LINE__));               \
  |  |   32|     10|	}
  ------------------
  650|     10|	ISC_LIST_INITANDAPPEND(contexts, ctx, link);
  ------------------
  |  |  106|     10|	__ISC_LIST_APPENDUNSAFE(list, elt, link)
  |  |  ------------------
  |  |  |  |   88|     10|	do {                                            \
  |  |  |  |   89|     10|		if ((list).tail != NULL) {              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (89:7): [True: 8, False: 2]
  |  |  |  |  ------------------
  |  |  |  |   90|      8|			(list).tail->link.next = (elt); \
  |  |  |  |   91|      8|		} else {                                \
  |  |  |  |   92|      2|			(list).head = (elt);            \
  |  |  |  |   93|      2|		}                                       \
  |  |  |  |   94|     10|		(elt)->link.prev = (list).tail;         \
  |  |  |  |   95|     10|		(elt)->link.next = NULL;                \
  |  |  |  |   96|     10|		(list).tail = (elt);                    \
  |  |  |  |   97|     10|	} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (97:11): [Folded, False: 10]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  651|     10|	UNLOCK(&contextslock);
  ------------------
  |  |   34|     10|	{                                                                   \
  |  |   35|     10|		isc_mutex_unlock((lp));                                     \
  |  |  ------------------
  |  |  |  |   70|     10|#define isc_mutex_unlock(mp)  isc__mutex_unlock(mp)
  |  |  |  |  ------------------
  |  |  |  |  |  |   91|     10|	{                                                           \
  |  |  |  |  |  |   92|     10|		int _ret = pthread_mutex_unlock(mp);                \
  |  |  |  |  |  |   93|     10|		PTHREADS_RUNTIME_CHECK(pthread_mutex_unlock, _ret); \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  288|     10|	if ((ret) != 0) {                           \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (288:6): [True: 0, False: 10]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|	}
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   94|     10|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   36|     10|		ISC_UTIL_TRACE(fprintf(stderr, "UNLOCKED %p %s %d\n", (lp), \
  |  |   37|     10|				       __FILE__, __LINE__));                \
  |  |   38|     10|	}
  ------------------
  652|       |
  653|     10|	*ctxp = ctx;
  654|     10|}

isc__mutex_initialize:
   33|      2|isc__mutex_initialize(void) {
   34|      2|	RUNTIME_CHECK(pthread_mutexattr_init(&isc__mutex_init_attr) == 0);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
   35|       |#if ISC_MUTEX_ERROR_CHECK
   36|       |	RUNTIME_CHECK(pthread_mutexattr_settype(&isc__mutex_init_attr,
   37|       |						PTHREAD_MUTEX_ERRORCHECK) == 0);
   38|       |#elif HAVE_PTHREAD_MUTEX_ADAPTIVE_NP
   39|      2|	RUNTIME_CHECK(pthread_mutexattr_settype(&isc__mutex_init_attr,
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
   40|      2|						PTHREAD_MUTEX_ADAPTIVE_NP) ==
   41|      2|		      0);
   42|      2|#endif
   43|      2|}

isc_os_ncpus:
  199|      2|isc_os_ncpus(void) {
  200|      2|	return isc__os_ncpus;
  201|      2|}
isc__os_initialize:
  222|      2|isc__os_initialize(void) {
  223|      2|	umask_initialize();
  224|      2|	ncpus_initialize();
  225|      2|	kernel_initialize();
  226|      2|#if defined(_SC_LEVEL1_DCACHE_LINESIZE)
  227|      2|	long s = sysconf(_SC_LEVEL1_DCACHE_LINESIZE);
  228|      2|	if (s > 0 && (unsigned long)s > isc__os_cacheline) {
  ------------------
  |  Branch (228:6): [True: 2, False: 0]
  |  Branch (228:15): [True: 0, False: 2]
  ------------------
  229|      0|		isc__os_cacheline = s;
  230|      0|	}
  231|      2|#endif
  232|       |
  233|      2|	pthread_attr_init(&isc__thread_attr);
  234|       |
  235|      2|	size_t stacksize = isc_thread_getstacksize();
  236|      2|	if (stacksize != 0 && stacksize < THREAD_MINSTACKSIZE) {
  ------------------
  |  |   29|      2|#define THREAD_MINSTACKSIZE (1U * 1024 * 1024)
  ------------------
  |  Branch (236:6): [True: 2, False: 0]
  |  Branch (236:24): [True: 0, False: 2]
  ------------------
  237|      0|		isc_thread_setstacksize(THREAD_MINSTACKSIZE);
  ------------------
  |  |   29|      0|#define THREAD_MINSTACKSIZE (1U * 1024 * 1024)
  ------------------
  238|      0|	}
  239|      2|}
os.c:umask_initialize:
  180|      2|umask_initialize(void) {
  181|      2|	isc__os_umask = umask(0);
  182|      2|	(void)umask(isc__os_umask);
  183|      2|}
os.c:ncpus_initialize:
   42|      2|ncpus_initialize(void) {
   43|      2|	isc__os_ncpus = uv_available_parallelism();
   44|      2|}
os.c:kernel_initialize:
  186|      2|kernel_initialize(void) {
  187|      2|	struct utsname buffer;
  188|       |
  189|      2|	if (uname(&buffer) == -1) {
  ------------------
  |  Branch (189:6): [True: 0, False: 2]
  ------------------
  190|      0|		return;
  191|      0|	}
  192|       |
  193|      2|	(void)sscanf(buffer.release, "%d.%d.%d", &kernel_major, &kernel_minor,
  194|      2|		     &kernel_patch);
  195|      2|	(void)strlcpy(kernel_name, buffer.sysname, sizeof(kernel_name));
  196|      2|}

isc_ossl_wrap_load_rsa_public_from_components:
  727|     12|					      EVP_PKEY **pkeyp) {
  728|     12|	OSSL_PARAM_BLD *bld = NULL;
  729|     12|	EVP_PKEY_CTX *pctx = NULL;
  730|     12|	OSSL_PARAM *params = NULL;
  731|     12|	isc_result_t result;
  732|       |
  733|     12|	REQUIRE(pkeyp != NULL && *pkeyp == NULL);
  ------------------
  |  |  198|     12|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     24|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 12, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     12|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  734|     12|	REQUIRE(c != NULL && c->n != NULL && c->e != NULL);
  ------------------
  |  |  198|     12|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     48|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:11): [True: 12, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 12, False: 0]
  |  |  |  |  |  Branch (42:11): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     12|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  735|       |
  736|     12|	bld = OSSL_PARAM_BLD_new();
  737|     12|	if (bld == NULL) {
  ------------------
  |  Branch (737:6): [True: 0, False: 12]
  ------------------
  738|      0|		CLEANUP(OSSL_WRAP_ERROR("OSSL_PARAM_BLD_new"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  739|      0|	}
  740|       |
  741|     12|	if (OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_RSA_N, c->n) != 1) {
  ------------------
  |  Branch (741:6): [True: 0, False: 12]
  ------------------
  742|      0|		CLEANUP(OSSL_WRAP_ERROR("OSSL_PARAM_BLD_push_BN"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  743|      0|	}
  744|       |
  745|     12|	if (OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_RSA_E, c->e) != 1) {
  ------------------
  |  Branch (745:6): [True: 0, False: 12]
  ------------------
  746|      0|		CLEANUP(OSSL_WRAP_ERROR("OSSL_PARAM_BLD_push_BN"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  747|      0|	}
  748|       |
  749|     12|	params = OSSL_PARAM_BLD_to_param(bld);
  750|     12|	if (params == NULL) {
  ------------------
  |  Branch (750:6): [True: 0, False: 12]
  ------------------
  751|      0|		CLEANUP(OSSL_WRAP_ERROR("OSSL_PARAM_BLD_to_param"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  752|      0|	}
  753|       |
  754|     12|	pctx = EVP_PKEY_CTX_new_from_name(NULL, "RSA", NULL);
  755|     12|	if (pctx == NULL) {
  ------------------
  |  Branch (755:6): [True: 0, False: 12]
  ------------------
  756|      0|		CLEANUP(OSSL_WRAP_ERROR("EVP_PKEY_CTX_new_from_name"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  757|      0|	}
  758|       |
  759|     12|	if (EVP_PKEY_fromdata_init(pctx) != 1) {
  ------------------
  |  Branch (759:6): [True: 0, False: 12]
  ------------------
  760|      0|		CLEANUP(OSSL_WRAP_ERROR("EVP_PKEY_fromdata_init"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  761|      0|	}
  762|       |
  763|     12|	if (EVP_PKEY_fromdata(pctx, pkeyp, EVP_PKEY_PUBLIC_KEY, params) != 1) {
  ------------------
  |  Branch (763:6): [True: 0, False: 12]
  ------------------
  764|      0|		CLEANUP(OSSL_WRAP_ERROR("EVP_PKEY_fromdata"));
  ------------------
  |  |  266|      0|	{                     \
  |  |  267|      0|		result = (r); \
  |  |  268|      0|		goto cleanup; \
  |  |  269|      0|	}
  ------------------
  765|      0|	}
  766|       |
  767|     12|	result = ISC_R_SUCCESS;
  768|       |
  769|     12|cleanup:
  770|     12|	EVP_PKEY_CTX_free(pctx);
  771|     12|	OSSL_PARAM_free(params);
  772|     12|	OSSL_PARAM_BLD_free(bld);
  773|     12|	return result;
  774|     12|}

isc_ossl_wrap_rsa_components_cleanup:
   23|     12|isc_ossl_wrap_rsa_components_cleanup(isc_ossl_wrap_rsa_components_t *c) {
   24|     12|	REQUIRE(c != NULL);
  ------------------
  |  |  198|     12|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|     12|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 12, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|     12|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   25|       |
   26|     12|	if (!c->needs_cleanup) {
  ------------------
  |  Branch (26:6): [True: 0, False: 12]
  ------------------
   27|      0|		return;
   28|      0|	}
   29|       |
   30|       |	/*
   31|       |	 * NOTE: BN_free() frees the components of the BIGNUM, and if it was
   32|       |	 * created by BN_new(), also the structure itself. BN_clear_free()
   33|       |	 * additionally overwrites the data before the memory is returned to the
   34|       |	 * system. If a is NULL, nothing is done.
   35|       |	 */
   36|     12|	BN_free(c->e);
   37|     12|	BN_free(c->n);
   38|     12|	BN_clear_free(c->d);
   39|     12|	BN_clear_free(c->p);
   40|     12|	BN_clear_free(c->q);
   41|     12|	BN_clear_free(c->dmp1);
   42|     12|	BN_clear_free(c->dmq1);
   43|     12|	BN_clear_free(c->iqmp);
   44|       |
   45|       |	c->needs_cleanup = false;
   46|     12|}

isc_regex_validate:
   34|  4.48k|isc_regex_validate(const char *c) {
   35|  4.48k|	enum {
   36|  4.48k|		none,
   37|  4.48k|		parse_bracket,
   38|  4.48k|		parse_bound,
   39|  4.48k|		parse_ce,
   40|  4.48k|		parse_ec,
   41|  4.48k|		parse_cc
   42|  4.48k|	} state = none;
   43|       |	/* Well known character classes. */
   44|  4.48k|	const char *cc[] = { ":alnum:", ":digit:", ":punct:", ":alpha:",
   45|  4.48k|			     ":graph:", ":space:", ":blank:", ":lower:",
   46|  4.48k|			     ":upper:", ":cntrl:", ":print:", ":xdigit:" };
   47|  4.48k|	bool seen_comma = false;
   48|  4.48k|	bool seen_high = false;
   49|  4.48k|	bool seen_char = false;
   50|  4.48k|	bool seen_ec = false;
   51|  4.48k|	bool seen_ce = false;
   52|  4.48k|	bool have_atom = false;
   53|  4.48k|	int group = 0;
   54|  4.48k|	int range = 0;
   55|  4.48k|	int sub = 0;
   56|  4.48k|	bool empty_ok = false;
   57|  4.48k|	bool neg = false;
   58|  4.48k|	bool was_multiple = false;
   59|  4.48k|	unsigned int low = 0;
   60|  4.48k|	unsigned int high = 0;
   61|  4.48k|	const char *ccname = NULL;
   62|  4.48k|	int range_start = 0;
   63|       |#if VALREGEX_REPORT_REASON
   64|       |	const char *reason = "";
   65|       |#endif /* if VALREGEX_REPORT_REASON */
   66|       |
   67|  4.48k|	if (c == NULL || *c == 0) {
  ------------------
  |  Branch (67:6): [True: 0, False: 4.48k]
  |  Branch (67:19): [True: 6, False: 4.47k]
  ------------------
   68|      6|		FAIL("empty string");
  ------------------
  |  |   27|      6|#define FAIL(x) goto error
  ------------------
   69|      6|	}
   70|       |
   71|   358k|	while (c != NULL && *c != 0) {
  ------------------
  |  Branch (71:9): [True: 358k, False: 0]
  |  Branch (71:22): [True: 353k, False: 4.39k]
  ------------------
   72|   353k|		switch (state) {
  ------------------
  |  Branch (72:11): [True: 353k, False: 0]
  ------------------
   73|   202k|		case none:
  ------------------
  |  Branch (73:3): [True: 202k, False: 151k]
  ------------------
   74|   202k|			switch (*c) {
   75|  8.07k|			case '\\': /* make literal */
  ------------------
  |  Branch (75:4): [True: 8.07k, False: 194k]
  ------------------
   76|  8.07k|				++c;
   77|  8.07k|				switch (*c) {
   78|    476|				case '1':
  ------------------
  |  Branch (78:5): [True: 476, False: 7.59k]
  ------------------
   79|    868|				case '2':
  ------------------
  |  Branch (79:5): [True: 392, False: 7.68k]
  ------------------
   80|  1.28k|				case '3':
  ------------------
  |  Branch (80:5): [True: 415, False: 7.65k]
  ------------------
   81|  2.16k|				case '4':
  ------------------
  |  Branch (81:5): [True: 885, False: 7.18k]
  ------------------
   82|  2.73k|				case '5':
  ------------------
  |  Branch (82:5): [True: 564, False: 7.50k]
  ------------------
   83|  3.06k|				case '6':
  ------------------
  |  Branch (83:5): [True: 329, False: 7.74k]
  ------------------
   84|  3.21k|				case '7':
  ------------------
  |  Branch (84:5): [True: 153, False: 7.92k]
  ------------------
   85|  3.79k|				case '8':
  ------------------
  |  Branch (85:5): [True: 576, False: 7.49k]
  ------------------
   86|  4.83k|				case '9':
  ------------------
  |  Branch (86:5): [True: 1.04k, False: 7.02k]
  ------------------
   87|  4.83k|					if ((*c - '0') > sub) {
  ------------------
  |  Branch (87:10): [True: 10, False: 4.82k]
  ------------------
   88|     10|						FAIL("bad back reference");
  ------------------
  |  |   27|     10|#define FAIL(x) goto error
  ------------------
   89|     10|					}
   90|  4.82k|					have_atom = true;
   91|  4.82k|					was_multiple = false;
   92|  4.82k|					break;
   93|      0|				case 0:
  ------------------
  |  Branch (93:5): [True: 0, False: 8.07k]
  ------------------
   94|      0|					FAIL("escaped end-of-string");
  ------------------
  |  |   27|      0|#define FAIL(x) goto error
  ------------------
   95|  3.23k|				default:
  ------------------
  |  Branch (95:5): [True: 3.23k, False: 4.83k]
  ------------------
   96|  3.23k|					goto literal;
   97|  8.07k|				}
   98|  4.82k|				++c;
   99|  4.82k|				break;
  100|  10.0k|			case '[': /* bracket start */
  ------------------
  |  Branch (100:4): [True: 10.0k, False: 192k]
  ------------------
  101|  10.0k|				++c;
  102|  10.0k|				neg = false;
  103|  10.0k|				was_multiple = false;
  104|  10.0k|				seen_char = false;
  105|  10.0k|				state = parse_bracket;
  106|  10.0k|				break;
  107|  12.1k|			case '{': /* bound start */
  ------------------
  |  Branch (107:4): [True: 12.1k, False: 190k]
  ------------------
  108|  12.1k|				switch (c[1]) {
  109|    809|				case '0':
  ------------------
  |  Branch (109:5): [True: 809, False: 11.3k]
  ------------------
  110|  2.35k|				case '1':
  ------------------
  |  Branch (110:5): [True: 1.54k, False: 10.6k]
  ------------------
  111|  2.48k|				case '2':
  ------------------
  |  Branch (111:5): [True: 137, False: 12.0k]
  ------------------
  112|  3.08k|				case '3':
  ------------------
  |  Branch (112:5): [True: 595, False: 11.5k]
  ------------------
  113|  3.23k|				case '4':
  ------------------
  |  Branch (113:5): [True: 146, False: 12.0k]
  ------------------
  114|  3.58k|				case '5':
  ------------------
  |  Branch (114:5): [True: 353, False: 11.8k]
  ------------------
  115|  3.83k|				case '6':
  ------------------
  |  Branch (115:5): [True: 255, False: 11.8k]
  ------------------
  116|  4.75k|				case '7':
  ------------------
  |  Branch (116:5): [True: 912, False: 11.2k]
  ------------------
  117|  4.85k|				case '8':
  ------------------
  |  Branch (117:5): [True: 100, False: 12.0k]
  ------------------
  118|  4.96k|				case '9':
  ------------------
  |  Branch (118:5): [True: 119, False: 12.0k]
  ------------------
  119|  4.96k|					if (!have_atom) {
  ------------------
  |  Branch (119:10): [True: 1, False: 4.96k]
  ------------------
  120|      1|						FAIL("no atom");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  121|      1|					}
  122|  4.96k|					if (was_multiple) {
  ------------------
  |  Branch (122:10): [True: 1, False: 4.96k]
  ------------------
  123|      1|						FAIL("was multiple");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  124|      1|					}
  125|  4.96k|					seen_comma = false;
  126|  4.96k|					seen_high = false;
  127|  4.96k|					low = high = 0;
  128|  4.96k|					state = parse_bound;
  129|  4.96k|					break;
  130|  7.18k|				default:
  ------------------
  |  Branch (130:5): [True: 7.18k, False: 4.96k]
  ------------------
  131|  7.18k|					goto literal;
  132|  12.1k|				}
  133|  4.96k|				++c;
  134|  4.96k|				have_atom = true;
  135|  4.96k|				was_multiple = true;
  136|  4.96k|				break;
  137|  4.48k|			case '}':
  ------------------
  |  Branch (137:4): [True: 4.48k, False: 197k]
  ------------------
  138|  4.48k|				goto literal;
  139|  18.5k|			case '(': /* group start */
  ------------------
  |  Branch (139:4): [True: 18.5k, False: 183k]
  ------------------
  140|  18.5k|				have_atom = false;
  141|  18.5k|				was_multiple = false;
  142|  18.5k|				empty_ok = true;
  143|  18.5k|				++group;
  144|  18.5k|				++sub;
  145|  18.5k|				++c;
  146|  18.5k|				break;
  147|  27.2k|			case ')': /* group end */
  ------------------
  |  Branch (147:4): [True: 27.2k, False: 175k]
  ------------------
  148|  27.2k|				if (group && !have_atom && !empty_ok) {
  ------------------
  |  Branch (148:9): [True: 18.1k, False: 9.10k]
  |  Branch (148:18): [True: 8.10k, False: 10.0k]
  |  Branch (148:32): [True: 1, False: 8.09k]
  ------------------
  149|      1|					FAIL("empty alternative");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  150|      1|				}
  151|  27.2k|				have_atom = true;
  152|  27.2k|				was_multiple = false;
  153|  27.2k|				if (group != 0) {
  ------------------
  |  Branch (153:9): [True: 18.1k, False: 9.10k]
  ------------------
  154|  18.1k|					--group;
  155|  18.1k|				}
  156|  27.2k|				++c;
  157|  27.2k|				break;
  158|  1.30k|			case '|': /* alternative separator */
  ------------------
  |  Branch (158:4): [True: 1.30k, False: 201k]
  ------------------
  159|  1.30k|				if (!have_atom) {
  ------------------
  |  Branch (159:9): [True: 1, False: 1.30k]
  ------------------
  160|      1|					FAIL("no atom");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  161|      1|				}
  162|  1.30k|				have_atom = false;
  163|  1.30k|				empty_ok = false;
  164|  1.30k|				was_multiple = false;
  165|  1.30k|				++c;
  166|  1.30k|				break;
  167|  1.50k|			case '^':
  ------------------
  |  Branch (167:4): [True: 1.50k, False: 200k]
  ------------------
  168|  3.03k|			case '$':
  ------------------
  |  Branch (168:4): [True: 1.52k, False: 200k]
  ------------------
  169|  3.03k|				have_atom = true;
  170|  3.03k|				was_multiple = true;
  171|  3.03k|				++c;
  172|  3.03k|				break;
  173|  2.24k|			case '+':
  ------------------
  |  Branch (173:4): [True: 2.24k, False: 200k]
  ------------------
  174|  4.53k|			case '*':
  ------------------
  |  Branch (174:4): [True: 2.29k, False: 200k]
  ------------------
  175|  7.90k|			case '?':
  ------------------
  |  Branch (175:4): [True: 3.36k, False: 199k]
  ------------------
  176|  7.90k|				if (was_multiple) {
  ------------------
  |  Branch (176:9): [True: 5, False: 7.90k]
  ------------------
  177|      5|					FAIL("was multiple");
  ------------------
  |  |   27|      5|#define FAIL(x) goto error
  ------------------
  178|      5|				}
  179|  7.90k|				if (!have_atom) {
  ------------------
  |  Branch (179:9): [True: 4, False: 7.89k]
  ------------------
  180|      4|					FAIL("no atom");
  ------------------
  |  |   27|      4|#define FAIL(x) goto error
  ------------------
  181|      4|				}
  182|  7.89k|				have_atom = true;
  183|  7.89k|				was_multiple = true;
  184|  7.89k|				++c;
  185|  7.89k|				break;
  186|  3.58k|			case '.':
  ------------------
  |  Branch (186:4): [True: 3.58k, False: 198k]
  ------------------
  187|   109k|			default:
  ------------------
  |  Branch (187:4): [True: 106k, False: 96.3k]
  ------------------
  188|   124k|			literal:
  189|   124k|				have_atom = true;
  190|   124k|				was_multiple = false;
  191|   124k|				++c;
  192|   124k|				break;
  193|   202k|			}
  194|   202k|			break;
  195|   202k|		case parse_bound:
  ------------------
  |  Branch (195:3): [True: 17.4k, False: 336k]
  ------------------
  196|  17.4k|			switch (*c) {
  197|  1.36k|			case '0':
  ------------------
  |  Branch (197:4): [True: 1.36k, False: 16.0k]
  ------------------
  198|  3.30k|			case '1':
  ------------------
  |  Branch (198:4): [True: 1.93k, False: 15.4k]
  ------------------
  199|  3.63k|			case '2':
  ------------------
  |  Branch (199:4): [True: 331, False: 17.0k]
  ------------------
  200|  4.58k|			case '3':
  ------------------
  |  Branch (200:4): [True: 949, False: 16.4k]
  ------------------
  201|  5.07k|			case '4':
  ------------------
  |  Branch (201:4): [True: 485, False: 16.9k]
  ------------------
  202|  6.00k|			case '5':
  ------------------
  |  Branch (202:4): [True: 931, False: 16.4k]
  ------------------
  203|  7.10k|			case '6':
  ------------------
  |  Branch (203:4): [True: 1.10k, False: 16.3k]
  ------------------
  204|  9.71k|			case '7':
  ------------------
  |  Branch (204:4): [True: 2.60k, False: 14.8k]
  ------------------
  205|  10.7k|			case '8':
  ------------------
  |  Branch (205:4): [True: 1.04k, False: 16.3k]
  ------------------
  206|  11.4k|			case '9':
  ------------------
  |  Branch (206:4): [True: 679, False: 16.7k]
  ------------------
  207|  11.4k|				if (!seen_comma) {
  ------------------
  |  Branch (207:9): [True: 9.92k, False: 1.51k]
  ------------------
  208|  9.92k|					low = low * 10 + *c - '0';
  209|  9.92k|					if (low > 255) {
  ------------------
  |  Branch (209:10): [True: 9, False: 9.91k]
  ------------------
  210|      9|						FAIL("lower bound too big");
  ------------------
  |  |   27|      9|#define FAIL(x) goto error
  ------------------
  211|      9|					}
  212|  9.92k|				} else {
  213|  1.51k|					seen_high = true;
  214|  1.51k|					high = high * 10 + *c - '0';
  215|  1.51k|					if (high > 255) {
  ------------------
  |  Branch (215:10): [True: 1, False: 1.50k]
  ------------------
  216|      1|						FAIL("upper bound too big");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  217|      1|					}
  218|  1.51k|				}
  219|  11.4k|				++c;
  220|  11.4k|				break;
  221|  1.06k|			case ',':
  ------------------
  |  Branch (221:4): [True: 1.06k, False: 16.3k]
  ------------------
  222|  1.06k|				if (seen_comma) {
  ------------------
  |  Branch (222:9): [True: 2, False: 1.06k]
  ------------------
  223|      2|					FAIL("multiple commas");
  ------------------
  |  |   27|      2|#define FAIL(x) goto error
  ------------------
  224|      2|				}
  225|  1.06k|				seen_comma = true;
  226|  1.06k|				++c;
  227|  1.06k|				break;
  228|      1|			default:
  ------------------
  |  Branch (228:4): [True: 1, False: 17.4k]
  ------------------
  229|      1|			case '{':
  ------------------
  |  Branch (229:4): [True: 0, False: 17.4k]
  ------------------
  230|      1|				FAIL("non digit/comma");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  231|  4.91k|			case '}':
  ------------------
  |  Branch (231:4): [True: 4.91k, False: 12.5k]
  ------------------
  232|  4.91k|				if (seen_high && low > high) {
  ------------------
  |  Branch (232:9): [True: 1.00k, False: 3.90k]
  |  Branch (232:22): [True: 9, False: 996]
  ------------------
  233|      9|					FAIL("bad parse bound");
  ------------------
  |  |   27|      9|#define FAIL(x) goto error
  ------------------
  234|      9|				}
  235|  4.90k|				seen_comma = false;
  236|  4.90k|				state = none;
  237|  4.90k|				++c;
  238|  4.90k|				break;
  239|  17.4k|			}
  240|  17.3k|			break;
  241|  99.0k|		case parse_bracket:
  ------------------
  |  Branch (241:3): [True: 99.0k, False: 254k]
  ------------------
  242|  99.0k|			switch (*c) {
  243|  2.88k|			case '^':
  ------------------
  |  Branch (243:4): [True: 2.88k, False: 96.2k]
  ------------------
  244|  2.88k|				if (seen_char || neg) {
  ------------------
  |  Branch (244:9): [True: 1.23k, False: 1.65k]
  |  Branch (244:22): [True: 464, False: 1.19k]
  ------------------
  245|  1.69k|					goto inside;
  246|  1.69k|				}
  247|  1.19k|				neg = true;
  248|  1.19k|				++c;
  249|  1.19k|				break;
  250|  8.47k|			case '-':
  ------------------
  |  Branch (250:4): [True: 8.47k, False: 90.6k]
  ------------------
  251|  8.47k|				if (range == 2) {
  ------------------
  |  Branch (251:9): [True: 687, False: 7.78k]
  ------------------
  252|    687|					goto inside;
  253|    687|				}
  254|  7.78k|				if (!seen_char) {
  ------------------
  |  Branch (254:9): [True: 990, False: 6.79k]
  ------------------
  255|    990|					goto inside;
  256|    990|				}
  257|  6.79k|				if (range == 1) {
  ------------------
  |  Branch (257:9): [True: 1, False: 6.79k]
  ------------------
  258|      1|					FAIL("bad range");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  259|      1|				}
  260|  6.79k|				range = 2;
  261|  6.79k|				++c;
  262|  6.79k|				break;
  263|  13.5k|			case '[':
  ------------------
  |  Branch (263:4): [True: 13.5k, False: 85.5k]
  ------------------
  264|  13.5k|				++c;
  265|  13.5k|				switch (*c) {
  ------------------
  |  Branch (265:13): [True: 3.97k, False: 9.58k]
  ------------------
  266|  2.94k|				case '.': /* collating element */
  ------------------
  |  Branch (266:5): [True: 2.94k, False: 10.6k]
  ------------------
  267|  2.94k|					if (range != 0) {
  ------------------
  |  Branch (267:10): [True: 1.56k, False: 1.37k]
  ------------------
  268|  1.56k|						--range;
  269|  1.56k|					}
  270|  2.94k|					++c;
  271|  2.94k|					state = parse_ce;
  272|  2.94k|					seen_ce = false;
  273|  2.94k|					break;
  274|     91|				case '=': /* equivalence class */
  ------------------
  |  Branch (274:5): [True: 91, False: 13.4k]
  ------------------
  275|     91|					if (range == 2) {
  ------------------
  |  Branch (275:10): [True: 1, False: 90]
  ------------------
  276|      1|						FAIL("equivalence class in "
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  277|      1|						     "range");
  278|      1|					}
  279|     90|					++c;
  280|     90|					state = parse_ec;
  281|     90|					seen_ec = false;
  282|     90|					break;
  283|    945|				case ':': /* character class */
  ------------------
  |  Branch (283:5): [True: 945, False: 12.6k]
  ------------------
  284|    945|					if (range == 2) {
  ------------------
  |  Branch (284:10): [True: 1, False: 944]
  ------------------
  285|      1|						FAIL("character class in "
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  286|      1|						     "range");
  287|      1|					}
  288|    944|					ccname = c;
  289|    944|					++c;
  290|    944|					state = parse_cc;
  291|    944|					break;
  292|  13.5k|				}
  293|  13.5k|				seen_char = true;
  294|  13.5k|				break;
  295|  11.0k|			case ']':
  ------------------
  |  Branch (295:4): [True: 11.0k, False: 88.0k]
  ------------------
  296|  11.0k|				if (!c[1] && !seen_char) {
  ------------------
  |  Branch (296:9): [True: 631, False: 10.3k]
  |  Branch (296:18): [True: 2, False: 629]
  ------------------
  297|      2|					FAIL("unfinished brace");
  ------------------
  |  |   27|      2|#define FAIL(x) goto error
  ------------------
  298|      2|				}
  299|  11.0k|				if (!seen_char) {
  ------------------
  |  Branch (299:9): [True: 1.12k, False: 9.89k]
  ------------------
  300|  1.12k|					goto inside;
  301|  1.12k|				}
  302|  9.89k|				++c;
  303|  9.89k|				range = 0;
  304|  9.89k|				have_atom = true;
  305|  9.89k|				state = none;
  306|  9.89k|				break;
  307|  63.1k|			default:
  ------------------
  |  Branch (307:4): [True: 63.1k, False: 35.9k]
  ------------------
  308|  67.6k|			inside:
  309|  67.6k|				seen_char = true;
  310|  67.6k|				if (range == 2 && (*c & 0xff) < range_start) {
  ------------------
  |  Branch (310:9): [True: 5.92k, False: 61.7k]
  |  Branch (310:23): [True: 9, False: 5.91k]
  ------------------
  311|      9|					FAIL("out of order range");
  ------------------
  |  |   27|      9|#define FAIL(x) goto error
  ------------------
  312|      9|				}
  313|  67.6k|				if (range != 0) {
  ------------------
  |  Branch (313:9): [True: 10.6k, False: 56.9k]
  ------------------
  314|  10.6k|					--range;
  315|  10.6k|				}
  316|  67.6k|				range_start = *c & 0xff;
  317|  67.6k|				++c;
  318|  67.6k|				break;
  319|  99.0k|			}
  320|  99.0k|			break;
  321|  99.0k|		case parse_ce:
  ------------------
  |  Branch (321:3): [True: 26.5k, False: 327k]
  ------------------
  322|  26.5k|			switch (*c) {
  323|  8.53k|			case '.':
  ------------------
  |  Branch (323:4): [True: 8.53k, False: 18.0k]
  ------------------
  324|  8.53k|				++c;
  325|  8.53k|				switch (*c) {
  326|  2.91k|				case ']':
  ------------------
  |  Branch (326:5): [True: 2.91k, False: 5.61k]
  ------------------
  327|  2.91k|					if (!seen_ce) {
  ------------------
  |  Branch (327:10): [True: 1, False: 2.91k]
  ------------------
  328|      1|						FAIL("empty ce");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  329|      1|					}
  330|  2.91k|					++c;
  331|  2.91k|					state = parse_bracket;
  332|  2.91k|					break;
  333|  5.61k|				default:
  ------------------
  |  Branch (333:5): [True: 5.61k, False: 2.91k]
  ------------------
  334|  5.61k|					if (seen_ce) {
  ------------------
  |  Branch (334:10): [True: 4.17k, False: 1.44k]
  ------------------
  335|  4.17k|						range_start = 256;
  336|  4.17k|					} else {
  337|  1.44k|						range_start = '.';
  338|  1.44k|					}
  339|  5.61k|					seen_ce = true;
  340|  5.61k|					break;
  341|  8.53k|				}
  342|  8.53k|				break;
  343|  18.0k|			default:
  ------------------
  |  Branch (343:4): [True: 18.0k, False: 8.53k]
  ------------------
  344|  18.0k|				if (seen_ce) {
  ------------------
  |  Branch (344:9): [True: 16.5k, False: 1.49k]
  ------------------
  345|  16.5k|					range_start = 256;
  346|  16.5k|				} else {
  347|  1.49k|					range_start = *c;
  348|  1.49k|				}
  349|  18.0k|				seen_ce = true;
  350|  18.0k|				++c;
  351|  18.0k|				break;
  352|  26.5k|			}
  353|  26.5k|			break;
  354|  26.5k|		case parse_ec:
  ------------------
  |  Branch (354:3): [True: 2.08k, False: 351k]
  ------------------
  355|  2.08k|			switch (*c) {
  356|    325|			case '=':
  ------------------
  |  Branch (356:4): [True: 325, False: 1.75k]
  ------------------
  357|    325|				++c;
  358|    325|				switch (*c) {
  359|     74|				case ']':
  ------------------
  |  Branch (359:5): [True: 74, False: 251]
  ------------------
  360|     74|					if (!seen_ec) {
  ------------------
  |  Branch (360:10): [True: 1, False: 73]
  ------------------
  361|      1|						FAIL("no ec");
  ------------------
  |  |   27|      1|#define FAIL(x) goto error
  ------------------
  362|      1|					}
  363|     73|					++c;
  364|     73|					state = parse_bracket;
  365|     73|					break;
  366|    251|				default:
  ------------------
  |  Branch (366:5): [True: 251, False: 74]
  ------------------
  367|    251|					seen_ec = true;
  368|    251|					break;
  369|    325|				}
  370|    324|				break;
  371|  1.75k|			default:
  ------------------
  |  Branch (371:4): [True: 1.75k, False: 325]
  ------------------
  372|  1.75k|				seen_ec = true;
  373|  1.75k|				++c;
  374|  1.75k|				break;
  375|  2.08k|			}
  376|  2.08k|			break;
  377|  6.14k|		case parse_cc:
  ------------------
  |  Branch (377:3): [True: 6.14k, False: 347k]
  ------------------
  378|  6.14k|			switch (*c) {
  379|  1.14k|			case ':':
  ------------------
  |  Branch (379:4): [True: 1.14k, False: 5.00k]
  ------------------
  380|  1.14k|				++c;
  381|  1.14k|				switch (*c) {
  382|    922|				case ']': {
  ------------------
  |  Branch (382:5): [True: 922, False: 219]
  ------------------
  383|    922|					unsigned int i;
  384|    922|					bool found = false;
  385|    922|					for (i = 0;
  386|  11.9k|					     i < sizeof(cc) / sizeof(*cc); i++)
  ------------------
  |  Branch (386:11): [True: 11.0k, False: 922]
  ------------------
  387|  11.0k|					{
  388|  11.0k|						unsigned int len;
  389|  11.0k|						len = strlen(cc[i]);
  390|  11.0k|						if (len !=
  ------------------
  |  Branch (390:11): [True: 1.22k, False: 9.83k]
  ------------------
  391|  11.0k|						    (unsigned int)(c - ccname))
  392|  1.22k|						{
  393|  1.22k|							continue;
  394|  1.22k|						}
  395|  9.83k|						if (strncmp(cc[i], ccname, len))
  ------------------
  |  Branch (395:11): [True: 8.93k, False: 900]
  ------------------
  396|  8.93k|						{
  397|  8.93k|							continue;
  398|  8.93k|						}
  399|    900|						found = true;
  400|    900|					}
  401|    922|					if (!found) {
  ------------------
  |  Branch (401:10): [True: 22, False: 900]
  ------------------
  402|     22|						FAIL("unknown cc");
  ------------------
  |  |   27|     22|#define FAIL(x) goto error
  ------------------
  403|     22|					}
  404|    900|					++c;
  405|    900|					state = parse_bracket;
  406|    900|					break;
  407|    922|				}
  408|    219|				default:
  ------------------
  |  Branch (408:5): [True: 219, False: 922]
  ------------------
  409|    219|					break;
  410|  1.14k|				}
  411|  1.11k|				break;
  412|  5.00k|			default:
  ------------------
  |  Branch (412:4): [True: 5.00k, False: 1.14k]
  ------------------
  413|  5.00k|				++c;
  414|  5.00k|				break;
  415|  6.14k|			}
  416|  6.12k|			break;
  417|   353k|		}
  418|   353k|	}
  419|  4.39k|	if (group != 0) {
  ------------------
  |  Branch (419:6): [True: 35, False: 4.35k]
  ------------------
  420|     35|		FAIL("group open");
  ------------------
  |  |   27|     35|#define FAIL(x) goto error
  ------------------
  421|     35|	}
  422|  4.35k|	if (state != none) {
  ------------------
  |  Branch (422:6): [True: 144, False: 4.21k]
  ------------------
  423|    144|		FAIL("incomplete");
  ------------------
  |  |   27|    144|#define FAIL(x) goto error
  ------------------
  424|    144|	}
  425|  4.21k|	if (!have_atom) {
  ------------------
  |  Branch (425:6): [True: 2, False: 4.21k]
  ------------------
  426|      2|		FAIL("no atom");
  ------------------
  |  |   27|      2|#define FAIL(x) goto error
  ------------------
  427|      2|	}
  428|  4.21k|	return sub;
  429|       |
  430|    270|error:
  431|       |#if VALREGEX_REPORT_REASON
  432|       |	fprintf(stderr, "%s\n", reason);
  433|       |#endif /* if VALREGEX_REPORT_REASON */
  434|    270|	return -1;
  435|  4.21k|}

isc_region_compare:
   23|  6.13k|isc_region_compare(isc_region_t *r1, isc_region_t *r2) {
   24|  6.13k|	unsigned int l;
   25|  6.13k|	int result;
   26|       |
   27|  6.13k|	REQUIRE(r1 != NULL);
  ------------------
  |  |  198|  6.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   28|  6.13k|	REQUIRE(r2 != NULL);
  ------------------
  |  |  198|  6.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   29|  6.13k|	REQUIRE(r1->base != NULL);
  ------------------
  |  |  198|  6.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   30|  6.13k|	REQUIRE(r2->base != NULL);
  ------------------
  |  |  198|  6.13k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  6.13k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 6.13k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  6.13k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   31|       |
   32|  6.13k|	l = (r1->length < r2->length) ? r1->length : r2->length;
  ------------------
  |  Branch (32:6): [True: 505, False: 5.62k]
  ------------------
   33|       |
   34|  6.13k|	if ((result = memcmp(r1->base, r2->base, l)) != 0) {
  ------------------
  |  Branch (34:6): [True: 2.78k, False: 3.34k]
  ------------------
   35|  2.78k|		return (result < 0) ? -1 : 1;
  ------------------
  |  Branch (35:10): [True: 1.36k, False: 1.42k]
  ------------------
   36|  3.34k|	} else {
   37|  3.34k|		return (r1->length == r2->length)  ? 0
  ------------------
  |  Branch (37:10): [True: 2.82k, False: 519]
  ------------------
   38|  3.34k|		       : (r1->length < r2->length) ? -1
  ------------------
  |  Branch (38:12): [True: 468, False: 51]
  ------------------
   39|    519|						   : 1;
   40|  3.34k|	}
   41|  6.13k|}

isc_rwlock_init:
  315|  2.05k|isc_rwlock_init(isc_rwlock_t *rwl) {
  316|  2.05k|	REQUIRE(rwl != NULL);
  ------------------
  |  |  198|  2.05k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  2.05k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 2.05k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  2.05k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  317|       |
  318|  2.05k|	atomic_init(&rwl->writers_lock, ISC_RWLOCK_UNLOCKED);
  ------------------
  |  |   69|  2.05k|#define ISC_RWLOCK_UNLOCKED false
  ------------------
  319|  2.05k|	atomic_init(&rwl->writers_barrier, 0);
  320|  2.05k|	atomic_init(&rwl->readers_ingress, 0);
  321|       |	atomic_init(&rwl->readers_egress, 0);
  322|  2.05k|	LIBISC_RWLOCK_INIT(rwl);
  323|  2.05k|}

isc_serial_gt:
   33|  16.6k|isc_serial_gt(uint32_t a, uint32_t b) {
   34|  16.6k|	return ((int32_t)(a - b) > 0) ? true : false;
  ------------------
  |  Branch (34:9): [True: 2.78k, False: 13.8k]
  ------------------
   35|  16.6k|}

isc_stdtime_now:
   37|  17.2k|isc_stdtime_now(void) {
   38|  17.2k|	struct timespec ts;
   39|       |
   40|  17.2k|	if (clock_gettime(CLOCKSOURCE, &ts) == -1) {
  ------------------
  |  |   29|  17.2k|#define CLOCKSOURCE CLOCK_REALTIME_COARSE
  ------------------
  |  Branch (40:6): [True: 0, False: 17.2k]
  ------------------
   41|      0|		FATAL_SYSERROR(errno, "clock_gettime()");
  ------------------
  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  ------------------
  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  ------------------
  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  228|      0|	}
  |  |  ------------------
  ------------------
   42|      0|	}
   43|  17.2k|	INSIST(ts.tv_sec > 0 && ts.tv_nsec >= 0 &&
  ------------------
  |  |  202|  17.2k|#define INSIST(e)    ISC_INSIST(e)
  |  |  ------------------
  |  |  |  |   54|  69.1k|	((void)((cond) ||                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (54:11): [True: 17.2k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 17.2k, False: 0]
  |  |  |  |  |  Branch (54:11): [True: 17.2k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   55|  17.2k|		((isc_assertion_failed)(__FILE__, __LINE__,               \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (55:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   56|      0|					isc_assertiontype_insist, #cond), \
  |  |  |  |   57|      0|		 0)))
  |  |  ------------------
  ------------------
   44|  17.2k|	       ts.tv_nsec < (long)NS_PER_SEC);
   45|       |
   46|  17.2k|	return (isc_stdtime_t)ts.tv_sec;
   47|  17.2k|}

isc_thread_getstacksize:
  171|      2|isc_thread_getstacksize(void) {
  172|      2|	size_t stacksize = 0;
  173|       |
  174|      2|#if HAVE_PTHREAD_ATTR_GETSTACKSIZE
  175|      2|	int ret = pthread_attr_getstacksize(&isc__thread_attr, &stacksize);
  176|      2|	PTHREADS_RUNTIME_CHECK(pthread_attr_getstacksize, ret);
  ------------------
  |  |  288|      2|	if ((ret) != 0) {                           \
  |  |  ------------------
  |  |  |  Branch (288:6): [True: 0, False: 2]
  |  |  ------------------
  |  |  289|      0|		FATAL_SYSERROR(ret, "%s()", #func); \
  |  |  ------------------
  |  |  |  |  234|      0|	REPORT_SYSERROR(isc_error_fatal, err, __VA_ARGS__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  223|      0|	{                                                             \
  |  |  |  |  |  |  224|      0|		char strerr[ISC_STRERRORSIZE];                        \
  |  |  |  |  |  |  225|      0|		strerror_r(err, strerr, sizeof(strerr));              \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   33|      0|#define strerror_r isc_string_strerror_r
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  226|      0|		report(__FILE__, __LINE__, __func__, fmt ": %s (%d)", \
  |  |  |  |  |  |  227|      0|		       ##__VA_ARGS__, strerr, err);                   \
  |  |  |  |  |  |  228|      0|	}
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  290|      0|	}
  ------------------
  177|      2|#endif /* HAVE_PTHREAD_ATTR_GETSTACKSIZE */
  178|       |
  179|      2|	return stacksize;
  180|      2|}

isc_tid_count:
   57|      8|isc_tid_count(void) {
   58|      8|	return tid_count;
   59|      8|}

isc_utf8_valid:
   32|  19.8k|isc_utf8_valid(const unsigned char *buf, size_t len) {
   33|  19.8k|	REQUIRE(buf != NULL);
  ------------------
  |  |  198|  19.8k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  19.8k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 19.8k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  19.8k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
   34|       |
   35|   139k|	for (size_t i = 0; i < len; i++) {
  ------------------
  |  Branch (35:21): [True: 120k, False: 19.7k]
  ------------------
   36|       |		/*
   37|       |		 * ASCII character range (first row).
   38|       |		 */
   39|   120k|		if (buf[i] <= 0x7f) {
  ------------------
  |  Branch (39:7): [True: 116k, False: 3.22k]
  ------------------
   40|   116k|			continue;
   41|   116k|		}
   42|       |
   43|       |		/*
   44|       |		 * 0x80 -> 1000 0000
   45|       |		 * 0xC0 -> 1100 0000
   46|       |		 * 0xE0 -> 1110 0000
   47|       |		 *
   48|       |		 * Is unicode character is encoded using 2 bytes (second row).
   49|       |		 */
   50|  3.22k|		if ((i + 1) < len && (buf[i] & 0xe0) == 0xc0 &&
  ------------------
  |  Branch (50:7): [True: 3.21k, False: 6]
  |  Branch (50:24): [True: 1.62k, False: 1.59k]
  ------------------
   51|  1.62k|		    (buf[i + 1] & 0xc0) == 0x80)
  ------------------
  |  Branch (51:7): [True: 1.61k, False: 7]
  ------------------
   52|  1.61k|		{
   53|  1.61k|			unsigned int w;
   54|  1.61k|			w = (buf[i] & 0x1f) << 6;
   55|  1.61k|			w |= (buf[++i] & 0x3f);
   56|  1.61k|			if (w < 0x80) {
  ------------------
  |  Branch (56:8): [True: 2, False: 1.61k]
  ------------------
   57|      2|				return false;
   58|      2|			}
   59|  1.61k|			continue;
   60|  1.61k|		}
   61|       |
   62|       |		/*
   63|       |		 * 0x80 -> 1000 0000
   64|       |		 * 0xC0 -> 1100 0000
   65|       |		 * 0xE0 -> 1110 0000
   66|       |		 * 0xF0 -> 1111 0000
   67|       |		 *
   68|       |		 * Is unicode character is encoded within 3 bytes (third row).
   69|       |		 */
   70|  1.60k|		if ((i + 2) < len && (buf[i] & 0xf0) == 0xe0 &&
  ------------------
  |  Branch (70:7): [True: 1.59k, False: 14]
  |  Branch (70:24): [True: 677, False: 916]
  ------------------
   71|    677|		    (buf[i + 1] & 0xc0) == 0x80 && (buf[i + 2] & 0xc0) == 0x80)
  ------------------
  |  Branch (71:7): [True: 664, False: 13]
  |  Branch (71:38): [True: 653, False: 11]
  ------------------
   72|    653|		{
   73|    653|			unsigned int w;
   74|    653|			w = (buf[i] & 0x0f) << 12;
   75|    653|			w |= (buf[++i] & 0x3f) << 6;
   76|    653|			w |= (buf[++i] & 0x3f);
   77|    653|			if (w < 0x0800) {
  ------------------
  |  Branch (77:8): [True: 5, False: 648]
  ------------------
   78|      5|				return false;
   79|      5|			}
   80|       |
   81|       |			/*
   82|       |			 * Unicode range 0xD800..0xDFFF is reserved (UTF16
   83|       |			 * surrogates)
   84|       |			 */
   85|    648|			if (w >= 0xD800 && w <= 0xDFFF) {
  ------------------
  |  Branch (85:8): [True: 411, False: 237]
  |  Branch (85:23): [True: 2, False: 409]
  ------------------
   86|      2|				return false;
   87|      2|			}
   88|    646|			continue;
   89|    648|		}
   90|       |
   91|       |		/*
   92|       |		 * 0x80 -> 1000 0000
   93|       |		 * 0xC0 -> 1100 0000
   94|       |		 * 0xE0 -> 1110 0000
   95|       |		 * 0xF0 -> 1111 0000
   96|       |		 * 0xF8 -> 1111 1000
   97|       |		 *
   98|       |		 * Is unicode character is encoded within 4 bytes (fourth row).
   99|       |		 */
  100|    954|		if ((i + 3) < len && (buf[i] & 0xf8) == 0xf0 &&
  ------------------
  |  Branch (100:7): [True: 921, False: 33]
  |  Branch (100:24): [True: 902, False: 19]
  ------------------
  101|    902|		    (buf[i + 1] & 0xc0) == 0x80 &&
  ------------------
  |  Branch (101:7): [True: 901, False: 1]
  ------------------
  102|    901|		    (buf[i + 2] & 0xc0) == 0x80 && (buf[i + 3] & 0xc0) == 0x80)
  ------------------
  |  Branch (102:7): [True: 897, False: 4]
  |  Branch (102:38): [True: 894, False: 3]
  ------------------
  103|    894|		{
  104|    894|			unsigned int w;
  105|    894|			w = (buf[i] & 0x07) << 18;
  106|    894|			w |= (buf[++i] & 0x3f) << 12;
  107|    894|			w |= (buf[++i] & 0x3f) << 6;
  108|    894|			w |= (buf[++i] & 0x3f);
  109|    894|			if (w < 0x10000 || w > 0x10FFFF) {
  ------------------
  |  Branch (109:8): [True: 5, False: 889]
  |  Branch (109:23): [True: 2, False: 887]
  ------------------
  110|      7|				return false;
  111|      7|			}
  112|    887|			continue;
  113|    894|		}
  114|     60|		return false;
  115|    954|	}
  116|  19.7k|	return true;
  117|  19.8k|}
isc_utf8_bom:
  120|  13.3k|isc_utf8_bom(const unsigned char *buf, size_t len) {
  121|  13.3k|	REQUIRE(buf != NULL);
  ------------------
  |  |  198|  13.3k|#define REQUIRE(e)   ISC_REQUIRE(e)
  |  |  ------------------
  |  |  |  |   42|  13.3k|	((void)((cond) ||                                                  \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (42:10): [True: 13.3k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   43|  13.3k|		((isc_assertion_failed)(__FILE__, __LINE__,                \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (43:3): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   44|      0|					isc_assertiontype_require, #cond), \
  |  |  |  |   45|      0|		 0)))
  |  |  ------------------
  ------------------
  122|       |
  123|  13.3k|	if (len >= 3U && !memcmp(buf, "\xef\xbb\xbf", 3)) {
  ------------------
  |  Branch (123:6): [True: 1.29k, False: 12.0k]
  |  Branch (123:19): [True: 1, False: 1.29k]
  ------------------
  124|      1|		return true;
  125|      1|	}
  126|  13.3k|	return false;
  127|  13.3k|}

isc__uv_initialize:
  132|      2|isc__uv_initialize(void) {
  133|       |	/*
  134|       |	 * Ensure the first 3 file descriptors are open
  135|       |	 * otherwise, libuv may use one and trigger abort
  136|       |	 * when closing it.
  137|       |	 *
  138|       |	 * See https://github.com/libuv/libuv/pull/4559
  139|       |	 */
  140|      2|	do {
  141|      2|		int fd = open("/dev/null", O_RDWR, 0);
  142|      2|		RUNTIME_CHECK(fd >= 0);
  ------------------
  |  |  245|      2|	((cond) ? (void)0 : FATAL_ERROR("RUNTIME_CHECK(%s) failed", #cond))
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |  |  Branch (245:3): [True: 2, False: 0]
  |  |  ------------------
  ------------------
  143|      2|		if (fd > STDERR_FILENO) {
  ------------------
  |  Branch (143:7): [True: 2, False: 0]
  ------------------
  144|      2|			close(fd);
  145|      2|			break;
  146|      2|		}
  147|      2|	} while (true);
  ------------------
  |  Branch (147:11): [True: 0, Folded]
  ------------------
  148|      2|#if UV_VERSION_HEX >= UV_VERSION(1, 38, 0)
  149|      2|	int r;
  150|      2|	isc_mem_create("uv", &isc__uv_mctx);
  ------------------
  |  |  198|      2|#define isc_mem_create(name, cp) isc__mem_create((name), (cp)_ISC_MEM_FILELINE)
  ------------------
  151|      2|	isc_mem_setdebugging(isc__uv_mctx, 0);
  152|      2|	isc_mem_setdestroycheck(isc__uv_mctx, false);
  153|       |
  154|      2|	r = uv_replace_allocator(isc__uv_malloc, isc__uv_realloc,
  155|      2|				 isc__uv_calloc, isc__uv_free);
  156|      2|	UV_RUNTIME_CHECK(uv_replace_allocator, r);
  ------------------
  |  |   50|      2|	if (ret != 0) {                                                  \
  |  |  ------------------
  |  |  |  Branch (50:6): [True: 0, False: 2]
  |  |  ------------------
  |  |   51|      0|		FATAL_ERROR("%s failed: %s\n", #func, uv_strerror(ret)); \
  |  |  ------------------
  |  |  |  |  220|      0|	isc_error_fatal(__FILE__, __LINE__, __func__, __VA_ARGS__)
  |  |  ------------------
  |  |   52|      0|	}
  ------------------
  157|      2|#endif /* UV_VERSION_HEX >= UV_VERSION(1, 38, 0) */
  158|      2|}

isc__xml_initialize:
   52|      2|isc__xml_initialize(void) {
   53|       |#ifdef HAVE_LIBXML2
   54|       |#ifndef LIBXML_HAS_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS
   55|       |	isc_mem_create("libxml2", &isc__xml_mctx);
   56|       |	isc_mem_setdebugging(isc__xml_mctx, 0);
   57|       |	isc_mem_setdestroycheck(isc__xml_mctx, false);
   58|       |
   59|       |	RUNTIME_CHECK(xmlMemSetup(isc__xml_free, isc__xml_malloc,
   60|       |				  isc__xml_realloc, isc__xml_strdup) == 0);
   61|       |#endif /* !LIBXML_HAS_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS */
   62|       |
   63|       |	xmlInitParser();
   64|       |#endif /* HAVE_LIBXML2 */
   65|      2|}

