name
string
code
string
asm
string
file
string
char* fmt::v7::detail::write<char, char*, unsigned long long, 0>(char*, unsigned long long)
inline int count_digits(uint64_t n) { // https://github.com/fmtlib/format-benchmark/blob/master/digits10 auto t = bsr2log10(FMT_BUILTIN_CLZLL(n | 1) ^ 63); return t - (n < data::zero_or_powers_of_10_64_new[t]); }
movq %rsi, %rcx orq $0x1, %rcx leaq 0x1282c(%rip), %rdx # 0x209a0 movq %rdi, %rax lzcntq %rcx, %rcx xorl $0x3f, %ecx movzwl (%rdx,%rcx,2), %ecx leaq 0x12996(%rip), %rdx # 0x20b20 cmpq (%rdx,%rcx,8), %rsi sbbq $0x0, %rax addq %rcx, %rax leaq 0x128b4(%rip), %rcx # 0x20a50 cmpq $0x64, %rsi jb 0xe1e8 movabsq $0...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> fmt::v7::to_string<__int128, 0>(__int128)
inline std::string to_string(T value) { // The buffer should be large enough to store the number including the sign or // "false" for bool. constexpr int max_size = detail::digits10<T>() + 2; char buffer[max_size > 5 ? static_cast<unsigned>(max_size) : 5]; char* begin = buffer; return std::string(begin, det...
pushq %r14 pushq %rbx subq $0x28, %rsp movq %rdi, %rbx movq %rsp, %r14 movq %r14, %rdi callq 0xe239 leaq 0x10(%rbx), %rcx movq %rbx, %rdi movq %r14, %rsi movq %rax, %rdx movq %rcx, (%rbx) callq 0xdeb0 movq %rbx, %rax addq $0x28, %rsp popq %rbx popq %r14 retq
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
char* fmt::v7::detail::write<char, char*, __int128, 0>(char*, __int128)
OutputIt write(OutputIt out, T value) { auto abs_value = static_cast<uint32_or_64_or_128_t<T>>(value); bool negative = is_negative(value); // Don't do -abs_value since it trips unsigned-integer-overflow sanitizer. if (negative) abs_value = ~abs_value + 1; int num_digits = count_digits(abs_value); auto size ...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movq %rdx, %r12 movq %rsi, %r14 testq %rdx, %rdx js 0xe254 movq %r12, %r15 jmp 0xe25d xorl %r15d, %r15d negq %r14 sbbq %r12, %r15 cmpq $0xa, %r14 movq %r15, %rax movl $0x1, %ebx sbbq $0x0, %rax jb 0xe2f3 movl $0x4, %ebx movq %rdi, (%rsp) movq ...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
std::back_insert_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> fmt::v7::detail::write<char, std::back_insert_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, float, 0>(std::back_insert_iterator<std::__cxx11::basic_string<char, std::char...
OutputIt write(OutputIt out, T value) { if (const_check(!is_supported_floating_point(value))) return out; using floaty = conditional_t<std::is_same<T, long double>::value, double, T>; using uint = typename dragonbox::float_info<floaty>::carrier_uint; auto bits = bit_cast<uint>(value); auto fspecs = float_sp...
pushq %rbx subq $0x10, %rsp vmovd %xmm0, %eax movq %rdi, %rbx movq $0x0, (%rsp) testl %eax, %eax jns 0xe6ff vpxord 0x111b9(%rip){1to4}, %xmm0, %xmm0 # 0x1f8b0 movl $0x100, 0x4(%rsp) # imm = 0x100 notl %eax testl $0x7f800000, %eax # imm = 0x7F800000 jne 0xe730 vmovd %xmm0, %eax xorl %esi, %esi leaq 0x124b3(%...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
std::back_insert_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> fmt::v7::detail::write_nonfinite<char, std::back_insert_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>(std::back_insert_iterator<std::__cxx11::basic_string<char, std::char...
OutputIt write_nonfinite(OutputIt out, bool isinf, const basic_format_specs<Char>& specs, const float_specs& fspecs) { auto str = isinf ? (fspecs.upper ? "INF" : "inf") : (fspecs.upper ? "NAN" : "nan"); constexpr size_t str_size = 3; auto sign = fspecs.sign;...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movslq (%rdx), %rax movl %esi, 0x4(%rsp) testq %rax, %rax js 0xe85c movl 0x4(%rcx), %ecx movq %rdx, %r14 movq 0x8(%rdi), %r13 movq %rdi, %rbx movzbl %ch, %ebp movl %ecx, (%rsp) xorl %ecx, %ecx testl %ebp, %ebp setne %cl xorl %r15d, %r15d leaq ...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
std::back_insert_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> fmt::v7::detail::write_float<std::back_insert_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, fmt::v7::detail::dragonbox::decimal_fp<float>, char>(std::back_insert_iterator...
OutputIt write_float(OutputIt out, const DecimalFP& fp, const basic_format_specs<Char>& specs, float_specs fspecs, Char decimal_point) { auto significand = fp.significand; int significand_size = get_significand_size(fp); static const Char zero = static_cast<Char>('0'); ...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x78, %rsp movq %rcx, 0x38(%rsp) movb %r8b, 0xf(%rsp) leaq 0x11d8d(%rip), %r9 # 0x209a0 movl (%rsi), %r15d movl %r15d, %eax orl $0x1, %eax movl %r15d, 0x1c(%rsp) lzcntl %eax, %eax xorl $0x1f, %eax movzwl (%r9,%rax,2), %r14d leaq 0x11dec(%rip),...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
char* fmt::v7::detail::fill<char*, char>(char*, unsigned long, fmt::v7::detail::fill_t<char> const&)
FMT_NOINLINE OutputIt fill(OutputIt it, size_t n, const fill_t<Char>& fill) { auto fill_size = fill.size(); if (fill_size == 1) return std::fill_n(it, n, fill[0]); for (size_t i = 0; i < n; ++i) it = std::copy_n(fill.data(), fill_size, it); return it; }
pushq %r15 pushq %r14 pushq %r12 pushq %rbx pushq %rax movzbl 0x4(%rdx), %r12d movq %rdx, %r15 movq %rsi, %r14 movq %rdi, %rbx cmpq $0x1, %r12 jne 0xefbf testq %r14, %r14 je 0xefdf movzbl (%r15), %esi leaq (%rbx,%r14), %r12 movq %rbx, %rdi movq %r14, %rdx callq 0x3110 movq %r12, %rbx jmp 0xefdf testq %r14, %r14 je 0xef...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
bool fmt::v7::detail::dragonbox::is_center_integer<float>(fmt::v7::detail::dragonbox::float_info<float>::carrier_uint, int, int)
bool is_center_integer(typename float_info<T>::carrier_uint two_f, int exponent, int minus_k) FMT_NOEXCEPT { // Exponent for 5 is negative. if (exponent > float_info<T>::divisibility_check_by_5_threshold) return false; if (exponent > float_info<T>::case_fc_upper_threshold) return divisi...
pushq %rax cmpl $0x27, %esi jle 0xf2b4 xorl %eax, %eax jmp 0xf2ef cmpl $0x7, %esi jl 0xf2d5 cmpl $0xb, %edx jge 0xf2f1 movslq %edx, %rax leaq 0x11b98(%rip), %rcx # 0x20e60 imull (%rcx,%rax,8), %edi cmpl 0x4(%rcx,%rax,8), %edi setbe %al jmp 0xf2ef movb $0x1, %al cmpl $-0x3, %esi jg 0xf2ef subl %esi, %edx js 0xf309 t...
/quesnel[P]baryonyx/external/fmt/include/fmt/format-inl.h
char* fmt::v7::detail::write_significand<char, unsigned int, 0>(char*, unsigned int, int, int, char)
inline Char* write_significand(Char* out, UInt significand, int significand_size, int integral_size, Char decimal_point) { if (!decimal_point) return format_decimal(out, significand, significand_size).end; auto end = format_decimal(out + 1, significa...
pushq %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movl %r8d, %ebp movq %rdi, %rbx testb %bpl, %bpl je 0xf4e0 movl %esi, %eax orl $0x1, %eax movl %ecx, %r14d leaq 0x1152e(%rip), %rcx # 0x209a0 lzcntl %eax, %eax xorl $0x1f, %eax movzwl (%rcx,%rax,2), %eax leaq 0x1159c(%rip), %rcx # 0x20a20 cmpl (%rcx,%rax,4)...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::dragonbox::decimal_fp<float> fmt::v7::detail::write_padded<(fmt::v7::align::type)2, std::back_insert_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, char, std::back_insert_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> ...
inline OutputIt write_padded(OutputIt out, const basic_format_specs<Char>& specs, size_t size, size_t width, F&& f) { static_assert(align == align::left || align == align::right, ""); unsigned spec_width = to_unsigned(specs.width); size_t padding = spec_wi...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movslq (%rsi), %rax testq %rax, %rax js 0xf93b xorl %r15d, %r15d subq %rcx, %rax leaq 0x1164d(%rip), %rcx # 0x20eb8 movq 0x8(%rdi), %rbp movq %r8, %r12 movq %rsi, %r14 movq %rdi, %rbx cmovaeq %rax, %r15 movzbl 0x9(%rsi), %eax addq $0xa, %r...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> fmt::v7::to_string<double, 0>(double const&)
inline std::string to_string(const T& value) { std::string result; detail::write<char>(std::back_inserter(result), value); return result; }
pushq %r15 pushq %r14 pushq %rbx leaq 0x10(%rdi), %r15 movq %rdi, %rbx movq %r15, (%rdi) movq $0x0, 0x8(%rdi) movb $0x0, 0x10(%rdi) vmovsd (%rsi), %xmm0 callq 0xfb63 movq %rbx, %rax popq %rbx popq %r14 popq %r15 retq movq (%rbx), %rdi movq %rax, %r14 cmpq %r15, %rdi je 0xfb5b movq (%r15), %rsi incq %rsi callq 0x3230 mo...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
std::back_insert_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> fmt::v7::detail::write<char, std::back_insert_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, double, 0>(std::back_insert_iterator<std::__cxx11::basic_string<char, std::cha...
OutputIt write(OutputIt out, T value) { if (const_check(!is_supported_floating_point(value))) return out; using floaty = conditional_t<std::is_same<T, long double>::value, double, T>; using uint = typename dragonbox::float_info<floaty>::carrier_uint; auto bits = bit_cast<uint>(value); auto fspecs = float_sp...
pushq %rbx subq $0x20, %rsp vmovq %xmm0, %rax movq %rdi, %rbx movq $0x0, 0x8(%rsp) testq %rax, %rax jns 0xfb90 vpxorq 0xfc48(%rip){1to2}, %xmm0, %xmm0 # 0x1f7d0 movl $0x100, 0xc(%rsp) # imm = 0x100 movabsq $0x7ff0000000000000, %rcx # imm = 0x7FF0000000000000 andnq %rcx, %rax, %rax jne 0xfbca vmovq %xmm0, %rax xor...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> fmt::v7::to_string<long double, 0>(long double const&)
inline std::string to_string(const T& value) { std::string result; detail::write<char>(std::back_inserter(result), value); return result; }
pushq %r15 pushq %r14 pushq %rbx subq $0x10, %rsp leaq 0x10(%rdi), %r15 movq %rdi, %rbx movq %r15, (%rdi) movq $0x0, 0x8(%rdi) movb $0x0, 0x10(%rdi) fldt (%rsi) movabsq $-0x100000000, %rsi # imm = 0xFFFFFFFF00000000 movabsq $0x1000000200000, %rdx # imm = 0x1000000200000 xorl %ecx, %ecx fstpt (%rsp) callq 0x11057 m...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::float_specs fmt::v7::detail::parse_float_type_spec<fmt::v7::detail::error_handler, char>(fmt::v7::basic_format_specs<char> const&, fmt::v7::detail::error_handler&&)
FMT_CONSTEXPR float_specs parse_float_type_spec( const basic_format_specs<Char>& specs, ErrorHandler&& eh = {}) { auto result = float_specs(); result.showpoint = specs.alt; switch (specs.type) { case 0: result.format = float_format::general; result.showpoint |= specs.precision > 0; break; case...
movzbl 0x9(%rdi), %ecx movzbl 0x8(%rdi), %edx shrl $0x7, %ecx leal -0x41(%rdx), %r8d movl %ecx, %eax shll $0x14, %eax cmpl $0xb, %r8d jbe 0x1139d leal -0x61(%rdx), %r8d cmpl $0x6, %r8d ja 0x113b8 leaq 0xe5d5(%rip), %rdx # 0x1f968 movslq (%rdx,%r8,4), %r8 addq %rdx, %r8 jmpq *%r8 leaq 0xe594(%rip), %rdx # 0x1f...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::fixed_handler::on_start(unsigned long, unsigned long, unsigned long, int&)
digits::result on_start(uint64_t divisor, uint64_t remainder, uint64_t error, int& exp) { // Non-fixed formats require at least one digit and no precision adjustment. if (!fixed) return digits::more; // Adjust fixed precision by exponent because it is relative to decimal // poi...
pushq %rax xorl %eax, %eax cmpb $0x1, 0x14(%rdi) jne 0x120d6 movl 0x10(%rdi), %r9d addl (%r8), %r9d addl 0xc(%rdi), %r9d movl %r9d, 0xc(%rdi) jle 0x120d8 popq %rcx retq movl $0x1, %eax js 0x120d6 movq %rsi, %rax subq %rdx, %rax jbe 0x1213b movq %rsi, %r8 subq %rcx, %r8 jbe 0x12153 cmpq %rcx, %r8 jbe 0x1216b cmpq %rdx, ...
/quesnel[P]baryonyx/external/fmt/include/fmt/format-inl.h
fmt::v7::detail::bigint::assign(unsigned long)
void assign(uint64_t n) { size_t num_bigits = 0; do { bigits_[num_bigits++] = n & ~bigit(0); n >>= bigit_bits; } while (n != 0); bigits_.resize(num_bigits); exp_ = 0; }
pushq %r14 pushq %rbx pushq %rax movq 0x8(%rdi), %rax movq %rdi, %rbx xorl %r14d, %r14d movl %esi, (%rax,%r14,4) incq %r14 shrq $0x20, %rsi jne 0x12304 movq 0x18(%rbx), %rax leaq -0x1(%r14), %rcx cmpq %rcx, %rax ja 0x1232d movq (%rbx), %rax movq %rbx, %rdi movq %r14, %rsi callq *(%rax) movq 0x18(%rbx), %rax cmpq %r14, ...
/quesnel[P]baryonyx/external/fmt/include/fmt/format-inl.h
fmt::v7::detail::bigint::divmod_assign(fmt::v7::detail::bigint const&)
int divmod_assign(const bigint& divisor) { FMT_ASSERT(this != &divisor, ""); if (compare(*this, divisor) < 0) return 0; FMT_ASSERT(divisor.bigits_[divisor.bigits_.size() - 1u] != 0, ""); align(divisor); int quotient = 0; do { subtract_aligned(divisor); ++quotient; } while (compar...
pushq %rbp pushq %r14 pushq %rbx cmpq %rsi, %rdi je 0x12573 movq %rsi, %rbx movq %rdi, %r14 callq 0x125a3 testl %eax, %eax js 0x1256a movq 0x8(%rbx), %rax movq 0x10(%rbx), %rcx cmpl $0x0, -0x4(%rax,%rcx,4) je 0x1258b movq %r14, %rdi movq %rbx, %rsi callq 0x12f60 xorl %ebp, %ebp movq %r14, %rdi movq %rbx, %rsi callq 0x1...
/quesnel[P]baryonyx/external/fmt/include/fmt/format-inl.h
fmt::v7::detail::bigint::multiply(unsigned int)
size_t size() const FMT_NOEXCEPT { return size_; }
movq 0x10(%rdi), %rax testq %rax, %rax je 0x1318f pushq %r14 pushq %rbx pushq %rax movq 0x8(%rdi), %rdx movl %esi, %ecx movq %rdi, %rbx xorl %esi, %esi xorl %r14d, %r14d movl (%rdx,%rsi,4), %edi imulq %rcx, %rdi addq %rdi, %r14 movl %r14d, (%rdx,%rsi,4) shrq $0x20, %r14 incq %rsi cmpq %rsi, %rax jne 0x13143 testq %r14,...
/quesnel[P]baryonyx/external/fmt/include/fmt/core.h
fmt::v7::detail::buffer_appender<char> fmt::v7::detail::write<char, fmt::v7::detail::buffer_appender<char>, __int128, 0>(fmt::v7::detail::buffer_appender<char>, __int128)
OutputIt write(OutputIt out, T value) { auto abs_value = static_cast<uint32_or_64_or_128_t<T>>(value); bool negative = is_negative(value); // Don't do -abs_value since it trips unsigned-integer-overflow sanitizer. if (negative) abs_value = ~abs_value + 1; int num_digits = count_digits(abs_value); auto size ...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq %rsi, %r14 movq %rdi, %r12 testq %rdx, %rdx js 0x13f99 movq %rdx, %r15 jmp 0x13fa2 xorl %r15d, %r15d negq %r14 sbbq %rdx, %r15 cmpq $0xa, %r14 movq %r15, %rax movl $0x1, %r13d movq %r12, 0x18(%rsp) sbbq $0x0, %rax jb 0x1405c movl $0...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::buffer_appender<char> fmt::v7::detail::write<char, fmt::v7::detail::buffer_appender<char>, double, 0>(fmt::v7::detail::buffer_appender<char>, double)
OutputIt write(OutputIt out, T value) { if (const_check(!is_supported_floating_point(value))) return out; using floaty = conditional_t<std::is_same<T, long double>::value, double, T>; using uint = typename dragonbox::float_info<floaty>::carrier_uint; auto bits = bit_cast<uint>(value); auto fspecs = float_sp...
pushq %r14 pushq %rbx subq $0x18, %rsp vmovq %xmm0, %r14 movabsq $0x7ff0000000000000, %rax # imm = 0x7FF0000000000000 movq %rdi, %rbx andnq %rax, %r14, %rcx jne 0x15746 movq %r14, %rcx btrq $0x3f, %rcx leaq 0xaa74(%rip), %rdx # 0x20181 leaq 0x8(%rsp), %r8 leaq 0xbf83(%rip), %rsi # 0x2169c movq %rbx, %rdi cmpq...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::buffer_appender<char> fmt::v7::detail::write_float<fmt::v7::detail::buffer_appender<char>, fmt::v7::detail::dragonbox::decimal_fp<double>, char>(fmt::v7::detail::buffer_appender<char>, fmt::v7::detail::dragonbox::decimal_fp<double> const&, fmt::v7::basic_format_specs<char> const&, fmt::v7::detail::floa...
OutputIt write_float(OutputIt out, const DecimalFP& fp, const basic_format_specs<Char>& specs, float_specs fspecs, Char decimal_point) { auto significand = fp.significand; int significand_size = get_significand_size(fp); static const Char zero = static_cast<Char>('0'); ...
pushq %rbp pushq %r15 pushq %r14 pushq %r12 pushq %rbx subq $0x60, %rsp movq %rcx, 0x58(%rsp) movb %r8b, 0x3(%rsp) movq %rdx, %rbx movq %rsi, %rax movq %rdi, %r14 movq (%rsi), %r9 leaq 0xb1e9(%rip), %rsi # 0x209a0 movq %r9, %rdx orq $0x1, %rdx movq %r9, 0x10(%rsp) lzcntq %rdx, %rdx xorl $0x3f, %edx movzwl (%rsi,%r...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::dragonbox::decimal_fp<double> fmt::v7::detail::write_padded<(fmt::v7::align::type)2, fmt::v7::detail::buffer_appender<char>, char, fmt::v7::detail::buffer_appender<char> fmt::v7::detail::write_float<fmt::v7::detail::buffer_appender<char>, fmt::v7::detail::dragonbox::decimal_fp<double>, char>(fmt::v7::d...
inline OutputIt write_padded(OutputIt out, const basic_format_specs<Char>& specs, size_t size, size_t width, F&& f) { static_assert(align == align::left || align == align::right, ""); unsigned spec_width = to_unsigned(specs.width); size_t padding = spec_wi...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x18, %rsp movslq (%rsi), %rax testq %rax, %rax js 0x16002 xorl %r14d, %r14d subq %rcx, %rax leaq 0xafe4(%rip), %rcx # 0x20eb8 movq %rsi, %rbx movq %r8, %r12 movq %rdi, %r13 cmovaeq %rax, %r14 movzbl 0x9(%rsi), %eax addq 0x10(%rdi), %rdx addq ...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
int fmt::v7::detail::get_dynamic_spec<fmt::v7::detail::width_checker, fmt::v7::basic_format_arg<fmt::v7::basic_format_context<fmt::v7::detail::buffer_appender<char>, char>>, fmt::v7::detail::error_handler>(fmt::v7::basic_format_arg<fmt::v7::basic_format_context<fmt::v7::detail::buffer_appender<char>, char>>, fmt::v7::d...
FMT_CONSTEXPR int get_dynamic_spec(FormatArg arg, ErrorHandler eh) { unsigned long long value = visit_format_arg(Handler<ErrorHandler>(eh), arg); if (value > to_unsigned(max_value<int>())) eh.on_error("number is too big"); return static_cast<int>(value); }
pushq %rax movl 0x20(%rsp), %ecx decl %ecx cmpl $0xe, %ecx ja 0x183c9 leaq 0x76b1(%rip), %rdx # 0x1fa38 leaq 0x10(%rsp), %rax movslq (%rdx,%rcx,4), %rcx addq %rdx, %rcx jmpq *%rcx movslq (%rax), %rax testq %rax, %rax jns 0x183c7 jmp 0x183b3 cmpq $0x0, 0x8(%rax) js 0x183b3 movq (%rax), %rax jmp 0x183be movq (%rax),...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::arg_formatter_base<fmt::v7::detail::buffer_appender<char>, char, fmt::v7::detail::error_handler>::operator()(void const*)
iterator operator()(const void* value) { if (specs_) check_pointer_type_spec(specs_->type, error_handler()); write_pointer(value); return out_; }
pushq %rbx subq $0x10, %rsp movq 0x10(%rdi), %rdx movq %rdi, %rbx testq %rdx, %rdx je 0x18812 movzbl 0x8(%rdx), %eax testl %eax, %eax je 0x18812 cmpl $0x70, %eax jne 0x18823 movq (%rbx), %rdi callq 0x16fe8 movq %rax, (%rbx) addq $0x10, %rsp popq %rbx retq leaq 0x7acb(%rip), %rsi # 0x202f5 leaq 0xf(%rsp), %rdi call...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::int_writer<fmt::v7::detail::buffer_appender<char>, char, unsigned int>::on_bin()
void on_bin() { if (specs.alt) { prefix[prefix_size++] = '0'; prefix[prefix_size++] = static_cast<char>(specs.type); } int num_digits = count_digits<1>(abs_value); out = write_int(out, num_digits, get_prefix(), specs, [this, num_digits](iterator it) { ...
pushq %rbx subq $0x20, %rsp movq 0x10(%rdi), %r8 movq %rdi, %rbx cmpb $0x0, 0x9(%r8) jns 0x18a84 movl 0x20(%rbx), %eax leal 0x1(%rax), %ecx movl %ecx, 0x20(%rbx) movb $0x30, 0x1c(%rbx,%rax) movl 0x20(%rbx), %ecx movb 0x8(%r8), %al leal 0x1(%rcx), %edx movl %edx, 0x20(%rbx) movb %al, 0x1c(%rbx,%rcx) movl 0x18(%rbx), %ea...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::buffer_appender<char> fmt::v7::detail::write_int<fmt::v7::detail::buffer_appender<char>, char, fmt::v7::detail::int_writer<fmt::v7::detail::buffer_appender<char>, char, unsigned int>::on_bin()::'lambda'(fmt::v7::detail::buffer_appender<char>)>(fmt::v7::detail::buffer_appender<char>, int, fmt::v7::basic...
OutputIt write_int(OutputIt out, int num_digits, string_view prefix, const basic_format_specs<Char>& specs, F f) { auto data = write_int_data<Char>(num_digits, prefix, specs); using iterator = remove_reference_t<decltype(reserve(out, 0))>; return write_padded<align::right>(out, specs, data.size...
pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x40, %rsp leaq 0x30(%rsp), %r13 movq %rdi, %r14 movq %r8, %rbx movq %rcx, %r15 movq %rdx, %r12 movq %r13, %rdi callq 0x19098 vmovups (%r13), %xmm0 movl 0x78(%rsp), %eax movq 0x70(%rsp), %rcx movq %r12, (%rsp) movq %r15, 0x8(%rsp) movq (%r13), %rsi vmovups %x...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
void fmt::v7::detail::arg_formatter_base<fmt::v7::detail::buffer_appender<char>, char, fmt::v7::detail::error_handler>::write_int<unsigned int>(unsigned int, fmt::v7::basic_format_specs<char> const&)
void write_int(T value, const format_specs& spec) { using uint_type = uint32_or_64_or_128_t<T>; int_writer<iterator, Char, uint_type> w(out_, locale_, value, spec); handle_int_type_spec(spec.type, w); out_ = w.out; }
pushq %r14 pushq %rbx subq $0x28, %rsp vmovups (%rdi), %xmm0 movq %rdi, %rbx vmovaps %xmm0, (%rsp) movq %rdx, 0x10(%rsp) movl %esi, 0x18(%rsp) movl $0x0, 0x20(%rsp) movb 0x9(%rdx), %al shrb $0x4, %al andb $0x7, %al cmpb $0x2, %al jb 0x1988b movl $0x2b, %eax movl $0x20, %ecx cmovel %eax, %ecx movb %cl, 0x1c(%rsp) movl $...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
void fmt::v7::detail::handle_int_type_spec<fmt::v7::detail::int_writer<fmt::v7::detail::buffer_appender<char>, char, unsigned long>&>(char, fmt::v7::detail::int_writer<fmt::v7::detail::buffer_appender<char>, char, unsigned long>&)
FMT_CONSTEXPR void handle_int_type_spec(char spec, Handler&& handler) { switch (spec) { case 0: case 'd': handler.on_dec(); break; case 'x': case 'X': handler.on_hex(); break; case 'b': case 'B': handler.on_bin(); break; case 'o': handler.on_oct(); break; #ifdef FMT_DEPRE...
cmpl $0x61, %edi jle 0x19946 cmpl $0x63, %edi jle 0x19968 cmpl $0x78, %edi je 0x19960 cmpl $0x6f, %edi je 0x19992 cmpl $0x64, %edi je 0x19982 jmp 0x1999a cmpl $0x4b, %edi jg 0x19956 testl %edi, %edi je 0x19982 cmpl $0x42, %edi je 0x1997a jmp 0x1999a cmpl $0x4c, %edi je 0x1998a cmpl $0x58, %edi jne 0x1999a movq %rsi, %r...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::int_writer<fmt::v7::detail::buffer_appender<char>, char, unsigned long>::on_bin()
void on_bin() { if (specs.alt) { prefix[prefix_size++] = '0'; prefix[prefix_size++] = static_cast<char>(specs.type); } int num_digits = count_digits<1>(abs_value); out = write_int(out, num_digits, get_prefix(), specs, [this, num_digits](iterator it) { ...
pushq %rbx subq $0x20, %rsp movq 0x10(%rdi), %r8 movq %rdi, %rbx cmpb $0x0, 0x9(%r8) jns 0x19ab0 movl 0x24(%rbx), %eax leal 0x1(%rax), %ecx movl %ecx, 0x24(%rbx) movb $0x30, 0x20(%rbx,%rax) movl 0x24(%rbx), %ecx movb 0x8(%r8), %al leal 0x1(%rcx), %edx movl %edx, 0x24(%rbx) movb %al, 0x20(%rbx,%rcx) movq 0x18(%rbx), %ra...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::buffer_appender<char> fmt::v7::detail::write_int<fmt::v7::detail::buffer_appender<char>, char, fmt::v7::detail::int_writer<fmt::v7::detail::buffer_appender<char>, char, unsigned long>::on_dec()::'lambda'(fmt::v7::detail::buffer_appender<char>)>(fmt::v7::detail::buffer_appender<char>, int, fmt::v7::basi...
OutputIt write_int(OutputIt out, int num_digits, string_view prefix, const basic_format_specs<Char>& specs, F f) { auto data = write_int_data<Char>(num_digits, prefix, specs); using iterator = remove_reference_t<decltype(reserve(out, 0))>; return write_padded<align::right>(out, specs, data.size...
pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x40, %rsp leaq 0x30(%rsp), %r13 movq %rdi, %r14 movq %r8, %rbx movq %rcx, %r15 movq %rdx, %r12 movq %r13, %rdi callq 0x19098 vmovups (%r13), %xmm0 movl 0x78(%rsp), %eax movq 0x70(%rsp), %rcx movq %r12, (%rsp) movq %r15, 0x8(%rsp) movq (%r13), %rsi vmovups %x...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::int_writer<fmt::v7::detail::buffer_appender<char>, char, unsigned __int128>::on_hex()
void on_hex() { if (specs.alt) { prefix[prefix_size++] = '0'; prefix[prefix_size++] = specs.type; } int num_digits = count_digits<4>(abs_value); out = write_int(out, num_digits, get_prefix(), specs, [this, num_digits](iterator it) { return format_uin...
pushq %rbx subq $0x20, %rsp movq 0x10(%rdi), %r8 movq %rdi, %rbx cmpb $0x0, 0x9(%r8) jns 0x1aade movl 0x34(%rbx), %eax leal 0x1(%rax), %ecx movl %ecx, 0x34(%rbx) movb $0x30, 0x30(%rbx,%rax) movl 0x34(%rbx), %ecx movb 0x8(%r8), %al leal 0x1(%rcx), %edx movl %edx, 0x34(%rbx) movb %al, 0x30(%rbx,%rcx) movq 0x28(%rbx), %rc...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::int_writer<fmt::v7::detail::buffer_appender<char>, char, unsigned __int128>::on_num()
void on_num() { std::string groups = grouping<Char>(locale); if (groups.empty()) return on_dec(); auto sep = thousands_sep<Char>(locale); if (!sep) return on_dec(); int num_digits = count_digits(abs_value); int size = num_digits, n = num_digits; std::string::const_iterator group = groups.cbe...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x288, %rsp # imm = 0x288 movq 0x8(%rdi), %rsi movq %rdi, %rbx leaq 0x70(%rsp), %rdi testq %rsi, %rsi je 0x1ac8f callq 0x3120 jmp 0x1ac94 callq 0x33d0 leaq 0x70(%rsp), %rdi callq 0x30d0 movq (%rax), %rcx leaq 0x20(%rsp), %rdi movq %rax, ...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
fmt::v7::detail::arg_formatter_base<fmt::v7::detail::buffer_appender<char>, char, fmt::v7::detail::error_handler>::write(bool)
void write(bool value) { if (specs_) write(string_view(value ? "true" : "false"), *specs_); else out_ = detail::write<Char>(out_, value); }
pushq %r14 pushq %rbx pushq %rax movq 0x10(%rdi), %rcx movq %rdi, %rbx testq %rcx, %rcx je 0x1bc73 movq (%rbx), %rdi leaq 0x451a(%rip), %rdx # 0x2016a leaq 0x4518(%rip), %rax # 0x2016f testb %sil, %sil cmovneq %rdx, %rax movzbl %sil, %edx xorq $0x5, %rdx movq %rax, %rsi callq 0x1bcac movq %rax, %r14 jmp 0x1bc...
/quesnel[P]baryonyx/external/fmt/include/fmt/format.h
int fmt::v7::detail::snprintf_float<double>(double, int, fmt::v7::detail::float_specs, fmt::v7::detail::buffer<char>&)
int snprintf_float(T value, int precision, float_specs specs, buffer<char>& buf) { // Buffer capacity must be non-zero, otherwise MSVC's vsnprintf_s will fail. FMT_ASSERT(buf.capacity() > buf.size(), "empty buffer"); static_assert(!std::is_same<T, float>::value, ""); // Subtract 1 to account...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq 0x18(%rdx), %rax vmovsd %xmm0, 0x10(%rsp) cmpq 0x10(%rdx), %rax jbe 0x1c666 shrq $0x20, %rsi leal -0x1(%rdi), %eax testl %edi, %edi movl $0x5, %ebp movq %rdx, %r12 movb $0x25, 0x1(%rsp) cmovnsl %eax, %ebp cmpb $0x2, %sil cmovael %ed...
/quesnel[P]baryonyx/external/fmt/include/fmt/format-inl.h
int fmt::v7::detail::format_float<double>(double, int, fmt::v7::detail::float_specs, fmt::v7::detail::buffer<char>&)
int format_float(T value, int precision, float_specs specs, buffer<char>& buf) { static_assert(!std::is_same<T, float>::value, ""); FMT_ASSERT(value >= 0, "value is negative"); const bool fixed = specs.format == float_format::fixed; if (value <= 0) { // <= instead of == to silence a warning. if (precision...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x58, %rsp vxorpd %xmm1, %xmm1, %xmm1 vucomisd %xmm1, %xmm0 jb 0x1cc56 movabsq $0xff00000000, %rbp # imm = 0xFF00000000 movabsq $0x200000000, %rcx # imm = 0x200000000 movq %rdx, %r12 movl %edi, %r15d andq %rsi, %rbp cmpq %rcx, %rbp sete %a...
/quesnel[P]baryonyx/external/fmt/include/fmt/format-inl.h
void fmt::v7::detail::fallback_format<double>(double, int, bool, fmt::v7::detail::buffer<char>&, int&)
void fallback_format(Double d, int num_digits, bool binary32, buffer<char>& buf, int& exp10) { bigint numerator; // 2 * R in (FPP)^2. bigint denominator; // 2 * S in (FPP)^2. // lower and upper are differences between value and corresponding boundaries. bigint lower; // (M^-...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x2f8, %rsp # imm = 0x2F8 movq %rcx, 0x18(%rsp) movl %edi, %r15d leaq 0xe8(%rsp), %rcx movl $0x20, %edi movq %rdx, 0x8(%rsp) leaq 0xd018(%rip), %rdx # 0x29d18 leaq 0x38(%rsp), %r9 xorl %eax, %eax leaq 0x198(%rsp), %r10 leaq (%rcx,%r...
/quesnel[P]baryonyx/external/fmt/include/fmt/format-inl.h
void boost::ext::ut::v1_1_8::reporter<boost::ext::ut::v1_1_8::printer>::on<boost::ext::ut::v1_1_8::detail::eq_<std::basic_string_view<char, std::char_traits<char>>, std::basic_string_view<char, std::char_traits<char>>>>(boost::ext::ut::v1_1_8::events::assertion_fail<boost::ext::ut::v1_1_8::detail::eq_<std::basic_string...
auto on(events::assertion_fail<TExpr> assertion) -> void { constexpr auto short_name = [](std::string_view name) { return name.rfind('/') != std::string_view::npos ? name.substr(name.rfind('/') + 1) : name; }; printer_ << "\n " << short_name(assertion.loc...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax leaq 0x70(%rdi), %r15 leaq 0x22fd(%rip), %rsi # 0x1fc55 movl $0x3, %edx movq %rdi, %rbx leaq 0x40(%rsp), %r14 movq %r15, %rdi callq 0x3270 movq 0x28(%r14), %r13 movq %r13, %rdi callq 0x30c0 testq %rax, %rax je 0x1d9bc movq %rax, %rdx movq...
/quesnel[P]baryonyx/external/ut/include/boost/ut.hpp
nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator...
int get_codepoint() { // this function only makes sense after reading `\u` JSON_ASSERT(current == 'u'); int codepoint = 0; const auto factors = { 12u, 8u, 4u, 0u }; for (const auto factor : factors) { get(); if (current >= '0' && current <= '...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x18, %rsp movq %rdi, %rbx movaps 0x3751a(%rip), %xmm0 # 0x3f0c0 movaps %xmm0, (%rsp) xorl %r14d, %r14d pushq $-0x30 popq %r12 pushq $-0x37 popq %r13 xorl %r15d, %r15d movl (%rsp,%r15), %ebp movq %rbx, %rdi callq 0x7ae8 movl 0x14(%rbx), %eax lea...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/input/lexer.hpp
nlohmann::json_abi_v3_11_2::detail::parser<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocato...
explicit parser(InputAdapterType&& adapter, const parser_callback_t<BasicJsonType> cb = nullptr, const bool allow_exceptions_ = true, const bool skip_comments = false) : callback(cb) , m_lexer(std::move(adapter), skip_comments) , allow_...
pushq %rbp pushq %r15 pushq %r14 pushq %r12 pushq %rbx movl %r8d, %ebp movl %ecx, %r14d movq %rsi, %r12 movq %rdi, %rbx movq %rdx, %rsi callq 0x92be movl $0x0, 0x20(%rbx) leaq 0x28(%rbx), %r15 movq %r15, %rdi movq %r12, %rsi movl %ebp, %edx callq 0x9d70 movb %r14b, 0xc0(%rbx) movq %r15, %rdi callq 0x9e10 movl %eax, 0x2...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/input/parser.hpp
nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator...
token_type scan_number() // lgtm [cpp/use-of-goto] { // reset token_buffer to store the number's bytes reset(); // the type of the parsed number; initially set to unsigned; will be // changed if minus sign, decimal point or exponent is read token_type number_type = token_ty...
pushq %rbp pushq %r14 pushq %rbx subq $0x10, %rsp movq %rdi, %rbx callq 0xa4a4 movl 0x14(%rbx), %eax movl $0x5, %ebp leal -0x31(%rax), %ecx cmpl $0x9, %ecx jae 0xa168 leaq 0x50(%rbx), %r14 movsbl %al, %esi movq %r14, %rdi callq 0x72e0 movq %rbx, %rdi callq 0x7ae8 leal -0x30(%rax), %ecx cmpl $0xa, %ecx jae 0xa117 movsbl...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/input/lexer.hpp
nlohmann::json_abi_v3_11_2::detail::json_sax_dom_callback_parser<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsign...
bool end_object() { if (ref_stack.back()) { if (!callback(static_cast<int>(ref_stack.size()) - 1, parse_event_t::object_end, *ref_stack.back())) { // discard object *ref_stack.back() = discarded; } else { ...
pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x70, %rsp movq %rdi, %rbx movq 0x10(%rdi), %rax movq -0x8(%rax), %rcx testq %rcx, %rcx je 0xcbe0 subq 0x8(%rbx), %rax shrq $0x3, %rax decl %eax movl %eax, 0x20(%rsp) movb $0x1, (%rsp) cmpq $0x0, 0x90(%rbx) je 0xcd4d leaq 0x80(%rbx), %rdi leaq 0x20(%rsp), %rs...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/input/json_sax.hpp
nlohmann::json_abi_v3_11_2::detail::invalid_iterator nlohmann::json_abi_v3_11_2::detail::invalid_iterator::create<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::jso...
static invalid_iterator create(int id_, const std::string& what_arg, BasicJsonContext context) { std::string w = concat(exception::name("invalid_iterator", id_), exception::diagnostics(context), what_arg); return {id_, w.c_str()}; }
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x98, %rsp movq %rdx, %r15 movl %esi, %ebp movq %rdi, %rbx leaq 0x38(%rsp), %r13 movq %r13, -0x10(%r13) leaq 0x31b20(%rip), %rsi # 0x40381 leaq 0x31b29(%rip), %rdx # 0x40391 leaq 0x28(%rsp), %rdi callq 0x9c60 leaq 0x48(%rsp), %rdi leaq 0x28...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/exceptions.hpp
std::pair<bool, nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char>>>*> nlohma...
std::pair<bool, BasicJsonType*> handle_value(Value&& v, const bool skip_callback = false) { JSON_ASSERT(!keep_stack.empty()); // do not handle this value if we know it would be added to a discarded // container if (!keep_stack.back()) { return {false, nullptr}; ...
pushq %rbp pushq %r14 pushq %rbx subq $0x40, %rsp movl %edx, %ebp movq %rdi, %rbx movabsq $-0x8000000000000000, %r14 # imm = 0x8000000000000000 movl 0x38(%rdi), %eax leaq -0x1(%rax), %rcx addq $0x3e, %rax testq %rcx, %rcx cmovnsq %rcx, %rax sarq $0x6, %rax shlq $0x3, %rax addq 0x30(%rdi), %rax leaq 0x3f(%r14), %rdx and...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/input/json_sax.hpp
std::pair<bool, nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char>>>*> nlohma...
std::pair<bool, BasicJsonType*> handle_value(Value&& v, const bool skip_callback = false) { JSON_ASSERT(!keep_stack.empty()); // do not handle this value if we know it would be added to a discarded // container if (!keep_stack.back()) { return {false, nullptr}; ...
pushq %rbp pushq %r14 pushq %rbx subq $0x40, %rsp movl %edx, %ebp movq %rdi, %rbx movabsq $-0x8000000000000000, %r14 # imm = 0x8000000000000000 movl 0x38(%rdi), %eax leaq -0x1(%rax), %rcx addq $0x3e, %rax testq %rcx, %rcx cmovnsq %rcx, %rax sarq $0x6, %rax shlq $0x3, %rax addq 0x30(%rdi), %rax leaq 0x3f(%r14), %rdx and...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/input/json_sax.hpp
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> nlohmann::json_abi_v3_11_2::detail::concat<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, char const (&) [10], std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, char const (&) [1...
inline OutStringType concat(Args && ... args) { OutStringType str; str.reserve(concat_length(std::forward<Args>(args)...)); concat_into(str, std::forward<Args>(args)...); return str; }
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movq %r8, %r14 movq %rcx, %r15 movq %rdx, %r12 movq %rsi, %r13 movq %rdi, %rbx leaq 0x10(%rdi), %rax movq %rax, (%rsp) movq %rax, (%rdi) movq $0x0, 0x8(%rdi) movb $0x0, 0x10(%rdi) movq %rsi, %rdi callq 0x7180 movq %rax, %rbp addq 0x8(%r12), %r...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/string_concat.hpp
nlohmann::json_abi_v3_11_2::detail::type_error nlohmann::json_abi_v3_11_2::detail::type_error::create<std::nullptr_t, 0>(int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::nullptr_t)
static type_error create(int id_, const std::string& what_arg, BasicJsonContext context) { std::string w = concat(exception::name("type_error", id_), exception::diagnostics(context), what_arg); return {id_, w.c_str()}; }
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x98, %rsp movq %rdx, %r15 movl %esi, %ebp movq %rdi, %rbx leaq 0x38(%rsp), %r13 movq %r13, -0x10(%r13) leaq 0x2e7c7(%rip), %rsi # 0x403f6 leaq 0x2e7ca(%rip), %rdx # 0x40400 leaq 0x28(%rsp), %rdi callq 0x9c60 leaq 0x48(%rsp), %rdi leaq 0x28...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/exceptions.hpp
nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char>>>::operator[](unsigned lon...
const_reference operator[](size_type idx) const { // const operator[] only works for arrays if (JSON_HEDLEY_LIKELY(is_array())) { return m_value.array->operator[](idx); } JSON_THROW(type_error::create(305, detail::concat("cannot use operator[] with a numeric argu...
pushq %rbp pushq %r14 pushq %rbx subq $0x30, %rsp movq %rdi, %r14 cmpb $0x2, (%rdi) jne 0x11f97 movq 0x8(%r14), %rax shlq $0x4, %rsi addq (%rax), %rsi movq %rsi, %rax addq $0x30, %rsp popq %rbx popq %r14 popq %rbp retq movl $0x20, %edi callq 0x7190 movq %rax, %rbx movq %r14, %rdi callq 0xec86 leaq 0x8(%rsp), %rdx movq ...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/json.hpp
nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char>>>::basic_json<nlohmann::js...
basic_json(const JsonRef& ref) : basic_json(ref.moved_or_copied()) {}
pushq %rbx subq $0x10, %rsp movq %rdi, %rbx movq 0x10(%rsi), %rax testq %rax, %rax je 0x124f4 movq %rsp, %rdi movq %rax, %rsi callq 0xdc84 jmp 0x1250d movb (%rsi), %al movb %al, (%rsp) movq 0x8(%rsi), %rax movq %rax, 0x8(%rsp) movb $0x0, (%rsi) movq $0x0, 0x8(%rsi) movq %rsp, %rdi movb (%rdi), %al movb %al, (%rbx) movq...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/json.hpp
(anonymous namespace)::logical_combination<((anonymous namespace)::logical_combination_types)0>::validate(nlohmann::json_abi_v3_11_2::json_pointer<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> const&, nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_str...
void validate(const json::json_pointer &ptr, const json &instance, json_patch &patch, error_handler &e) const final { size_t count = 0; logical_combination_error_handler error_summary; for (std::size_t index = 0; index < subschemata_.size(); ++index) { const std::shared_ptr<schema> &s = subschemata_[index]; ...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0xd8, %rsp movq %r8, 0x90(%rsp) movq %rcx, %r12 movq %rdx, 0xb0(%rsp) movq %rsi, 0xa8(%rsp) leaq 0x366ab(%rip), %r13 # 0x57798 movq %r13, 0xb8(%rsp) xorps %xmm0, %xmm0 movups %xmm0, 0xc0(%rsp) movq $0x0, 0xd0(%rsp) movq 0x20(%rdi), %rax movq %r...
/pboettch[P]json-schema-validator/src/json-validator.cpp
nlohmann::json_abi_v3_11_2::detail::iter_impl<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::alloc...
iterator find(KeyType && key) { auto result = end(); if (is_object()) { result.m_it.object_iterator = m_value.object->find(std::forward<KeyType>(key)); } return result; }
pushq %r15 pushq %r14 pushq %rbx movq %rdx, %r14 movq %rsi, %r15 movq %rdi, %rbx callq 0xdd54 cmpb $0x1, (%r15) jne 0x24b93 movq 0x8(%r15), %rdi movq %r14, %rsi callq 0x25c42 movq %rax, 0x8(%rbx) movq %rbx, %rax popq %rbx popq %r14 popq %r15 retq
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/json.hpp
nlohmann::json_abi_v3_11_2::detail::iter_impl<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::alloc...
iterator find(KeyType && key) { auto result = end(); if (is_object()) { result.m_it.object_iterator = m_value.object->find(std::forward<KeyType>(key)); } return result; }
pushq %r15 pushq %r14 pushq %rbx movq %rdx, %r14 movq %rsi, %r15 movq %rdi, %rbx callq 0xdd54 cmpb $0x1, (%r15) jne 0x24c2f movq 0x8(%r15), %rdi movq %r14, %rsi callq 0x28e38 movq %rax, 0x8(%rbx) movq %rbx, %rax popq %rbx popq %r14 popq %r15 retq
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/json.hpp
nlohmann::json_abi_v3_11_2::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_2::detail::iter_impl<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_1...
const string_type& key() const { JSON_ASSERT(anchor.m_object != nullptr); switch (anchor.m_object->type()) { // use integer array index as key case value_t::array: { if (array_index != array_index_last) { ...
pushq %rbx movq %rdi, %rbx movq (%rdi), %rax movzbl (%rax), %eax cmpl $0x1, %eax je 0x2541f cmpl $0x2, %eax jne 0x25428 movq 0x20(%rbx), %rsi cmpq 0x28(%rbx), %rsi je 0x25419 leaq 0x30(%rbx), %rdi callq 0x39509 movq 0x20(%rbx), %rax movq %rax, 0x28(%rbx) addq $0x30, %rbx jmp 0x2542c movq %rbx, %rdi popq %rbx jmp 0x3b58...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/iterators/iteration_proxy.hpp
void nlohmann::json_abi_v3_11_2::detail::from_json<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::...
inline void from_json(const BasicJsonType& j, typename BasicJsonType::boolean_t& b) { if (JSON_HEDLEY_UNLIKELY(!j.is_boolean())) { JSON_THROW(type_error::create(302, concat("type must be boolean, but is ", j.type_name()), &j)); } b = *j.template get_ptr<const typename BasicJsonType::boolean_t*>(...
pushq %rbp pushq %r14 pushq %rbx subq $0x30, %rsp movq %rdi, %r14 cmpb $0x4, (%rdi) jne 0x25b21 movb 0x8(%r14), %al movb %al, (%rsi) addq $0x30, %rsp popq %rbx popq %r14 popq %rbp retq movl $0x20, %edi callq 0x7190 movq %rax, %rbx movq %r14, %rdi callq 0xec86 leaq 0x8(%rsp), %rdx movq %rax, (%rdx) leaq 0x1bab9(%rip), %...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/conversions/from_json.hpp
nlohmann::json_abi_v3_11_2::json_pointer<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>::to_string() const
string_t to_string() const { return std::accumulate(reference_tokens.begin(), reference_tokens.end(), string_t{}, [](const string_t& a, const string_t& b) { return detail::concat(a, '/', detail::escape(b)); }); }
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x58, %rsp movq %rdi, 0x30(%rsp) movq (%rsi), %r14 movq 0x8(%rsi), %rbp leaq 0x20(%rsp), %rax movq %rax, -0x10(%rax) movq $0x0, -0x8(%rax) movb $0x0, (%rax) cmpq %rbp, %r14 je 0x262df leaq 0x48(%rsp), %rbx leaq 0x38(%rsp), %r15 leaq 0xf(%rsp), %r12...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/json_pointer.hpp
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> nlohmann::json_abi_v3_11_2::detail::concat<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, char const (&) [29], char const*>(char const (&) [29], char const*&&)
inline OutStringType concat(Args && ... args) { OutStringType str; str.reserve(concat_length(std::forward<Args>(args)...)); concat_into(str, std::forward<Args>(args)...); return str; }
pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx movq %rdx, %r14 movq %rsi, %r15 movq %rdi, %rbx leaq 0x10(%rdi), %r13 movq %r13, (%rdi) movq $0x0, 0x8(%rdi) movb $0x0, 0x10(%rdi) movq %rsi, %rdi callq 0x7180 movq %rax, %r12 movq (%r14), %rdi callq 0x7180 addq %rax, %r12 movq %rbx, %rdi movq %r12, %rsi callq 0x75...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/string_concat.hpp
nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char>>>::at(std::__cxx11::basic_...
reference at(const typename object_t::key_type& key) { // at only works for objects if (JSON_HEDLEY_UNLIKELY(!is_object())) { JSON_THROW(type_error::create(304, detail::concat("cannot use at() with ", type_name()), this)); } auto it = m_value.object->find(key); ...
pushq %rbp pushq %r15 pushq %r14 pushq %rbx subq $0x28, %rsp movq %rdi, %r14 cmpb $0x1, (%rdi) jne 0x28678 movq %rsi, %r15 movq 0x8(%r14), %rdi callq 0x27048 movq 0x8(%r14), %rcx addq $0x8, %rcx cmpq %rcx, %rax je 0x286d4 addq $0x40, %rax addq $0x28, %rsp popq %rbx popq %r14 popq %r15 popq %rbp retq movl $0x20, %edi ca...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/json.hpp
nlohmann::json_abi_v3_11_2::detail::iter_impl<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::alloc...
const_iterator find(KeyType && key) const { auto result = cend(); if (is_object()) { result.m_it.object_iterator = m_value.object->find(std::forward<KeyType>(key)); } return result; }
pushq %r15 pushq %r14 pushq %rbx movq %rdx, %r14 movq %rsi, %r15 movq %rdi, %rbx callq 0x292e4 cmpb $0x1, (%r15) jne 0x29277 movq 0x8(%r15), %rdi movq %r14, %rsi callq 0x28e38 movq %rax, 0x8(%rbx) movq %rbx, %rax popq %rbx popq %r14 popq %r15 retq
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/json.hpp
nlohmann::json_abi_v3_11_2::detail::iter_impl<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::alloc...
const_iterator find(KeyType && key) const { auto result = cend(); if (is_object()) { result.m_it.object_iterator = m_value.object->find(std::forward<KeyType>(key)); } return result; }
pushq %r15 pushq %r14 pushq %rbx movq %rdx, %r14 movq %rsi, %r15 movq %rdi, %rbx callq 0x292e4 cmpb $0x1, (%r15) jne 0x292db movq 0x8(%r15), %rdi movq %r14, %rsi callq 0x29a0a movq %rax, 0x8(%rbx) movq %rbx, %rax popq %rbx popq %r14 popq %r15 retq
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/json.hpp
bool nlohmann::json_abi_v3_11_2::detail::iter_impl<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::...
bool operator==(const IterImpl& other) const { // if objects are not the same, the comparison is undefined if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object)) { JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers", m_object)); } ...
pushq %rbp pushq %r15 pushq %r14 pushq %rbx subq $0x28, %rsp movq %rdi, %r14 movq (%rdi), %rax cmpq (%rsi), %rax jne 0x293a0 movzbl (%rax), %eax cmpl $0x2, %eax je 0x29380 cmpl $0x1, %eax jne 0x2938a movq 0x8(%r14), %rax cmpq 0x8(%rsi), %rax jmp 0x29392 movq 0x10(%r14), %rax cmpq 0x10(%rsi), %rax jmp 0x29392 movq 0x18(...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/iterators/iter_impl.hpp
void nlohmann::json_abi_v3_11_2::detail::get_arithmetic_value<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned ...
void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val) { switch (static_cast<value_t>(j)) { case value_t::number_unsigned: { val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigned_t*>()); break; } ...
pushq %rbp pushq %r14 pushq %rbx subq $0x30, %rsp movq %rdi, %r14 movzbl (%rdi), %eax cmpl $0x5, %eax je 0x2975d cmpl $0x7, %eax je 0x29763 cmpl $0x6, %eax jne 0x29775 movq 0x8(%r14), %rax jmp 0x29769 cvttsd2si 0x8(%r14), %rax movq %rax, (%rsi) addq $0x30, %rsp popq %rbx popq %r14 popq %rbp retq movl $0x20, %edi callq ...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/conversions/from_json.hpp
void nlohmann::json_abi_v3_11_2::detail::get_arithmetic_value<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned ...
void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val) { switch (static_cast<value_t>(j)) { case value_t::number_unsigned: { val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigned_t*>()); break; } ...
pushq %rbp pushq %r14 pushq %rbx subq $0x30, %rsp movq %rdi, %r14 movzbl (%rdi), %eax cmpl $0x5, %eax je 0x29abb cmpl $0x7, %eax je 0x29ab3 cmpl $0x6, %eax jne 0x29ace movsd 0x8(%r14), %xmm1 unpcklps 0x16fb3(%rip), %xmm1 # xmm1 = xmm1[0],mem[0],xmm1[1],mem[1] subpd 0x16fbb(%rip), %xmm1 # 0x40a60 movapd %xmm1, %xm...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/conversions/from_json.hpp
void nlohmann::json_abi_v3_11_2::detail::serializer<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std:...
void dump_integer(NumberType x) { static constexpr std::array<std::array<char, 2>, 100> digits_to_99 { { {{'0', '0'}}, {{'0', '1'}}, {{'0', '2'}}, {{'0', '3'}}, {{'0', '4'}}, {{'0', '5'}}, {{'0', '6'}}, {{'0', '7'}}, {{'0', '8'}}, {{'0', '9'}}, {{'1', '0'}...
testq %rsi, %rsi je 0x2abd7 movq %rsi, %rcx leaq 0x10(%rdi), %rsi movl $0x1, %r9d cmpq $0xa, %rcx jb 0x2abf0 movl $0x4, %r9d movabsq $0x346dc5d63886594b, %r10 # imm = 0x346DC5D63886594B movq %rcx, %r8 cmpq $0x63, %r8 jbe 0x2abe7 cmpq $0x3e7, %r8 # imm = 0x3E7 jbe 0x2abed cmpq $0x2710, %r8 # imm =...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/output/serializer.hpp
nlohmann::json_abi_v3_11_2::detail::dtoa_impl::boundaries nlohmann::json_abi_v3_11_2::detail::dtoa_impl::compute_boundaries<double>(double)
boundaries compute_boundaries(FloatType value) { JSON_ASSERT(std::isfinite(value)); JSON_ASSERT(value > 0); // Convert the IEEE representation into a diyfp. // // If v is denormal: // value = 0.F * 2^(1 - bias) = ( F) * 2^(1 - bias - (p-1)) // If v is normalized: // v...
movq %rdi, %rax movq %xmm0, %rdi movabsq $0x10000000000000, %r10 # imm = 0x10000000000000 decq %r10 andq %rdi, %r10 movq %rdi, %rcx shrq $0x34, %rcx movq %r10, %r8 btsq $0x34, %r8 testq %rcx, %rcx cmoveq %r10, %r8 leal -0x433(%rcx), %ecx movl $0xfffffbce, %r11d # imm = 0xFFFFFBCE cmovnel %ecx, %r11d leaq (%r8,%r8)...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/conversions/to_chars.hpp
decltype(fp0.reserve(std::declval<std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::size_type>()), fp.get<std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::a...
auto from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr, priority_tag<1> /*unused*/) -> decltype( arr.reserve(std::declval<typename ConstructibleArrayType::size_type>()), j.template get<typename ConstructibleArrayType::value_type>(), void()) { using std::end; ConstructibleArra...
pushq %r15 pushq %r14 pushq %rbx subq $0x80, %rsp movq %rsi, %rbx movq %rdi, %r14 xorps %xmm0, %xmm0 movaps %xmm0, 0x20(%rsp) movq $0x0, 0x30(%rsp) movzbl (%rdi), %esi testl %esi, %esi je 0x38cb1 cmpl $0x1, %esi je 0x38ca2 cmpl $0x2, %esi jne 0x38cac movq 0x8(%r14), %rax movq 0x8(%rax), %rsi subq (%rax), %rsi sarq $0x4...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/conversions/from_json.hpp
nlohmann::json_abi_v3_11_2::detail::iter_impl<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::alloc...
iter_impl& operator+=(difference_type i) { JSON_ASSERT(m_object != nullptr); switch (m_object->m_type) { case value_t::object: JSON_THROW(invalid_iterator::create(209, "cannot use offsets with object iterators", m_object)); case value_t::array: ...
pushq %rbp pushq %r15 pushq %r14 pushq %rbx subq $0x28, %rsp movq %rdi, %r14 movq (%rdi), %rax movzbl (%rax), %eax cmpl $0x2, %eax je 0x39dbb cmpl $0x1, %eax je 0x39dd1 addq %rsi, 0x18(%r14) jmp 0x39dc3 shlq $0x4, %rsi addq %rsi, 0x10(%r14) movq %r14, %rax addq $0x28, %rsp popq %rbx popq %r14 popq %r15 popq %rbp retq m...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/iterators/iter_impl.hpp
nlohmann::json_abi_v3_11_2::json_pointer<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>::operator/=(unsigned long)
json_pointer& operator/=(std::size_t array_idx) { return *this /= std::to_string(array_idx); }
pushq %r15 pushq %r14 pushq %r12 pushq %rbx subq $0x28, %rsp movq %rsi, %r14 movq %rdi, %rbx movl $0x1, %esi cmpq $0xa, %r14 jb 0x39ed1 movl $0x4, %esi movabsq $0x346dc5d63886594b, %rdi # imm = 0x346DC5D63886594B movq %r14, %rcx cmpq $0x63, %rcx jbe 0x39eca cmpq $0x3e7, %rcx # imm = 0x3E7 jbe 0x39ecf cmpq $0...
/pboettch[P]json-schema-validator/build_O1/_deps/nlohmann_json-src/include/nlohmann/detail/json_pointer.hpp
nlohmann::json_uri::location[abi:cxx11]() const
std::string json_uri::location() const { if (urn_.size()) return urn_; std::stringstream s; if (scheme_.size() > 0) s << scheme_ << "://"; s << authority_ << path_; return s.str(); }
pushq %r14 pushq %rbx subq $0x188, %rsp # imm = 0x188 movq %rsi, %r14 movq %rdi, %rbx movq 0x8(%rsi), %rdx testq %rdx, %rdx je 0x3ddcc leaq 0x10(%rbx), %rax movq %rax, (%rbx) movq (%r14), %rsi addq %rsi, %rdx movq %rbx, %rdi callq 0xe3e6 jmp 0x3de4a movq %rsp, %rdi callq 0x7250 movq 0x28(%r14), %rdx testq %r...
/pboettch[P]json-schema-validator/src/json-uri.cpp
nlohmann::json_uri::escape(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
std::string json_uri::escape(const std::string &src) { std::vector<std::pair<std::string, std::string>> chars = { {"~", "~0"}, {"/", "~1"}}; std::string l = src; for (const auto &c : chars) { std::size_t pos = 0; do { pos = l.find(c.first, pos); if (pos == std::string::npos) break; l.rep...
pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0xa0, %rsp movq %rsi, %r14 movq %rdi, %rbx leaq 0x20(%rsp), %r12 leaq 0x35bd(%rip), %rsi # 0x41641 leaq 0x35b8(%rip), %rdx # 0x41643 movq %r12, %r15 movq %r12, %rdi callq 0x3e21a leaq 0x60(%rsp), %r15 leaq 0x24d3(%rip), %rsi # 0x40575 leaq 0x35...
/pboettch[P]json-schema-validator/src/json-uri.cpp
printf
int printf( const char * _PDCLIB_restrict format, ... ) { int rc; va_list ap; va_start( ap, format ); rc = vfprintf( stdout, format, ap ); va_end( ap ); return rc; }
pushq %rbp movq %rsp, %rbp subq $0xe0, %rsp testb %al, %al je 0x2268 movaps %xmm0, -0xb0(%rbp) movaps %xmm1, -0xa0(%rbp) movaps %xmm2, -0x90(%rbp) movaps %xmm3, -0x80(%rbp) movaps %xmm4, -0x70(%rbp) movaps %xmm5, -0x60(%rbp) movaps %xmm6, -0x50(%rbp) movaps %xmm7, -0x40(%rbp) movq %r9, -0xb8(%rbp) movq %r8, -0xc0(%rbp)...
/DevSolar[P]pdclib/functions/stdio/printf.c
fputc
int fputc( int c, struct _PDCLIB_file_t * stream ) { _PDCLIB_LOCK( stream->mtx ); if ( _PDCLIB_prepwrite( stream ) == EOF ) { _PDCLIB_UNLOCK( stream->mtx ); return EOF; } stream->buffer[stream->bufidx++] = ( char )c; if ( ( stream->bufidx == stream->bufsize ) ...
pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movl %edi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x10(%rbp), %rdi addq $0x48, %rdi callq 0x5080 movq -0x10(%rbp), %rdi callq 0x24a0 cmpl $-0x1, %eax jne 0x5953 movq -0x10(%rbp), %rdi addq $0x48, %rdi callq 0x50c0 movl $0xffffffff, -0x4(%rbp) # imm = 0xFFFFFFFF jmp 0x59ea mo...
/DevSolar[P]pdclib/functions/stdio/fputc.c
rtosc::canonicalize_arg_vals(rtosc_arg_val_t*, unsigned long, char const*, rtosc::Port::MetaContainer)
int rtosc::canonicalize_arg_vals(rtosc_arg_val_t* av, size_t n, const char* port_args, Port::MetaContainer meta) { const char* first0 = port_args; int errors_found = 0; // skip "[]:" for( ; *first0 && (*first0 == ':' || *first0 == '[' ||...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq %rcx, 0x20(%rsp) movq %rdx, %r12 movq %rsi, %r14 movq %rdi, %r15 movabsq $0xa00000001, %rax # imm = 0xA00000001 movzbl (%r12), %ecx addl $-0x3a, %ecx cmpl $0x23, %ecx ja 0x4ffa btq %rcx, %rax jae 0x4ffa incq %r12 jmp 0x4fe2 mov...
/fundamental[P]rtosc/src/cpp/ports.cpp
rtosc::Ports::collapsePath(char*)
char *Ports::collapsePath(char *p) { //obtain the pointer to the last non-null char char *p_end = p; while(*p_end) p_end++; p_end--; //number of subpaths to consume int consuming = 0; char *write_pos = p_end; char *read_pos = p_end; while(read_pos >= p) { //per path chunk e...
leaq -0x2(%rdi), %rcx cmpb $0x0, 0x2(%rcx) leaq 0x1(%rcx), %rcx jne 0x5398 cmpq %rdi, %rcx jae 0x53ae movq %rcx, %rax incq %rax retq xorl %edx, %edx movq %rcx, %rax movq %rcx, %rsi subq %rdi, %rsi cmpq $0x2, %rsi jl 0x53e3 cmpb $0x2e, (%rcx) jne 0x53e3 cmpb $0x2e, -0x1(%rcx) jne 0x53e3 cmpb $0x2f, -0x2(%rcx) jne 0x53e3...
/fundamental[P]rtosc/src/cpp/ports.cpp
rtosc::path_search(rtosc::Ports const&, char const*, unsigned long, char*, unsigned long, rtosc::path_search_opts, bool)
std::size_t rtosc::path_search(const Ports &root, const char *m, std::size_t max_ports, char *msgbuf, std::size_t bufsize, path_search_opts opts, bool reply_with_query) { const char *str = rtosc_argument(m,0).s; cons...
pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x18, %rsp movq %r9, -0x30(%rbp) movq %r8, -0x40(%rbp) movq %rcx, -0x38(%rbp) movq %rdx, %rbx movq %rsi, %r13 movq %rdi, %r12 movq %rsi, %rdi xorl %esi, %esi callq 0x109e0 movq %rax, %r14 movq %r13, %rdi movl $0x1, %esi callq 0x109e...
/fundamental[P]rtosc/src/cpp/ports.cpp
do_hash(std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>> const&, std::vector<int, std::allocator<int>> const&, std::vector<int, std::allocator<int>> const&)
static ivec_t do_hash(const words_t &strs, const ivec_t &pos, const ivec_t &assoc) { ivec_t ivec; ivec.reserve(strs.size()); for(auto &s:strs) { int t = s.length(); for(auto p:pos) if(p < (int)s.size()) t += assoc[s[p]]; ivec.push_back(t); } return...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movq %rcx, %r14 movq %rdx, %r15 movq %rsi, %r12 movq %rdi, %rbx xorps %xmm0, %xmm0 movups %xmm0, (%rdi) movq $0x0, 0x10(%rdi) movq 0x8(%rsi), %rsi subq (%r12), %rsi sarq $0x5, %rsi callq 0xa118 movq (%r12), %r13 movq 0x8(%r12), %rbp cmpq %rbp,...
/fundamental[P]rtosc/src/cpp/ports.cpp
add_options(std::ostream&, rtosc::Port::MetaContainer)
static ostream &add_options(ostream &o, Port::MetaContainer meta) { string sym_names = "xyzabcdefghijklmnopqrstuvw"; int sym_idx = 0; bool has_options = false; for(auto m:meta) if(strstr(m.title, "map ")) has_options = true; for(auto m:meta) if(strcmp(m.title, "documentat...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq %rsi, %r13 movq %rdi, %rbx leaq 0x30(%rsp), %rax movq %rax, -0x10(%rax) leaq 0xa971(%rip), %rsi # 0x125f6 leaq 0xa984(%rip), %rdx # 0x12610 leaq 0x20(%rsp), %rdi callq 0x9684 testq %r13, %r13 je 0x7cb0 cmpb $0x3a, (%r13) j...
/fundamental[P]rtosc/src/cpp/ports.cpp
rtosc_type
char rtosc_type(const char *msg, unsigned nargument) { assert(nargument < rtosc_narguments(msg)); const char *arg = rtosc_argument_string(msg); while(1) { if(*arg == '[' || *arg == ']') ++arg; else if(!nargument || !*arg) return *arg; else ++arg, -...
incq %rdi cmpb $0x0, (%rdi) leaq 0x1(%rdi), %rdi jne 0xffa9 cmpb $0x0, (%rdi) leaq 0x1(%rdi), %rdi je 0xffb2 jmp 0xffc6 testb %al, %al je 0xffd7 decl %esi incq %rdi movzbl (%rdi), %eax cmpl $0x5b, %eax je 0xffc3 cmpl $0x5d, %eax je 0xffc3 testl %esi, %esi jne 0xffbd retq
/fundamental[P]rtosc/src/rtosc.c
rtosc_vmessage
size_t rtosc_vmessage(char *buffer, size_t len, const char *address, const char *arguments, va_list ap) { const unsigned nargs = nreserved(arguments); if(!nargs) return rtosc_amessage(buffer,len,addres...
pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq %r8, %r13 movq %rcx, %rbx movq %rdx, %r14 movq %rsi, %r15 movq %rdi, %r12 movq %rcx, %rdi callq 0x10364 testl %eax, %eax je 0x100e1 movq %rsp, -0x38(%rbp) movl %eax, %esi movq %r14, -0x30(%rbp) movq %rsp, %r14 movq %...
/fundamental[P]rtosc/src/rtosc.c
rtosc_v2args
static void rtosc_v2args(rtosc_arg_t* args, size_t nargs, const char* arg_str, rtosc_va_list_t* ap) { unsigned arg_pos = 0; uint8_t *midi_tmp; while(arg_pos < nargs) { switch(*arg_str++) { case 'h': case 't': args[arg_pos++].h = v...
testq %rsi, %rsi je 0x10363 xorl %r9d, %r9d leaq 0x2ad5(%rip), %rax # 0x12c48 xorl %r8d, %r8d movzbl (%rdx), %r10d leal -0x62(%r10), %r11d cmpl $0x12, %r11d ja 0x101c6 movslq (%rax,%r11,4), %r10 addq %rax, %r10 jmpq *%r10 movl (%rcx), %r11d cmpq $0x28, %r11 ja 0x101a7 movq %r11, %r10 addq 0x10(%rcx), %r10 addl $0x...
/fundamental[P]rtosc/src/rtosc.c
rtosc_amessage
size_t rtosc_amessage(char *buffer, size_t len, const char *address, const char *arguments, const rtosc_arg_t *args) { const size_t total_len = vsosc_null(address, arguments, args); if...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq %r8, 0x8(%rsp) movq %rcx, %r14 movq %rsi, 0x20(%rsp) movq %rdi, %rbp movq %rdx, 0x10(%rsp) movq %rdx, %rdi callq 0x3100 movq %rax, %r13 addl $0x4, %r13d movq %r14, %rdi callq 0x3100 andl $-0x4, %r13d leal (%rax,%r13), %r12d incl %r1...
/fundamental[P]rtosc/src/rtosc.c
rtosc_itr_next
rtosc_arg_val_t rtosc_itr_next(rtosc_arg_itr_t *itr) { //current position provides the value rtosc_arg_val_t result = {0,{0}}; result.type = *itr->type_pos; if(result.type) result.val = extract_arg(itr->value_pos, result.type); //advance itr->type_pos = advance_past_dummy_args(itr->type...
pushq %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movq %rsi, %rbx movq %rdi, %r14 xorps %xmm0, %xmm0 movups %xmm0, (%rdi) movq $0x0, 0x10(%rdi) movq (%rsi), %r15 movb (%r15), %al movb %al, (%rdi) movsbl %al, %ebp testb %al, %al je 0x107e4 movq 0x8(%rbx), %rdi movl %ebp, %esi callq 0x1081d movq %rax, 0x8(%r14) movq...
/fundamental[P]rtosc/src/rtosc.c
arg_size
static unsigned arg_size(const uint8_t *arg_mem, char type) { if(!has_reserved(type)) return 0; const uint8_t *arg_pos=arg_mem; uint32_t blob_length = 0; switch(type) { case 'h': case 't': case 'd': return 8; case 'm': case 'r': ca...
xorl %eax, %eax leal -0x53(%rsi), %ecx cmpl $0x21, %ecx ja 0x1099a movabsq $0x3846b8001, %rdx # imm = 0x3846B8001 btq %rcx, %rdx jae 0x1099a movsbl %sil, %ecx leal -0x62(%rcx), %eax cmpl $0x12, %eax ja 0x10975 leaq 0x2418(%rip), %rcx # 0x12d78 movslq (%rcx,%rax,4), %rax addq %rcx, %rax jmpq *%rax movl $0x4, %...
/fundamental[P]rtosc/src/rtosc.c
rtosc_argument
rtosc_arg_t rtosc_argument(const char *msg, unsigned idx) { char type = rtosc_type(msg, idx); uint8_t *arg_mem = (uint8_t*)msg + arg_off(msg, idx); return extract_arg(arg_mem, type); }
pushq %rbp pushq %r15 pushq %r14 pushq %r12 pushq %rbx movl %esi, %ebp movq %rdi, %rbx leaq 0x1(%rdi), %rax cmpb $0x0, (%rax) leaq 0x1(%rax), %rax jne 0x109f1 cmpb $0x0, (%rax) leaq 0x1(%rax), %rax je 0x109fa movl %ebp, %ecx movzbl (%rax), %r15d cmpl $0x5b, %r15d je 0x10a20 cmpl $0x5d, %r15d je 0x10a20 testl %ecx, %ecx...
/fundamental[P]rtosc/src/rtosc.c
rtosc_message_ring_length
size_t rtosc_message_ring_length(ring_t *ring) { //Check if the message is a bundle if(deref(0,ring) == '#' && deref(1,ring) == 'b' && deref(2,ring) == 'u' && deref(3,ring) == 'n' && deref(4,ring) == 'd' && deref(5,ring) == 'l' && deref(6,r...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx movq 0x8(%rdi), %rcx testq %rcx, %rcx je 0x10b54 movq (%rdi), %rdx cmpb $0x23, (%rdx) jne 0x10c81 movl $0x1, %eax cmpq $0x1, %rcx jne 0x10b83 movq 0x18(%rdi), %rdx jmp 0x10b6e movq 0x18(%rdi), %rdx testq %rdx, %rdx je 0x10c81 movq 0x10(%rdi), %rax cmpb $...
/fundamental[P]rtosc/src/rtosc.c
bundle_ring_length
static size_t bundle_ring_length(ring_t *ring) { unsigned pos = 8+8;//goto first length field uint32_t advance = 0; do { advance = deref(pos+0, ring) << (8*3) | deref(pos+1, ring) << (8*2) | deref(pos+2, ring) << (8*1) | deref(pos+3, ring) << (8*...
pushq %r14 pushq %rbx movq 0x8(%rdi), %rcx leaq 0x10(%rdi), %rax movl $0x10, %esi movl %esi, %edx movq %rdx, %r10 movq %rdi, %r8 movq %rdx, %r9 subq %rcx, %r10 jb 0x10feb xorl %esi, %esi movq %rax, %r8 movq %r10, %r9 cmpq 0x18(%rdi), %r10 jae 0x10ff6 movq (%r8), %rsi movzbl (%rsi,%r9), %esi shll $0x18, %esi leal 0x1(%r...
/fundamental[P]rtosc/src/rtosc.c
rtosc_valid_message_p
bool rtosc_valid_message_p(const char *msg, size_t len) { //Validate Path Characters (assumes printable characters are sufficient) if(*msg != '/') return false; const char *tmp = msg; for(unsigned i=0; i<len; ++i) { if(*tmp == 0) break; if(!isprint(*tmp)) ...
cmpb $0x2f, (%rdi) jne 0x11161 pushq %r14 pushq %rbx subq $0x28, %rsp movq %rsi, %rbx movq %rdi, %r14 movq %rdi, %rax testq %rsi, %rsi je 0x11108 callq 0x3290 movq (%rax), %rcx movb $0x2f, %dl movl $0x1, %esi movsbq %dl, %rdx testb $0x40, 0x1(%rcx,%rdx,2) je 0x11164 movq %rsi, %rax movl %eax, %edx cmpq %rbx, %rdx jae 0...
/fundamental[P]rtosc/src/rtosc.c
ncnn::copy_cut_border(ncnn::Mat const&, ncnn::Mat&, int, int, int, int, ncnn::Option const&)
void copy_cut_border(const Mat& src, Mat& dst, int top, int bottom, int left, int right, const Option& opt) { if (left + right > src.w || top + bottom > src.h) { NCNN_LOGE("copy_cut_border parameter error, top: %d, bottom: %d, left: %d, right: %d, src.w: %d, src.h: %d", top, bottom, left, right, src.w, ...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movl %r8d, %ebp movl %edx, %r13d movq %rdi, %r14 leal (%r9,%rbp), %edx movl 0x2c(%rdi), %r10d cmpl %r10d, %edx jg 0x2c4fb leal (%rcx,%r13), %eax movl 0x30(%r14), %r11d cmpl %r11d, %eax jg 0x2c4ff movl %edx, 0x1c(%rsp) movl %eax, 0x18(%rs...
/Tencent[P]ncnn/src/mat.cpp
ncnn::Convolution_x86_fma::forward_int8_x86(ncnn::Mat const&, ncnn::Mat&, ncnn::Option const&) const
int Convolution_x86_fma::forward_int8_x86(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const { int elembits = bottom_blob.elembits(); Mat bottom_blob_int8 = bottom_blob; if (elembits != 8) { Option opt_q = opt; opt_q.blob_allocator = opt.workspace_allocator; quantiz...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x488, %rsp # imm = 0x488 movq %rcx, %rbx movq %rdx, %r13 movq %rdi, %r14 movl 0x18(%rsi), %ecx movq 0x10(%rsi), %rdi testl %ecx, %ecx je 0xd31c5 leal (,%rdi,8), %eax cltd idivl %ecx cmpl $0x8, %eax sete %al jmp 0xd31c7 xorl %eax, %eax m...
/Tencent[P]ncnn/build_O3/src/layer/x86/convolution_x86_fma.cpp
ncnn::transpose_pack_B_tile_int8(ncnn::Mat const&, ncnn::Mat&, int, int, int, int)
static void transpose_pack_B_tile_int8(const Mat& B, Mat& BT, int batch, int max_jj, int max_kk, int nT) { #pragma omp parallel for num_threads(nT) for (int b = 0; b < batch; b++) { short* pp = BT.row<short>(b); int jj = 0; #if __SSE2__ #if defined(__x86_64__) || defined(_M_X64) #if __AVX51...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx movq %rsi, -0x10(%rsp) testl %edx, %edx jle 0x12b23f movq %rdi, %r15 movl %ecx, %edi imull %edx, %edi leal (,%rdi,8), %eax leal (%rdi,%rdi), %esi cltq movslq %esi, %r9 movslq %edi, %r10 movl %r8d, %esi andl $-0x8, %esi movl %esi, -0x44(%rsp) movslq %ecx,...
/Tencent[P]ncnn/src/layer/x86/convolution_3x3_winograd_int8.h
ncnn::get_optimal_tile_mnk_int8(int, int, int, int&, int&, int&, int)
static void get_optimal_tile_mnk_int8(int M, int N, int K, int& TILE_M, int& TILE_N, int& TILE_K, int nT) { // resolve optimal tile size from cache size const size_t l2_cache_size_int8 = (int)(get_cpu_level2_cache_size() / sizeof(short)); if (nT == 0) nT = get_physical_big_cpu_count(); // solv...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq %r9, 0x20(%rsp) movq %r8, 0x18(%rsp) movq %rcx, %r12 movl %edx, %ebp movq %rsi, 0x10(%rsp) movl %edi, %r13d movl 0x60(%rsp), %ebx callq 0x3cb1f sarl %eax movslq %eax, %r15 testl %ebx, %ebx jne 0x13caf2 callq 0x3cb03 movl %eax, %ebx ...
/Tencent[P]ncnn/src/layer/x86/convolution_3x3_winograd_int8.h
ncnn::transpose_pack_B_tile_int8(ncnn::Mat const&, ncnn::Mat&, int, int, int, int)
static void transpose_pack_B_tile_int8(const Mat& B, Mat& BT, int batch, int max_jj, int max_kk, int nT) { #pragma omp parallel for num_threads(nT) for (int b = 0; b < batch; b++) { short* pp = BT.row<short>(b); int jj = 0; #if __SSE2__ #if defined(__x86_64__) || defined(_M_X64) #if __AVX51...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx movq %rsi, -0x10(%rsp) movq %rdi, -0x28(%rsp) testl %edx, %edx jle 0x13e675 movl %ecx, %r9d imull %edx, %r9d leal (,%r9,8), %esi leal (%r9,%r9), %edi movslq %r9d, %rax shll $0x4, %r9d movslq %r9d, %r9 movslq %esi, %r10 movslq %edi, %r11 movl %r8d, %esi a...
/Tencent[P]ncnn/src/layer/x86/convolution_3x3_winograd_int8.h
ncnn::get_optimal_tile_mnk_int8(int, int, int, int&, int&, int&, int)
static void get_optimal_tile_mnk_int8(int M, int N, int K, int& TILE_M, int& TILE_N, int& TILE_K, int nT) { // resolve optimal tile size from cache size const size_t l2_cache_size_int8 = (int)(get_cpu_level2_cache_size() / sizeof(short)); if (nT == 0) nT = get_physical_big_cpu_count(); // solv...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq %r9, 0x20(%rsp) movq %r8, 0x18(%rsp) movq %rcx, %r12 movl %edx, %ebp movq %rsi, 0x10(%rsp) movl %edi, %r13d movl 0x60(%rsp), %ebx callq 0x3cb1f movl %eax, %r14d sarl %r14d movslq %r14d, %r15 testl %ebx, %ebx jne 0x14dc15 callq 0x3cb...
/Tencent[P]ncnn/src/layer/x86/convolution_3x3_winograd_int8.h
ncnn::Reduction::load_param(ncnn::ParamDict const&)
int Reduction::load_param(const ParamDict& pd) { operation = pd.get(0, 0); reduce_all = pd.get(1, 1); coeff = pd.get(2, 1.f); axes = pd.get(3, Mat()); keepdims = pd.get(4, 0); // the original reduction handle axes as blob with batch dimension // ask user to regenerate param instead of produ...
pushq %rbp pushq %r15 pushq %r14 pushq %rbx subq $0x98, %rsp movq %rsi, %r14 movq %rdi, %rbx movq %rsi, %rdi xorl %esi, %esi xorl %edx, %edx callq 0x3a260 movl %eax, 0xd0(%rbx) movq %r14, %rdi movl $0x1, %esi movl $0x1, %edx callq 0x3a260 movl %eax, 0xd4(%rbx) movss 0x27fe15(%rip), %xmm0 # 0x4a50d0 movq %r14, %rdi mo...
/Tencent[P]ncnn/src/layer/reduction.cpp
ncnn::reduction(float, float const*, int, int, int, int)
static float reduction(float v0, const float* ptr, int size0, int size1, int stride1, int op_type) { if (op_type == Reduction::ReductionOp_SUM) return reduction<reduction_op_add>(v0, ptr, size0, size1, stride1); if (op_type == Reduction::ReductionOp_ASUM) return reduction<reduction_op_asum>(v0, ptr, size0, size...
movaps %xmm0, %xmm2 cmpl $0xa, %r8d ja 0x228124 pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x18, %rsp movl %edx, %ebx movl %esi, %ebp movq %rdi, %r14 movl %r8d, %eax leaq 0x284a12(%rip), %rdx # 0x4ac988 movslq (%rdx,%rax,4), %rax addq %rdx, %rax jmpq *%rax testl %ebx, %ebx jle 0x228116 m...
/Tencent[P]ncnn/src/layer/reduction.cpp
ncnn::softmax(float*, int, int, int, int, float*, float*)
static void softmax(float* _ptr, int elemcount, int elempack, int stride, int size1, float* _maxptr, float* _sumptr) { // reduce max { float* maxptr = _maxptr; int j = 0; #if __SSE2__ #if __AVX__ #if __AVX512F__ __m512 _negmax_avx512 = _mm512_set1_ps(-FLT_MAX); for (; j + 15 < s...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x4a8, %rsp # imm = 0x4A8 movq %r9, %r13 movl %r8d, %ebp movl %ecx, 0x20(%rsp) movl %edx, 0x60(%rsp) movq %rdi, %r12 xorl %ecx, %ecx movq %r9, %rax cmpl $0x10, %r8d jl 0x240a13 movl %ebp, %ecx andl $0x7ffffff0, %ecx # imm = 0x7FFFF...
/Tencent[P]ncnn/build_O3/src/layer/x86/softmax_x86_avx512.cpp
ncnn::convdw3x3s2_pack4_sse(ncnn::Mat const&, ncnn::Mat&, ncnn::Mat const&, ncnn::Mat const&, ncnn::Option const&)
static void convdw3x3s2_pack4_sse(const Mat& bottom_blob, Mat& top_blob, const Mat& kernel, const Mat& _bias, const Option& opt) { int w = bottom_blob.w; int outw = top_blob.w; int outh = top_blob.h; const int group = bottom_blob.c; const int tailstep = (w - 2 * outw + w) * 4; const float* b...
pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx movq %rdx, -0x18(%rsp) movq %rsi, -0x20(%rsp) movq %rdi, -0x28(%rsp) movslq 0x38(%rdi), %rax movq %rax, -0x8(%rsp) testq %rax, %rax jle 0x2eb11b movq -0x20(%rsp), %rax movl 0x2c(%rax), %edx movl 0x30(%rax), %r9d movq -0x28(%rsp), %rax movl 0x2c(%rax), %e...
/Tencent[P]ncnn/src/layer/x86/convolutiondepthwise_3x3_pack4.h
ncnn::ConvolutionDepthWise_x86_fma::create_pipeline(ncnn::Option const&)
int ConvolutionDepthWise_x86_fma::create_pipeline(const Option& opt) { if (dynamic_weight) return 0; activation = create_activation_layer(activation_type, activation_params, opt); #if NCNN_INT8 if (opt.use_int8_inference && weight_data.elemsize == (size_t)1u) { return create_pipeline_i...
pushq %r15 pushq %r14 pushq %r12 pushq %rbx subq $0x48, %rsp cmpl $0x0, 0x160(%rdi) jne 0x2ed555 movq %rsi, %r14 movq %rdi, %rbx movl 0x110(%rdi), %eax decl %eax cmpl $0x5, %eax ja 0x2ed3a9 leaq 0x1c363a(%rip), %rcx # 0x4b072c movslq (%rcx,%rax,4), %rax addq %rcx, %rax jmpq *%rax movl $0x1a, %edi callq 0x428c9 movq ...
/Tencent[P]ncnn/build_O3/src/layer/x86/convolutiondepthwise_x86_fma.cpp
ncnn::ConvolutionDepthWise_x86_fma::create_pipeline_int8_x86(ncnn::Option const&)
int ConvolutionDepthWise_x86_fma::create_pipeline_int8_x86(const Option& opt) { const int maxk = kernel_w * kernel_h; int channels = (weight_data_size / group) / maxk / (num_output / group) * group; // depth-wise if (channels == group && group == num_output) { int elempack = 1; #if __SSE2__...
pushq %r15 pushq %r14 pushq %rbx subq $0x50, %rsp movq %rsi, %r14 movq %rdi, %rbx movl 0xd8(%rdi), %r8d imull 0xd4(%rdi), %r8d movl 0xd0(%rdi), %esi movl 0x104(%rdi), %eax movl 0x108(%rdi), %ecx cltd idivl %ecx cltd idivl %r8d movl %eax, %edi movl %esi, %eax cltd idivl %ecx movl %eax, %r9d movl %edi, %eax cltd idivl %r...
/Tencent[P]ncnn/build_O3/src/layer/x86/convolutiondepthwise_x86_fma.cpp
ncnn::ConvolutionDepthWise_x86_fma::destroy_pipeline(ncnn::Option const&)
int ConvolutionDepthWise_x86_fma::destroy_pipeline(const Option& opt) { if (activation) { activation->destroy_pipeline(opt); delete activation; activation = 0; } for (int i = 0; i < (int)group_ops.size(); i++) { group_ops[i]->destroy_pipeline(opt); delete gro...
pushq %r15 pushq %r14 pushq %rbx movq %rsi, %r14 movq %rdi, %rbx movq 0x2d0(%rdi), %rdi testq %rdi, %rdi je 0x2eeb81 movq (%rdi), %rax movq %r14, %rsi callq *0x28(%rax) movq 0x2d0(%rbx), %rdi testq %rdi, %rdi je 0x2eeb76 movq (%rdi), %rax callq *0x8(%rax) movq $0x0, 0x2d0(%rbx) movq 0x2d8(%rbx), %rax movq 0x2e0(%rbx), ...
/Tencent[P]ncnn/build_O3/src/layer/x86/convolutiondepthwise_x86_fma.cpp
void ncnn::qsort_descent_inplace<ncnn::BBoxRect>(std::vector<ncnn::BBoxRect, std::allocator<ncnn::BBoxRect>>&, std::vector<float, std::allocator<float>>&, int, int)
static void qsort_descent_inplace(std::vector<T>& datas, std::vector<float>& scores, int left, int right) { int i = left; int j = right; float p = scores[(left + right) / 2]; while (i <= j) { while (scores[i] > p) i++; while (scores[j] < p) j--; if ...
pushq %rbp pushq %r15 pushq %r14 pushq %rbx subq $0x18, %rsp movl %ecx, %ebx movq %rsi, %r14 movq %rdi, %r15 movq (%rsi), %rax cmpl %ebx, %edx jle 0x3436b5 movl %ebx, %ecx movl %edx, %ebp jmp 0x343772 leal (%rdx,%rbx), %ecx movl %ecx, %esi shrl $0x1f, %esi addl %ecx, %esi sarl %esi movslq %esi, %rcx movss (%rax,%rcx,4)...
/Tencent[P]ncnn/src/layer/yolodetectionoutput.cpp
ncnn::Quantize::load_model(ncnn::ModelBin const&)
int Quantize::load_model(const ModelBin& mb) { scale_data = mb.load(scale_data_size, 1); if (scale_data.empty()) return -100; return 0; }
pushq %r15 pushq %r14 pushq %rbx subq $0x50, %rsp movq %rdi, %rbx movl 0xd0(%rdi), %edx movq (%rsi), %rax leaq 0x8(%rsp), %r14 movq %r14, %rdi movl $0x1, %ecx callq *0x10(%rax) leaq 0xd8(%rbx), %r15 movq 0x8(%r14), %rax cmpq %r14, %r15 je 0x3439ee testq %rax, %rax je 0x343959 lock incl (%rax) movq 0xe0(%rbx), %rax test...
/Tencent[P]ncnn/src/layer/quantize.cpp