index
int64
0
66.5k
func_name
stringlengths
2
5.36k
func_dep
stringlengths
16
2.19k
func
stringlengths
8
55.3k
test
stringlengths
0
7.07k
opt
stringclasses
4 values
language
stringclasses
2 values
asm
stringlengths
0
45.4k
ida_asm
stringlengths
0
44.7k
ida_pseudo
stringlengths
0
44.3k
ghidra_asm
stringlengths
0
49.1k
ghidra_pseudo
stringlengths
0
64.7k
8,400
u32toa
bluesky950520[P]quickjs/cutils.c
size_t u32toa(char buf[minimum_length(11)], uint32_t n) { #ifdef USE_SINGLE_CASE_FAST /* 10% */ if (n < 10) { buf[0] = (char)('0' + n); buf[1] = '\0'; return 1; } #endif #define TEN_POW_7 10000000 if (n >= TEN_POW_7) { uint32_t quo = n / TEN_POW_7; n %= TEN_POW_7; ...
O1
c
u32toa: cmpl $0x9, %esi ja 0x1b08e orb $0x30, %sil movb %sil, (%rdi) movb $0x0, 0x1(%rdi) movl $0x1, %eax retq cmpl $0x98967f, %esi # imm = 0x98967F jbe 0x1b0fa movl %esi, %eax imulq $0x6b5fca6b, %rax, %rcx # imm = 0x6B5FCA6B shrq $0x36, %rcx imull $0x989680, %ecx, %edx # imm = 0x989680 cmpl $0x5f5e100, %esi ...
u32toa: cmp esi, 9 ja short loc_1B08E or sil, 30h mov [rdi], sil mov byte ptr [rdi+1], 0 mov eax, 1 retn loc_1B08E: cmp esi, 98967Fh jbe short loc_1B0FA mov eax, esi imul rcx, rax, 6B5FCA6Bh shr rcx, 36h imul edx, ecx, 989680h cmp esi, 5F5E100h jb loc_1B146 push ...
long long u32toa(long long a1, unsigned int a2) { long long result; // rax unsigned int v3; // ecx long long v4; // rax long long v5; // r8 unsigned int v6; // r10d long long v7; // r8 long long v8; // rcx unsigned int v9; // r8d unsigned int v10; // esi _BYTE *v11; // rdi long long v12; // rcx ...
u32toa: CMP ESI,0x9 JA 0x0011b08e OR SIL,0x30 MOV byte ptr [RDI],SIL MOV byte ptr [RDI + 0x1],0x0 MOV EAX,0x1 RET LAB_0011b08e: CMP ESI,0x98967f JBE 0x0011b0fa MOV EAX,ESI IMUL RCX,RAX,0x6b5fca6b SHR RCX,0x36 IMUL EDX,ECX,0x989680 CMP ESI,0x5f5e100 JC 0x0011b146 PUSH RBX MOV EAX,0x1 XOR R8D,R8D MOV R9D,0xcccccccd LAB_0...
long u32toa(byte *param_1,ulong param_2) { long lVar1; uint uVar2; uint uVar3; ulong uVar4; uint uVar5; long lVar6; uVar5 = (uint)param_2; if (uVar5 < 10) { *param_1 = (byte)param_2 | 0x30; param_1[1] = 0; return 1; } if (9999999 < uVar5) { uVar4 = (param_2 & 0xffffffff) / 10000...
8,401
u32toa
bluesky950520[P]quickjs/cutils.c
size_t u32toa(char buf[minimum_length(11)], uint32_t n) { #ifdef USE_SINGLE_CASE_FAST /* 10% */ if (n < 10) { buf[0] = (char)('0' + n); buf[1] = '\0'; return 1; } #endif #define TEN_POW_7 10000000 if (n >= TEN_POW_7) { uint32_t quo = n / TEN_POW_7; n %= TEN_POW_7; ...
O3
c
u32toa: cmpl $0x9, %esi ja 0x1b942 orb $0x30, %sil movb %sil, (%rdi) movb $0x0, 0x1(%rdi) movl $0x1, %eax retq cmpl $0x98967f, %esi # imm = 0x98967F jbe 0x1b9ae movl %esi, %eax imulq $0x6b5fca6b, %rax, %rcx # imm = 0x6B5FCA6B shrq $0x36, %rcx imull $0x989680, %ecx, %edx # imm = 0x989680 cmpl $0x5f5e100, %esi ...
u32toa: cmp esi, 9 ja short loc_1B942 or sil, 30h mov [rdi], sil mov byte ptr [rdi+1], 0 mov eax, 1 retn loc_1B942: cmp esi, 98967Fh jbe short loc_1B9AE mov eax, esi imul rcx, rax, 6B5FCA6Bh shr rcx, 36h imul edx, ecx, 989680h cmp esi, 5F5E100h jb loc_1B9FA push ...
long long u32toa(long long a1, unsigned int a2) { long long result; // rax unsigned int v3; // ecx long long v4; // rax long long v5; // r8 unsigned int v6; // r10d long long v7; // r8 long long v8; // rcx unsigned int v9; // r8d unsigned int v10; // esi _BYTE *v11; // rdi long long v12; // rcx ...
u32toa: CMP ESI,0x9 JA 0x0011b942 OR SIL,0x30 MOV byte ptr [RDI],SIL MOV byte ptr [RDI + 0x1],0x0 MOV EAX,0x1 RET LAB_0011b942: CMP ESI,0x98967f JBE 0x0011b9ae MOV EAX,ESI IMUL RCX,RAX,0x6b5fca6b SHR RCX,0x36 IMUL EDX,ECX,0x989680 CMP ESI,0x5f5e100 JC 0x0011b9fa PUSH RBX MOV EAX,0x1 XOR R8D,R8D MOV R9D,0xcccccccd LAB_0...
long u32toa(byte *param_1,ulong param_2) { long lVar1; uint uVar2; uint uVar3; ulong uVar4; uint uVar5; long lVar6; uVar5 = (uint)param_2; if (uVar5 < 10) { *param_1 = (byte)param_2 | 0x30; param_1[1] = 0; return 1; } if (9999999 < uVar5) { uVar4 = (param_2 & 0xffffffff) / 10000...
8,402
my_hash_sort_ucs2_nopad
eloqsql/strings/ctype-ucs2.c
static void my_hash_sort_ucs2_nopad(CHARSET_INFO *cs, const uchar *s, size_t slen, ulong *nr1, ulong *nr2) { my_wc_t wc; int res; const uchar *e=s+slen; MY_UNICASE_INFO *uni_plane= cs->caseinfo; register ulong m1= *nr1, m2= *nr2; while ((s < e) && (res=my_ucs2_uni(cs,&wc, (uchar *)s...
O3
c
my_hash_sort_ucs2_nopad: movq (%rcx), %r9 movq (%r8), %rax cmpq $0x2, %rdx jl 0xc8fb9 pushq %rbp movq %rsp, %rbp pushq %rbx addq %rsi, %rdx movq 0x78(%rdi), %rdi movq 0x8(%rdi), %rdi movzbl (%rsi), %r10d movzbl 0x1(%rsi), %r11d movq (%rdi,%r10,8), %rbx testq %rbx, %rbx je 0xc8f55 leaq (%r11,%r11,2), %r10 movl 0x8(%rbx,...
my_hash_sort_ucs2_nopad: mov r9, [rcx] mov rax, [r8] cmp rdx, 2 jl loc_C8FB9 push rbp mov rbp, rsp push rbx add rdx, rsi mov rdi, [rdi+78h] mov rdi, [rdi+8] loc_C8F38: movzx r10d, byte ptr [rsi] movzx r11d, byte ptr [rsi+1] mov rbx, [rdi+r10*8] test rbx, rbx jz sho...
long long my_hash_sort_ucs2_nopad(long long a1, unsigned __int8 *a2, long long a3, long long *a4, long long *a5) { long long v5; // r9 long long result; // rax unsigned long long v7; // rdx long long v8; // rdi long long v9; // r10 long long v10; // r11 long long v11; // rbx unsigned int v12; // r10d ...
my_hash_sort_ucs2_nopad: MOV R9,qword ptr [RCX] MOV RAX,qword ptr [R8] CMP RDX,0x2 JL 0x001c8fb9 PUSH RBP MOV RBP,RSP PUSH RBX ADD RDX,RSI MOV RDI,qword ptr [RDI + 0x78] MOV RDI,qword ptr [RDI + 0x8] LAB_001c8f38: MOVZX R10D,byte ptr [RSI] MOVZX R11D,byte ptr [RSI + 0x1] MOV RBX,qword ptr [RDI + R10*0x8] TEST RBX,RBX J...
void my_hash_sort_ucs2_nopad(long param_1,byte *param_2,long param_3,ulong *param_4,long *param_5) { long lVar1; long lVar2; byte *pbVar3; byte *pbVar4; ulong uVar5; ulong uVar6; uVar6 = *param_4; lVar2 = *param_5; if (1 < param_3) { pbVar3 = param_2; do { lVar1 = *(long *)(*(long *...
8,403
my_casedn_utf32
eloqsql/strings/ctype-ucs2.c
static size_t my_casedn_utf32(CHARSET_INFO *cs, const char *src, size_t srclen, char *dst, size_t dstlen) { my_wc_t wc; int res; const char *srcend= src + srclen; char *dstend= dst + dstlen; MY_UNICASE_INFO *uni_plane= cs->caseinfo; DBUG_ASSERT(srclen <= dstlen); while ((res= my_utf32_uni...
O0
c
my_casedn_utf32: pushq %rbp movq %rsp, %rbp subq $0x60, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq %r8, -0x28(%rbp) movq -0x10(%rbp), %rax addq -0x18(%rbp), %rax movq %rax, -0x40(%rbp) movq -0x20(%rbp), %rax addq -0x28(%rbp), %rax movq %rax, -0x48(%rbp) movq -0x...
my_casedn_utf32: push rbp mov rbp, rsp sub rsp, 60h mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_18], rdx mov [rbp+var_20], rcx mov [rbp+var_28], r8 mov rax, [rbp+var_10] add rax, [rbp+var_18] mov [rbp+var_40], rax mov rax, [rbp+var_20] add rax, [rbp+var_28]...
long long my_casedn_utf32(long long a1, long long a2, long long a3, _BYTE *a4, long long a5, long long a6) { long long v7; // [rsp+10h] [rbp-50h] unsigned long long v8; // [rsp+18h] [rbp-48h] long long v9; // [rsp+20h] [rbp-40h] int v10; // [rsp+2Ch] [rbp-34h] unsigned long long v11[2]; // [rsp+30h] [rbp-30h...
my_casedn_utf32: PUSH RBP MOV RBP,RSP SUB RSP,0x60 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV qword ptr [RBP + -0x18],RDX MOV qword ptr [RBP + -0x20],RCX MOV qword ptr [RBP + -0x28],R8 MOV RAX,qword ptr [RBP + -0x10] ADD RAX,qword ptr [RBP + -0x18] MOV qword ptr [RBP + -0x40],RAX MOV RAX,qword p...
long my_casedn_utf32(long param_1,long param_2,long param_3,long param_4,long param_5) { int8 uVar1; int iVar2; int iVar3; int8 local_38; long local_30; long local_28; long local_20; long local_18; long local_10; uVar1 = *(int8 *)(param_1 + 0x78); local_30 = param_5; local_28 = param_4; l...
8,404
testing::internal::FilePath::MakeFileName(testing::internal::FilePath const&, testing::internal::FilePath const&, int, char const*)
AlayaLite/build_O0/_deps/googletest-src/googletest/src/gtest-filepath.cc
FilePath FilePath::MakeFileName(const FilePath& directory, const FilePath& base_name, int number, const char* extension) { std::string file; if (number == 0) { file = base_name.string() + "." + extension; } else { file = base_name.str...
O0
cpp
testing::internal::FilePath::MakeFileName(testing::internal::FilePath const&, testing::internal::FilePath const&, int, char const*): subq $0x1a8, %rsp # imm = 0x1A8 movq %rdi, 0x20(%rsp) movq %rdi, %rax movq %rax, 0x28(%rsp) movq %rdi, 0x1a0(%rsp) movq %rsi, 0x198(%rsp) movq %rdx, 0x190(%rsp) movl %ecx, 0x18...
_ZN7testing8internal8FilePath12MakeFileNameERKS1_S3_iPKc: sub rsp, 1A8h mov [rsp+1A8h+var_188], rdi mov rax, rdi mov [rsp+1A8h+var_180], rax mov [rsp+1A8h+var_8], rdi mov [rsp+1A8h+var_10], rsi mov [rsp+1A8h+var_18], rdx mov [rsp+1A8h+var_1C], ecx mov [rsp+1A8h+var_28], r8 lea rd...
testing::internal::FilePath * testing::internal::FilePath::MakeFileName( testing::internal::FilePath *this, const testing::internal::FilePath *a2, const testing::internal::FilePath *a3, int a4, const char *a5) { int v5; // edx int v6; // ecx int v7; // r8d int v8; // r9d ...
MakeFileName: SUB RSP,0x1a8 MOV qword ptr [RSP + 0x20],RDI MOV RAX,RDI MOV qword ptr [RSP + 0x28],RAX MOV qword ptr [RSP + 0x1a0],RDI MOV qword ptr [RSP + 0x198],RSI MOV qword ptr [RSP + 0x190],RDX MOV dword ptr [RSP + 0x18c],ECX MOV qword ptr [RSP + 0x180],R8 LEA RDI,[RSP + 0x160] CALL 0x0012e590 CMP dword ptr [RSP + ...
/* testing::internal::FilePath::MakeFileName(testing::internal::FilePath const&, testing::internal::FilePath const&, int, char const*) */ FilePath * __thiscall testing::internal::FilePath::MakeFileName (FilePath *this,FilePath *param_1,FilePath *param_2,int param_3,char *param_4) { FilePath *pFVar1; ...
8,405
my_default_csname
eloqsql/mysys/charset.c
const char* my_default_csname() { const char* csname = NULL; #ifdef _WIN32 char cpbuf[64]; int cp = GetConsoleCP(); if (cp == 0) cp = GetACP(); snprintf(cpbuf, sizeof(cpbuf), "cp%d", (int)cp); csname = my_os_charset_to_mysql_charset(cpbuf); #elif defined(HAVE_SETLOCALE) && defined(HAVE_NL_LANGINFO) if...
O0
c
my_default_csname: pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq $0x0, -0x8(%rbp) xorl %edi, %edi leaq 0x520ac(%rip), %rsi # 0x7ce55 callq 0x24280 cmpq $0x0, %rax je 0x2add5 movl $0xe, %edi callq 0x242c0 movq %rax, -0x8(%rbp) cmpq $0x0, %rax je 0x2add5 movq -0x8(%rbp), %rdi callq 0x2ae00 movq %rax, -0x8(%rbp) cm...
my_default_csname: push rbp mov rbp, rsp sub rsp, 10h mov [rbp+var_8], 0 xor edi, edi lea rsi, asc_7CE51+4; "" call _setlocale cmp rax, 0 jz short loc_2ADD5 mov edi, 0Eh call _nl_langinfo mov [rbp+var_8], rax cmp rax, 0 jz short loc_2ADD5 mov rdi, [rbp+var_8] c...
const char *my_default_csname() { long long v2; // [rsp+8h] [rbp-8h] v2 = 0LL; if ( setlocale(0LL, "") ) { v2 = nl_langinfo(14LL); if ( v2 ) v2 = my_os_charset_to_mysql_charset(v2); } if ( v2 ) return (const char *)v2; else return "latin1"; }
my_default_csname: PUSH RBP MOV RBP,RSP SUB RSP,0x10 MOV qword ptr [RBP + -0x8],0x0 XOR EDI,EDI LEA RSI,[0x17ce55] CALL 0x00124280 CMP RAX,0x0 JZ 0x0012add5 MOV EDI,0xe CALL 0x001242c0 MOV qword ptr [RBP + -0x8],RAX CMP RAX,0x0 JZ 0x0012add5 MOV RDI,qword ptr [RBP + -0x8] CALL 0x0012ae00 MOV qword ptr [RBP + -0x8],RAX ...
char * my_default_csname(void) { char *pcVar1; char *local_18; char *local_10; local_10 = (char *)0x0; pcVar1 = setlocale(0,""); if (pcVar1 != (char *)0x0) { local_10 = nl_langinfo(0xe); if (local_10 != (char *)0x0) { local_10 = (char *)my_os_charset_to_mysql_charset(local_10); } } ...
8,406
LefDefParser::defiPinProp::Destroy()
Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/def/def/defiPinProp.cpp
void defiPinProp::Destroy() { clear(); free(instName_); free(pinName_); free((char*)(propNames_)); free((char*)(propValues_)); free((char*)(propDValues_)); free((char*)(propTypes_)); }
O0
cpp
LefDefParser::defiPinProp::Destroy(): subq $0x18, %rsp movq %rdi, 0x10(%rsp) movq 0x10(%rsp), %rdi movq %rdi, 0x8(%rsp) callq 0x40980 movq 0x8(%rsp), %rax movq 0x8(%rax), %rdi callq 0x72a0 movq 0x8(%rsp), %rax movq 0x18(%rax), %rdi callq 0x72a0 movq 0x8(%rsp), %rax movq 0x28(%rax), %rdi callq 0x72a0 movq 0x8(%rsp), %ra...
_ZN12LefDefParser11defiPinProp7DestroyEv: sub rsp, 18h mov [rsp+18h+var_8], rdi mov rdi, [rsp+18h+var_8]; this mov [rsp+18h+var_10], rdi call _ZN12LefDefParser11defiPinProp5clearEv; LefDefParser::defiPinProp::clear(void) mov rax, [rsp+18h+var_10] mov rdi, [rax+8] call _free mov rax, [r...
long long LefDefParser::defiPinProp::Destroy(LefDefParser::defiPinProp *this) { LefDefParser::defiPinProp::clear(this); free(*((_QWORD *)this + 1)); free(*((_QWORD *)this + 3)); free(*((_QWORD *)this + 5)); free(*((_QWORD *)this + 6)); free(*((_QWORD *)this + 7)); return free(*((_QWORD *)this + 8)); }
Destroy: SUB RSP,0x18 MOV qword ptr [RSP + 0x10],RDI MOV RDI,qword ptr [RSP + 0x10] MOV qword ptr [RSP + 0x8],RDI CALL 0x00140980 MOV RAX,qword ptr [RSP + 0x8] MOV RDI,qword ptr [RAX + 0x8] CALL 0x001072a0 MOV RAX,qword ptr [RSP + 0x8] MOV RDI,qword ptr [RAX + 0x18] CALL 0x001072a0 MOV RAX,qword ptr [RSP + 0x8] MOV RDI...
/* LefDefParser::defiPinProp::Destroy() */ void __thiscall LefDefParser::defiPinProp::Destroy(defiPinProp *this) { clear(this); free(*(void **)(this + 8)); free(*(void **)(this + 0x18)); free(*(void **)(this + 0x28)); free(*(void **)(this + 0x30)); free(*(void **)(this + 0x38)); free(*(void **)(this + ...
8,407
put_short_code
bluesky950520[P]quickjs/quickjs.c
static void put_short_code(DynBuf *bc_out, int op, int idx) { if (idx < 4) { switch (op) { case OP_get_loc: dbuf_putc(bc_out, OP_get_loc0 + idx); return; case OP_put_loc: dbuf_putc(bc_out, OP_put_loc0 + idx); return; case OP_set_loc: ...
O0
c
put_short_code: subq $0x28, %rsp movq %rdi, 0x20(%rsp) movl %esi, 0x1c(%rsp) movl %edx, 0x18(%rsp) cmpl $0x4, 0x18(%rsp) jge 0xc2bf8 movl 0x1c(%rsp), %eax addl $-0x22, %eax movl %eax, %ecx movq %rcx, 0x10(%rsp) subl $0x3e, %eax ja 0xc2bf6 movq 0x10(%rsp), %rax leaq 0x4fcad(%rip), %rcx # 0x11278c movslq (%rcx,%rax,4...
put_short_code: sub rsp, 28h mov [rsp+28h+var_8], rdi mov [rsp+28h+var_C], esi mov [rsp+28h+var_10], edx cmp [rsp+28h+var_10], 4 jge loc_C2BF8 mov eax, [rsp+28h+var_C] add eax, 0FFFFFFDEh; switch 63 cases mov ecx, eax mov [rsp+28h+var_18], rcx sub eax, 3Eh ja def_C2AE6; ...
long long put_short_code(_QWORD *a1, int a2, int a3) { long long result; // rax __int16 v4; // [rsp+18h] [rbp-10h] v4 = a3; if ( a3 >= 4 ) { if ( a3 >= 256 ) goto LABEL_21; LABEL_13: switch ( a2 ) { case 'X': dbuf_putc(a1, 193); return dbuf_putc(a1, v4); case 'Y...
put_short_code: SUB RSP,0x28 MOV qword ptr [RSP + 0x20],RDI MOV dword ptr [RSP + 0x1c],ESI MOV dword ptr [RSP + 0x18],EDX CMP dword ptr [RSP + 0x18],0x4 JGE 0x001c2bf8 MOV EAX,dword ptr [RSP + 0x1c] ADD EAX,-0x22 MOV ECX,EAX MOV qword ptr [RSP + 0x10],RCX SUB EAX,0x3e JA 0x001c2bf6 MOV RAX,qword ptr [RSP + 0x10] LEA RC...
void put_short_code(int8 param_1,uint param_2,uint param_3) { if ((int)param_3 < 4) { switch(param_2) { case 0x22: dbuf_putc(param_1,param_3 + 0xee & 0xff); return; default: break; case 0x58: dbuf_putc(param_1,param_3 + 0xc5 & 0xff); return; case 0x59: dbuf_pu...
8,408
put_short_code
bluesky950520[P]quickjs/quickjs.c
static void put_short_code(DynBuf *bc_out, int op, int idx) { if (idx < 4) { switch (op) { case OP_get_loc: dbuf_putc(bc_out, OP_get_loc0 + idx); return; case OP_put_loc: dbuf_putc(bc_out, OP_put_loc0 + idx); return; case OP_set_loc: ...
O2
c
put_short_code: pushq %rbp pushq %rbx pushq %rax movl %edx, %ebp movq %rdi, %rbx cmpl $0x3, %edx jg 0x614f4 leal -0x58(%rsi), %eax cmpl $0x8, %eax ja 0x61515 leaq 0x26313(%rip), %rcx # 0x877f8 movslq (%rcx,%rax,4), %rax addq %rcx, %rax jmpq *%rax addb $-0x3b, %bpl jmp 0x61554 cmpl $0xff, %ebp ja 0x61520 cmpl $0x5a,...
put_short_code: push rbp push rbx push rax mov ebp, edx mov rbx, rdi cmp edx, 3 jg short loc_614F4 lea eax, [rsi-58h]; switch 9 cases cmp eax, 8 ja short def_614EC; jumptable 00000000000614EC default case lea rcx, jpt_614EC movsxd rax, ds:(jpt_614EC - 877F8h)[rcx+rax*4] add ...
long long put_short_code(_QWORD *a1, int a2, int a3) { __int16 v3; // bp char v4; // si v3 = a3; if ( a3 <= 3 ) { switch ( a2 ) { case 'X': LOBYTE(v3) = a3 - 59; return dbuf_putc(a1, v3); case 'Y': LOBYTE(v3) = a3 - 55; return dbuf_putc(a1, v3); case...
put_short_code: PUSH RBP PUSH RBX PUSH RAX MOV EBP,EDX MOV RBX,RDI CMP EDX,0x3 JG 0x001614f4 LEA EAX,[RSI + -0x58] CMP EAX,0x8 JA 0x00161515 LEA RCX,[0x1877f8] MOVSXD RAX,dword ptr [RCX + RAX*0x4] ADD RAX,RCX switchD: JMP RAX caseD_58: ADD BPL,0xc5 JMP 0x00161554 LAB_001614f4: CMP EBP,0xff JA 0x00161520 CMP ESI,0x5a JZ...
void put_short_code(int8 param_1,uint param_2,uint param_3) { char cVar1; int8 uVar2; if ((int)param_3 < 4) { cVar1 = (char)param_3; switch(param_2) { case 0x58: param_3 = (uint)(byte)(cVar1 - 0x3b); break; case 0x59: param_3 = (uint)(byte)(cVar1 - 0x37); break; ca...
8,409
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> minja::Value::get<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>() const
monkey531[P]llama/common/minja.hpp
T get() const { if (is_primitive()) return primitive_.get<T>(); throw std::runtime_error("get<T> not defined for this value type: " + dump()); }
O0
cpp
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> minja::Value::get<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>() const: subq $0x68, %rsp movq %rdi, 0x60(%rsp) movq 0x60(%rsp), %rdi movq %rdi, 0x8(%rsp) callq 0x115430 testb $0x1, %al jne 0x12e59e jmp 0x12...
_ZNK5minja5Value3getIiEET_v: sub rsp, 68h mov [rsp+68h+var_8], rdi mov rdi, [rsp+68h+var_8]; this mov [rsp+68h+var_60], rdi call _ZNK5minja5Value12is_primitiveEv; minja::Value::is_primitive(void) test al, 1 jnz short loc_12E59E jmp short loc_12E5B1 loc_12E59E: mov rdi, [rsp+68h+var_60]...
long long minja::Value::get<int>(minja::Value *a1) { void *exception; // [rsp+0h] [rbp-68h] _BYTE v3[32]; // [rsp+20h] [rbp-48h] BYREF _BYTE v4[32]; // [rsp+40h] [rbp-28h] BYREF minja::Value *v5; // [rsp+60h] [rbp-8h] v5 = a1; if ( (minja::Value::is_primitive(a1) & 1) == 0 ) { exception = __cxa_allo...
8,410
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> minja::Value::get<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>() const
monkey531[P]llama/common/minja.hpp
T get() const { if (is_primitive()) return primitive_.get<T>(); throw std::runtime_error("get<T> not defined for this value type: " + dump()); }
O1
cpp
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> minja::Value::get<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>() const: pushq %rbp pushq %r14 pushq %rbx subq $0x40, %rsp movq %rdi, %r14 cmpq $0x0, 0x10(%rdi) jne 0x92709 cmpq $0x0, 0x20(%r14) jne 0x92709 ...
_ZNK5minja5Value3getIiEET_v: push rbp push r14 push rbx sub rsp, 40h mov r14, rdi cmp qword ptr [rdi+10h], 0 jnz short loc_92709 cmp qword ptr [r14+20h], 0 jnz short loc_92709 cmp qword ptr [r14+30h], 0 jnz short loc_92709 add r14, 40h ; '@' mov rbx, rsp mov dword pt...
long long minja::Value::get<int>(_QWORD *a1) { void *exception; // rbx _DWORD v3[4]; // [rsp+0h] [rbp-58h] BYREF _BYTE v4[16]; // [rsp+20h] [rbp-38h] BYREF if ( a1[2] || a1[4] || a1[6] ) { exception = __cxa_allocate_exception(0x10uLL); minja::Value::dump[abi:cxx11]((long long)v4, (long long)a1, 0xFF...
get<int>: PUSH RBP PUSH R14 PUSH RBX SUB RSP,0x40 MOV R14,RDI CMP qword ptr [RDI + 0x10],0x0 JNZ 0x00192709 CMP qword ptr [R14 + 0x20],0x0 JNZ 0x00192709 CMP qword ptr [R14 + 0x30],0x0 JNZ 0x00192709 ADD R14,0x40 MOV RBX,RSP MOV dword ptr [RBX],0x0 MOV RDI,R14 MOV RSI,RBX CALL 0x001927c2 MOV EAX,dword ptr [RBX] ADD RSP...
/* int minja::Value::get<int>() const */ int __thiscall minja::Value::get<int>(Value *this) { runtime_error *this_00; int local_58 [8]; int1 local_38 [32]; if (((*(long *)(this + 0x10) == 0) && (*(long *)(this + 0x20) == 0)) && (*(long *)(this + 0x30) == 0)) { local_58[0] = 0; _ZN8nlohmann16j...
8,411
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> minja::Value::get<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>() const
monkey531[P]llama/common/minja.hpp
T get() const { if (is_primitive()) return primitive_.get<T>(); throw std::runtime_error("get<T> not defined for this value type: " + dump()); }
O2
cpp
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> minja::Value::get<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>() const: pushq %rbp pushq %r14 pushq %rbx subq $0x40, %rsp movq %rdi, %r14 callq 0x63a28 testb %al, %al je 0x6bc5a addq $0x40, %r14 movq %r14, ...
_ZNK5minja5Value3getIiEET_v: push rbp push r14 push rbx sub rsp, 40h mov r14, rdi call _ZNK5minja5Value12is_primitiveEv; minja::Value::is_primitive(void) test al, al jz short loc_6BC5A add r14, 40h ; '@' mov rdi, r14 add rsp, 40h pop rbx pop r14 pop rbp jmp _ZNK8n...
long long minja::Value::get<int>(minja::Value *a1) { void *exception; // rbx _BYTE v3[32]; // [rsp+0h] [rbp-58h] BYREF _BYTE v4[56]; // [rsp+20h] [rbp-38h] BYREF if ( !minja::Value::is_primitive(a1) ) { exception = __cxa_allocate_exception(0x10uLL); minja::Value::dump[abi:cxx11]((long long)v3, (long...
get<int>: PUSH RBP PUSH R14 PUSH RBX SUB RSP,0x40 MOV R14,RDI CALL 0x00163a28 TEST AL,AL JZ 0x0016bc5a ADD R14,0x40 MOV RDI,R14 ADD RSP,0x40 POP RBX POP R14 POP RBP JMP 0x0016bd1e LAB_0016bc5a: PUSH 0x10 POP RDI CALL 0x00123450 MOV RBX,RAX LAB_0016bc65: MOV RDI,RSP PUSH -0x1 POP RDX MOV RSI,R14 XOR ECX,ECX CALL 0x00163...
/* int minja::Value::get<int>() const */ int __thiscall minja::Value::get<int>(Value *this) { runtime_error *this_00; char cVar1; int iVar2; int1 auStack_58 [32]; string local_38 [32]; cVar1 = is_primitive(this); if (cVar1 != '\0') { iVar2 = _ZNK8nlohmann16json_abi_v3_11_310basic_jsonINS0_11orde...
8,412
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> minja::Value::get<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>() const
monkey531[P]llama/common/minja.hpp
T get() const { if (is_primitive()) return primitive_.get<T>(); throw std::runtime_error("get<T> not defined for this value type: " + dump()); }
O3
cpp
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> minja::Value::get<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>() const: pushq %rbp pushq %r14 pushq %rbx subq $0x40, %rsp movq %rdi, %r14 cmpq $0x0, 0x10(%rdi) jne 0x87aa2 cmpq $0x0, 0x20(%r14) jne 0x87aa2 ...
_ZNK5minja5Value3getIbEET_v: push rbp push r14 push rbx sub rsp, 40h mov r14, rdi cmp qword ptr [rdi+10h], 0 jnz short loc_87AA2 cmp qword ptr [r14+20h], 0 jnz short loc_87AA2 cmp qword ptr [r14+30h], 0 jnz short loc_87AA2 add r14, 40h ; '@' lea rbx, [rsp+58h+var_38] mov...
char minja::Value::get<bool>(_QWORD *a1) { void *exception; // rbx _BYTE v3[16]; // [rsp+0h] [rbp-58h] BYREF _BYTE v4[16]; // [rsp+20h] [rbp-38h] BYREF if ( a1[2] || a1[4] || a1[6] ) { exception = __cxa_allocate_exception(0x10uLL); minja::Value::dump[abi:cxx11]((long long)v3, (long long)a1, 0xFFFFFF...
get<bool>: PUSH RBP PUSH R14 PUSH RBX SUB RSP,0x40 MOV R14,RDI CMP qword ptr [RDI + 0x10],0x0 JNZ 0x00187aa2 CMP qword ptr [R14 + 0x20],0x0 JNZ 0x00187aa2 CMP qword ptr [R14 + 0x30],0x0 JNZ 0x00187aa2 ADD R14,0x40 LEA RBX,[RSP + 0x20] MOV byte ptr [RBX],0x0 MOV RDI,R14 MOV RSI,RBX CALL 0x00187d15 MOV AL,byte ptr [RBX] ...
/* bool minja::Value::get<bool>() const */ bool __thiscall minja::Value::get<bool>(Value *this) { runtime_error *this_00; int1 auStack_58 [32]; string local_38 [32]; if (((*(long *)(this + 0x10) == 0) && (*(long *)(this + 0x20) == 0)) && (*(long *)(this + 0x30) == 0)) { local_38[0] = (string)0x0;...
8,413
find_set_from_flags
eloqsql/mysys/typelib.c
my_ulonglong find_set_from_flags(const TYPELIB *lib, uint default_name, my_ulonglong cur_set, my_ulonglong default_set, const char *str, uint length, char **err_pos, uint *err_len) { const char *end= str + length; my_ulonglong...
O0
c
find_set_from_flags: pushq %rbp movq %rsp, %rbp subq $0x80, %rsp movq 0x18(%rbp), %rax movq 0x10(%rbp), %rax movq %rdi, -0x8(%rbp) movl %esi, -0xc(%rbp) movq %rdx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq %r8, -0x28(%rbp) movl %r9d, -0x2c(%rbp) movq -0x28(%rbp), %rax movl -0x2c(%rbp), %ecx addq %rcx, %rax movq %rax, -0x...
find_set_from_flags: push rbp mov rbp, rsp sub rsp, 80h mov rax, [rbp+arg_8] mov rax, [rbp+arg_0] mov [rbp+var_8], rdi mov [rbp+var_C], esi mov [rbp+var_18], rdx mov [rbp+var_20], rcx mov [rbp+var_28], r8 mov [rbp+var_2C], r9d mov rax, [rbp+var_28] mov ecx, [rbp+var_2C...
long long find_set_from_flags( long long a1, int a2, long long a3, long long a4, _BYTE *a5, unsigned int a6, _QWORD *a7, _DWORD *a8) { _BYTE *v8; // rax _BYTE *v9; // rax long long v11; // [rsp+0h] [rbp-80h] long long v12; // [rsp+8h] [rbp-78h] ...
find_set_from_flags: PUSH RBP MOV RBP,RSP SUB RSP,0x80 MOV RAX,qword ptr [RBP + 0x18] MOV RAX,qword ptr [RBP + 0x10] MOV qword ptr [RBP + -0x8],RDI MOV dword ptr [RBP + -0xc],ESI MOV qword ptr [RBP + -0x18],RDX MOV qword ptr [RBP + -0x20],RCX MOV qword ptr [RBP + -0x28],R8 MOV dword ptr [RBP + -0x2c],R9D MOV RAX,qword ...
ulong find_set_from_flags(int8 param_1,int param_2,ulong param_3,ulong param_4,char *param_5, uint param_6,int8 *param_7,int *param_8) { char *pcVar1; int iVar2; ulong uVar3; ulong local_88; char *local_70; char *local_68; char local_59; ulong local_50; ulong local_48; cha...
8,414
JS_EvalThis
bluesky950520[P]quickjs/quickjs.c
JSValue JS_EvalThis(JSContext *ctx, JSValue this_obj, const char *input, size_t input_len, const char *filename, int eval_flags) { JSValue ret; assert((eval_flags & JS_EVAL_TYPE_MASK) == JS_EVAL_TYPE_GLOBAL || (eval_flags & JS_EVAL_TYPE_MASK) == JS_EVAL_TYPE_M...
O2
c
JS_EvalThis: pushq %rax movl 0x10(%rsp), %eax pushq $-0x1 pushq %rax callq 0x2d57d popq %rcx popq %rsi popq %rcx retq
JS_EvalThis: push rax mov eax, [rsp+8+arg_0] push 0FFFFFFFFFFFFFFFFh push rax call JS_EvalInternal pop rcx pop rsi pop rcx retn
long long JS_EvalThis(int a1, int a2, int a3, int a4, int a5, int a6, int a7) { return JS_EvalInternal(a1, a2, a3, a4, a5, a6, a7, -1); }
JS_EvalThis: PUSH RAX MOV EAX,dword ptr [RSP + 0x10] PUSH -0x1 PUSH RAX CALL 0x0012d57d POP RCX POP RSI POP RCX RET
void JS_EvalThis(void) { JS_EvalInternal(); return; }
8,415
alloc_tensor_range
monkey531[P]llama/ggml/src/ggml-alloc.c
static bool alloc_tensor_range(struct ggml_context * ctx, struct ggml_tensor * first, struct ggml_tensor * last, ggml_backend_buffer_type_t buft, size_t size, ggml_backend_buffer_t ** buffers, size_t * n_buffers) { ggml_backend_buffer_t buffer = ggml_backend_buft_alloc_buffer(buft, size); ...
O0
c
alloc_tensor_range: subq $0x78, %rsp movq 0x80(%rsp), %rax movq %rdi, 0x68(%rsp) movq %rsi, 0x60(%rsp) movq %rdx, 0x58(%rsp) movq %rcx, 0x50(%rsp) movq %r8, 0x48(%rsp) movq %r9, 0x40(%rsp) movq 0x50(%rsp), %rdi movq 0x48(%rsp), %rsi callq 0x41080 movq %rax, 0x38(%rsp) cmpq $0x0, 0x38(%rsp) jne 0x5c4ee movq $0x0, 0x30(%...
alloc_tensor_range: sub rsp, 78h mov rax, [rsp+78h+arg_0] mov [rsp+78h+var_10], rdi mov [rsp+78h+var_18], rsi mov [rsp+78h+var_20], rdx mov [rsp+78h+var_28], rcx mov [rsp+78h+var_30], r8 mov [rsp+78h+var_38], r9 mov rdi, [rsp+78h+var_28] mov rsi, [rsp+78h+var_30] call _ggml_ba...
char alloc_tensor_range( long long a1, _QWORD *a2, _QWORD *a3, long long a4, long long a5, long long *a6, unsigned long long *a7) { long long v8; // rax long long v9; // rdx long long v10; // rax unsigned long long v11; // rcx _QWORD *i; // [rsp+8h] [rb...
alloc_tensor_range: SUB RSP,0x78 MOV RAX,qword ptr [RSP + 0x80] MOV qword ptr [RSP + 0x68],RDI MOV qword ptr [RSP + 0x60],RSI MOV qword ptr [RSP + 0x58],RDX MOV qword ptr [RSP + 0x50],RCX MOV qword ptr [RSP + 0x48],R8 MOV qword ptr [RSP + 0x40],R9 MOV RDI,qword ptr [RSP + 0x50] MOV RSI,qword ptr [RSP + 0x48] CALL 0x001...
int1 alloc_tensor_range(int8 param_1,long param_2,long param_3,int8 param_4, int8 param_5,long *param_6,ulong *param_7) { long lVar1; ulong uVar2; void *pvVar3; long local_70; int1 local_68 [32]; ulong local_48; long local_40; long *local_38; int8 local_30; int8 local_28; long ...
8,416
common_log::set_file(char const*)
monkey531[P]llama/common/log.cpp
void set_file(const char * path) { pause(); if (file) { fclose(file); } if (path) { file = fopen(path, "w"); } else { file = nullptr; } resume(); }
O2
cpp
common_log::set_file(char const*): pushq %r14 pushq %rbx pushq %rax movq %rsi, %r14 movq %rdi, %rbx callq 0x7e318 movq 0x60(%rbx), %rdi testq %rdi, %rdi je 0x7e63f callq 0x227d0 testq %r14, %r14 je 0x7e655 leaq 0x1bb9c(%rip), %rsi # 0x9a1e7 movq %r14, %rdi callq 0x22940 jmp 0x7e657 xorl %eax, %eax movq %rax, 0x60(%...
_ZN10common_log8set_fileEPKc: push r14 push rbx push rax mov r14, rsi mov rbx, rdi call _ZN10common_log5pauseEv; common_log::pause(void) mov rdi, [rbx+60h] test rdi, rdi jz short loc_7E63F call _fclose loc_7E63F: test r14, r14 jz short loc_7E655 lea rsi, aGgmlThreadpool_1+...
long long common_log::set_file(common_log *this, const char *a2) { long long v3; // rdi long long v4; // rax common_log::pause(this); v3 = *((_QWORD *)this + 12); if ( v3 ) fclose(v3); if ( a2 ) v4 = fopen(a2, "w"); else v4 = 0LL; *((_QWORD *)this + 12) = v4; return common_log::resume(th...
set_file: PUSH R14 PUSH RBX PUSH RAX MOV R14,RSI MOV RBX,RDI CALL 0x0017e318 MOV RDI,qword ptr [RBX + 0x60] TEST RDI,RDI JZ 0x0017e63f CALL 0x001227d0 LAB_0017e63f: TEST R14,R14 JZ 0x0017e655 LEA RSI,[0x19a1e7] MOV RDI,R14 CALL 0x00122940 JMP 0x0017e657 LAB_0017e655: XOR EAX,EAX LAB_0017e657: MOV qword ptr [RBX + 0x60]...
/* common_log::set_file(char const*) */ void __thiscall common_log::set_file(common_log *this,char *param_1) { FILE *pFVar1; pause(this); if (*(FILE **)(this + 0x60) != (FILE *)0x0) { fclose(*(FILE **)(this + 0x60)); } if (param_1 == (char *)0x0) { pFVar1 = (FILE *)0x0; } else { pFVar1 =...
8,417
LefDefParser::lefiViaRule::propIsNumber(int) const
Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/lef/lef/lefiViaRule.cpp
int lefiViaRule::propIsNumber(int i) const { char msg[160]; if (i < 0 || i >= numProps_) { sprintf(msg, "ERROR (LEFPARS-1431): The index number %d given for the VIARULE PROPERTY is invalid.\nValid index is from 0 to %d", i, numProps_); lefiError(0, 1431, msg); return 0; } return ...
O3
cpp
LefDefParser::lefiViaRule::propIsNumber(int) const: pushq %r14 pushq %rbx subq $0xa8, %rsp movl %esi, %edx testl %esi, %esi setns %al movl 0x1d8(%rdi), %ecx cmpl %esi, %ecx setg %sil testb %sil, %al je 0x21e91 movq 0x1f0(%rdi), %rax movl %edx, %ecx xorpd %xmm0, %xmm0 cmpneqsd (%rax,%rcx,8), %xmm0 movq %xmm0, %rbx andl ...
_ZNK12LefDefParser11lefiViaRule12propIsNumberEi: push r14 push rbx sub rsp, 0A8h mov edx, esi test esi, esi setns al mov ecx, [rdi+1D8h] cmp ecx, esi setnle sil test al, sil jz short loc_21E91 mov rax, [rdi+1F0h] mov ecx, edx xorpd xmm0, xmm0 cmpneqsd xmm0, qword ptr [rax+r...
long long LefDefParser::lefiViaRule::propIsNumber(LefDefParser::lefiViaRule *this, signed int a2) { int v2; // ecx __m128d v3; // rt1 unsigned int v4; // ebx const char *v5; // rcx _BYTE v7[184]; // [rsp+0h] [rbp-B8h] BYREF v2 = *((_DWORD *)this + 118); if ( v2 > a2 && a2 >= 0 ) { v3.m128d_f64[0] ...
propIsNumber: PUSH R14 PUSH RBX SUB RSP,0xa8 MOV EDX,ESI TEST ESI,ESI SETNS AL MOV ECX,dword ptr [RDI + 0x1d8] CMP ECX,ESI SETG SIL TEST AL,SIL JZ 0x00121e91 MOV RAX,qword ptr [RDI + 0x1f0] MOV ECX,EDX XORPD XMM0,XMM0 CMPNEQSD XMM0,qword ptr [RAX + RCX*0x8] MOVQ RBX,XMM0 AND EBX,0x1 JMP 0x00121eb6 LAB_00121e91: LEA RSI...
/* LefDefParser::lefiViaRule::propIsNumber(int) const */ byte __thiscall LefDefParser::lefiViaRule::propIsNumber(lefiViaRule *this,int param_1) { byte bVar1; char acStack_b8 [168]; if (param_1 < 0 || *(int *)(this + 0x1d8) <= param_1) { bVar1 = 0; sprintf(acStack_b8, "ERROR (LEFPARS-1431...
8,418
psi_prlock_wrlock
eloqsql/mysys/my_thr_init.c
ATTRIBUTE_COLD int psi_prlock_wrlock(mysql_prlock_t *that, const char *file, uint line) { PSI_rwlock_locker_state state; PSI_rwlock_locker *locker= PSI_RWLOCK_CALL(start_rwlock_wrwait) (&state, that->m_psi, PSI_RWLOCK_WRITELOCK, file, line); int result= rw_pr_wrlock(&that->m_prlock); if (locker) PSI_RWL...
O3
c
psi_prlock_wrlock: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx subq $0x38, %rsp movl %edx, %r8d movq %rsi, %rcx movq %rdi, %r14 leaq 0x36091c(%rip), %r15 # 0x390b18 movq (%r15), %rax movq 0x68(%rdi), %rsi leaq -0x48(%rbp), %rdi pushq $0x1 popq %rdx callq *0x1b0(%rax) movq %rax, %rbx movq %r14, %rdi c...
psi_prlock_wrlock: push rbp mov rbp, rsp push r15 push r14 push rbx sub rsp, 38h mov r8d, edx mov rcx, rsi mov r14, rdi lea r15, PSI_server mov rax, [r15] mov rsi, [rdi+68h] lea rdi, [rbp+var_48] push 1 pop rdx call qword ptr [rax+1B0h] mov rbx, rax mov ...
long long psi_prlock_wrlock(long long a1, long long a2, unsigned int a3) { long long v3; // rbx unsigned int v4; // r14d _BYTE v6[72]; // [rsp+8h] [rbp-48h] BYREF v3 = ((long long ( *)(_BYTE *, _QWORD, long long, long long, _QWORD))PSI_server[54])( v6, *(_QWORD *)(a1 + 104), 1LL, ...
psi_prlock_wrlock: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x38 MOV R8D,EDX MOV RCX,RSI MOV R14,RDI LEA R15,[0x490b18] MOV RAX,qword ptr [R15] MOV RSI,qword ptr [RDI + 0x68] LEA RDI,[RBP + -0x48] PUSH 0x1 POP RDX CALL qword ptr [RAX + 0x1b0] MOV RBX,RAX MOV RDI,R14 CALL 0x001ab961 MOV R14D,EAX TEST RBX,...
int4 psi_prlock_wrlock(long param_1,int8 param_2,int4 param_3) { int4 uVar1; long lVar2; int1 local_50 [48]; lVar2 = (**(code **)(PSI_server + 0x1b0)) (local_50,*(int8 *)(param_1 + 0x68),1,param_2,param_3); uVar1 = rw_pr_wrlock(param_1); if (lVar2 != 0) { (**(code **)(PSI_server...
8,419
bitmap_set_next
eloqsql/mysys/my_bitmap.c
uint bitmap_set_next(MY_BITMAP *map) { uint bit_found; DBUG_ASSERT(map->bitmap); if ((bit_found= bitmap_get_first(map)) != MY_BIT_NONE) bitmap_set_bit(map, bit_found); return bit_found; }
O3
c
bitmap_set_next: pushq %rbp movq %rsp, %rbp pushq %rbx pushq %rax movq %rdi, %rbx callq 0x9f404 cmpl $-0x1, %eax je 0x9f3fd movq (%rbx), %rdx movl %eax, %esi movl %eax, %ecx andb $0x7, %cl movl $0x1, %edi shll %cl, %edi shrl $0x3, %esi orb %dil, (%rdx,%rsi) addq $0x8, %rsp popq %rbx popq %rbp retq
bitmap_set_next: push rbp mov rbp, rsp push rbx push rax mov rbx, rdi call bitmap_get_first cmp eax, 0FFFFFFFFh jz short loc_9F3FD mov rdx, [rbx] mov esi, eax mov ecx, eax and cl, 7 mov edi, 1 shl edi, cl shr esi, 3 or [rdx+rsi], dil loc_9F3FD: add rsp, ...
long long bitmap_set_next(_QWORD *a1) { long long result; // rax result = bitmap_get_first(a1); if ( (_DWORD)result != -1 ) *(_BYTE *)(*a1 + ((unsigned int)result >> 3)) |= 1 << (result & 7); return result; }
bitmap_set_next: PUSH RBP MOV RBP,RSP PUSH RBX PUSH RAX MOV RBX,RDI CALL 0x0019f404 CMP EAX,-0x1 JZ 0x0019f3fd MOV RDX,qword ptr [RBX] MOV ESI,EAX MOV ECX,EAX AND CL,0x7 MOV EDI,0x1 SHL EDI,CL SHR ESI,0x3 OR byte ptr [RDX + RSI*0x1],DIL LAB_0019f3fd: ADD RSP,0x8 POP RBX POP RBP RET
void bitmap_set_next(long *param_1) { byte *pbVar1; uint uVar2; uVar2 = bitmap_get_first(); if (uVar2 != 0xffffffff) { pbVar1 = (byte *)(*param_1 + (ulong)(uVar2 >> 3)); *pbVar1 = *pbVar1 | (byte)(1 << ((byte)uVar2 & 7)); } return; }
8,420
do_call
fabiosvm[P]rak/src/vm.c
static void do_call(RakVM *vm, RakChunk *chunk, uint32_t *ip, RakValue *slots, RakError *err) { uint8_t n = rak_instr_a(*ip); rak_vm_call(vm, n, err); if (!rak_is_ok(err)) return; dispatch(vm, chunk, ip + 1, slots, err); }
O2
c
do_call: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x18, %rsp movq %r8, %rbx movq %rcx, 0x10(%rsp) movq %rdx, %r15 movq %rsi, 0x8(%rsp) movq %rdi, %r13 movl (%rdx), %r12d movq 0x8(%rdi), %rbp movl %r12d, %eax shrl $0x4, %eax andl $0xff0, %eax # imm = 0xFF0 subq %rax, %rbp cmpl $...
do_call: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 18h mov rbx, r8 mov [rsp+48h+var_38], rcx mov r15, rdx mov [rsp+48h+var_40], rsi mov r13, rdi mov r12d, [rdx] mov rbp, [rdi+8] mov eax, r12d shr eax, 4 and eax, 0FF0h sub rbp, rax cm...
unsigned long long do_call( long long a1, long long a2, long long a3, long long a4, _BYTE *a5, long long a6, __m128 a7, __m128 a8, __m128 a9, __m128 a10, __m128 a11, __m128 a12, __m128 a13, __m128 a14) { u...
do_call: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x18 MOV RBX,R8 MOV qword ptr [RSP + 0x10],RCX MOV R15,RDX MOV qword ptr [RSP + 0x8],RSI MOV R13,RDI MOV R12D,dword ptr [RDX] MOV RBP,qword ptr [RDI + 0x8] MOV EAX,R12D SHR EAX,0x4 AND EAX,0xff0 SUB RBP,RAX CMP dword ptr [RBP],0x7 JNZ 0x00107f7b SHR...
void do_call(long param_1,int8 param_2,uint *param_3,int8 param_4,char *param_5) { uint uVar1; long lVar2; int iVar3; int iVar4; int iVar5; int *piVar6; int *piVar7; uint uVar8; piVar7 = (int *)(*(long *)(param_1 + 8) - (ulong)(*param_3 >> 4 & 0xff0)); if (*piVar7 == 7) { lVar2 = *(long *)(...
8,421
get_simple_key_cache_statistics
eloqsql/mysys/mf_keycache.c
static void get_simple_key_cache_statistics(SIMPLE_KEY_CACHE_CB *keycache, uint partition_no __attribute__((unused)), KEY_CACHE_STATISTICS *keycache_stats) { DBUG_ENTER("simple_get_key_cache_statistics"); keycache_stats->mem_size= (longlon...
O0
c
get_simple_key_cache_statistics: pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movl %esi, -0xc(%rbp) movq %rdx, -0x18(%rbp) movq -0x8(%rbp), %rax movq 0x8(%rax), %rcx movq -0x18(%rbp), %rax movq %rcx, (%rax) movq -0x8(%rbp), %rax movl 0x18(%rax), %eax movl %eax, %ecx movq -0x18(%rbp), %rax movq %rcx, 0x8(%rax) movq ...
get_simple_key_cache_statistics: push rbp mov rbp, rsp mov [rbp+var_8], rdi mov [rbp+var_C], esi mov [rbp+var_18], rdx mov rax, [rbp+var_8] mov rcx, [rax+8] mov rax, [rbp+var_18] mov [rax], rcx mov rax, [rbp+var_8] mov eax, [rax+18h] mov ecx, eax mov rax, [rbp+var_18] ...
_QWORD * get_simple_key_cache_statistics(long long a1, long long a2, _QWORD *a3) { _QWORD *result; // rax *a3 = *(_QWORD *)(a1 + 8); a3[1] = *(unsigned int *)(a1 + 24); a3[2] = *(_QWORD *)(a1 + 80); a3[3] = *(_QWORD *)(a1 + 88); a3[4] = *(_QWORD *)(a1 + 312); a3[5] = *(_QWORD *)(a1 + 104); a3[6] = *(_Q...
get_simple_key_cache_statistics: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x8],RDI MOV dword ptr [RBP + -0xc],ESI MOV qword ptr [RBP + -0x18],RDX MOV RAX,qword ptr [RBP + -0x8] MOV RCX,qword ptr [RAX + 0x8] MOV RAX,qword ptr [RBP + -0x18] MOV qword ptr [RAX],RCX MOV RAX,qword ptr [RBP + -0x8] MOV EAX,dword ptr [RAX +...
void get_simple_key_cache_statistics(long param_1,int8 param_2,int8 *param_3) { *param_3 = *(int8 *)(param_1 + 8); param_3[1] = (ulong)*(uint *)(param_1 + 0x18); param_3[2] = *(int8 *)(param_1 + 0x50); param_3[3] = *(int8 *)(param_1 + 0x58); param_3[4] = *(int8 *)(param_1 + 0x138); param_3[5] = *(int8 *)(...
8,422
myisam_log_record
eloqsql/storage/myisam/mi_log.c
void _myisam_log_record(enum myisam_log_commands command, MI_INFO *info, const uchar *record, my_off_t filepos, int result) { uchar buff[21],*pos; int error,old_errno; uint length; ulong pid=(ulong) GETPID(); old_errno=my_errno; if (!info->s->base.blobs) length=info->s->base.reclength; else le...
O3
c
myisam_log_record: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x88, %rsp movq %rdx, -0x58(%rbp) movq %rsi, %r14 movl %edi, %r15d movq %fs:0x28, %rax movq %rax, -0x30(%rbp) cmpl $0x1, 0xb8ff6b(%rip) # 0xc27f98 movq %rcx, -0x60(%rbp) movl %r8d, %r12d jne 0x9803f movq 0xb8ff...
_myisam_log_record: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 88h mov [rbp+var_58], rdx mov r14, rsi mov r15d, edi mov rax, fs:28h mov [rbp+var_30], rax cmp cs:log_type, 1 mov [rbp+var_60], rcx mov r12d, r8d jnz short loc_98...
unsigned long long myisam_log_record(long long a1, long long a2, long long a3, long long a4, __int16 a5) { int v6; // ebx long long v7; // rdx long long v8; // r13 __int16 v9; // kr00_2 unsigned int v10; // ebx long long v11; // rax unsigned int v12; // ebx long long v13; // r13 long long v14; // rax...
_myisam_log_record: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x88 MOV qword ptr [RBP + -0x58],RDX MOV R14,RSI MOV R15D,EDI MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x30],RAX CMP dword ptr [0x00d27f98],0x1 MOV qword ptr [RBP + -0x60],RCX MOV R12D,R8D JNZ 0x0019803f MOV RBX,qword...
void _myisam_log_record(int1 param_1,long *param_2,long param_3,int8 param_4, ulong param_5) { long *plVar1; int8 uVar2; int4 uVar3; int iVar4; int4 uVar5; int4 *puVar6; long lVar7; long lVar8; int iVar9; long *plVar10; long in_FS_OFFSET; int1 local_b8 [76]; int4 local...
8,423
nglog::ColoredWriteToStderrOrStdout(_IO_FILE*, nglog::LogSeverity, char const*, unsigned long)
ng-log[P]ng-log/src/logging.cc
static void ColoredWriteToStderrOrStdout(FILE* output, LogSeverity severity, const char* message, size_t len) { bool is_stdout = (output == stdout); const GLogColor color = (LogDestination::terminal_supports_color() && ((!is_stdout && FLAGS_colorlo...
O0
cpp
nglog::ColoredWriteToStderrOrStdout(_IO_FILE*, nglog::LogSeverity, char const*, unsigned long): pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rdi, -0x8(%rbp) movl %esi, -0xc(%rbp) movq %rdx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq -0x8(%rbp), %rax movq 0x5a0ee(%rip), %rcx # 0x6ff50 cmpq (%rcx), %rax sete %al an...
_ZN5nglogL28ColoredWriteToStderrOrStdoutEP8_IO_FILENS_11LogSeverityEPKcm: push rbp mov rbp, rsp sub rsp, 40h mov [rbp+var_8], rdi mov [rbp+var_C], esi mov [rbp+var_18], rdx mov [rbp+var_20], rcx mov rax, [rbp+var_8] mov rcx, cs:stdout_ptr cmp rax, [rcx] setz al and al, 1 mo...
long long nglog::ColoredWriteToStderrOrStdout( nglog::LogDestination *a1, unsigned int a2, long long a3, long long a4) { const char *AnsiColorCode; // rax unsigned int v6; // [rsp+14h] [rbp-2Ch] bool v7; // [rsp+1Fh] [rbp-21h] v7 = a1 == (nglog::LogDestination *)stdout; if ( ...
ColoredWriteToStderrOrStdout: PUSH RBP MOV RBP,RSP SUB RSP,0x40 MOV qword ptr [RBP + -0x8],RDI MOV dword ptr [RBP + -0xc],ESI MOV qword ptr [RBP + -0x18],RDX MOV qword ptr [RBP + -0x20],RCX MOV RAX,qword ptr [RBP + -0x8] MOV RCX,qword ptr [0x0016ff50] CMP RAX,qword ptr [RCX] SETZ AL AND AL,0x1 MOV byte ptr [RBP + -0x21...
/* nglog::ColoredWriteToStderrOrStdout(_IO_FILE*, nglog::LogSeverity, char const*, unsigned long) */ void nglog::ColoredWriteToStderrOrStdout (FILE *param_1,int4 param_2,void *param_3,size_t param_4) { FILE *pFVar1; byte *pbVar2; int8 uVar3; int local_34; pFVar1 = *(FILE **)PTR_stdout_001...
8,424
nglog::ColoredWriteToStderrOrStdout(_IO_FILE*, nglog::LogSeverity, char const*, unsigned long)
ng-log[P]ng-log/src/logging.cc
static void ColoredWriteToStderrOrStdout(FILE* output, LogSeverity severity, const char* message, size_t len) { bool is_stdout = (output == stdout); const GLogColor color = (LogDestination::terminal_supports_color() && ((!is_stdout && FLAGS_colorlo...
O1
cpp
nglog::ColoredWriteToStderrOrStdout(_IO_FILE*, nglog::LogSeverity, char const*, unsigned long): pushq %r15 pushq %r14 pushq %rbx movq %rcx, %r14 movq %rdx, %r15 movq %rdi, %rbx xorl %eax, %eax cmpb $0x1, 0x1f820(%rip) # 0x2fb90 jne 0x103ad movq 0x1eba7(%rip), %rcx # 0x2ef20 cmpq %rbx, (%rcx) je 0x1038c leaq 0x1...
_ZN5nglogL28ColoredWriteToStderrOrStdoutEP8_IO_FILENS_11LogSeverityEPKcm: push r15 push r14 push rbx mov r14, rcx mov r15, rdx mov rbx, rdi xor eax, eax cmp cs:_ZN5nglog14LogDestination24terminal_supports_color_E, 1; nglog::LogDestination::terminal_supports_color_ jnz short loc_103AD mo...
long long nglog::ColoredWriteToStderrOrStdout(long long a1, unsigned int a2, const char *a3, long long a4) { int v7; // eax const char *v8; // rdi long long v9; // rsi const char *v10; // rdx v7 = 0; if ( nglog::LogDestination::terminal_supports_color_ != 1 ) goto LABEL_8; if ( stdout == a1 ) { ...
ColoredWriteToStderrOrStdout: PUSH R15 PUSH R14 PUSH RBX MOV R14,RCX MOV R15,RDX MOV RBX,RDI XOR EAX,EAX CMP byte ptr [0x0012fb90],0x1 JNZ 0x001103ad MOV RCX,qword ptr [0x0012ef20] CMP qword ptr [RCX],RBX JZ 0x0011038c LEA RCX,[0x12f98e] CMP byte ptr [RCX],0x0 JNZ 0x00110398 JMP 0x001103ad LAB_0011038c: LEA RCX,[0x12f9...
/* nglog::ColoredWriteToStderrOrStdout(_IO_FILE*, nglog::LogSeverity, char const*, unsigned long) */ void nglog::ColoredWriteToStderrOrStdout(long param_1,uint param_2) { uint uVar1; uVar1 = 0; if (LogDestination::terminal_supports_color_ == '\x01') { uVar1 = 0; if (*(long *)PTR_stdout_0012ef20 == p...
8,425
nglog::ColoredWriteToStderrOrStdout(_IO_FILE*, nglog::LogSeverity, char const*, unsigned long)
ng-log[P]ng-log/src/logging.cc
static void ColoredWriteToStderrOrStdout(FILE* output, LogSeverity severity, const char* message, size_t len) { bool is_stdout = (output == stdout); const GLogColor color = (LogDestination::terminal_supports_color() && ((!is_stdout && FLAGS_colorlo...
O2
cpp
nglog::ColoredWriteToStderrOrStdout(_IO_FILE*, nglog::LogSeverity, char const*, unsigned long): pushq %r15 pushq %r14 pushq %r12 pushq %rbx pushq %rax movq %rcx, %r14 movq %rdx, %r15 movq %rdi, %rbx cmpb $0x1, 0x2020d(%rip) # 0x2dbf0 jne 0xda25 movq 0x1f554(%rip), %rax # 0x2cf40 cmpq %rbx, (%rax) je 0xd9ff leaq...
_ZN5nglogL28ColoredWriteToStderrOrStdoutEP8_IO_FILENS_11LogSeverityEPKcm: push r15 push r14 push r12 push rbx push rax mov r14, rcx mov r15, rdx mov rbx, rdi cmp cs:_ZN5nglog14LogDestination24terminal_supports_color_E, 1; nglog::LogDestination::terminal_supports_color_ jnz short loc_D...
long long nglog::ColoredWriteToStderrOrStdout(long long a1, int a2, const char *a3, long long a4) { const char *v7; // rdx const char *v8; // rdi long long v9; // rsi if ( nglog::LogDestination::terminal_supports_color_ != 1 ) goto LABEL_10; if ( stdout == a1 ) { if ( fLB::FLAGS_colorlogtostdout !...
ColoredWriteToStderrOrStdout: PUSH R15 PUSH R14 PUSH R12 PUSH RBX PUSH RAX MOV R14,RCX MOV R15,RDX MOV RBX,RDI CMP byte ptr [0x0012dbf0],0x1 JNZ 0x0010da25 MOV RAX,qword ptr [0x0012cf40] CMP qword ptr [RAX],RBX JZ 0x0010d9ff LEA RAX,[0x12d9ee] CMP byte ptr [RAX],0x0 JNZ 0x0010da0b JMP 0x0010da25 LAB_0010d9ff: LEA RAX,[...
/* nglog::ColoredWriteToStderrOrStdout(_IO_FILE*, nglog::LogSeverity, char const*, unsigned long) */ void nglog::ColoredWriteToStderrOrStdout (FILE *param_1,int param_2,int *param_3,size_t param_4) { char *pcVar1; size_t sStack_30; sStack_30 = param_4; if (LogDestination::terminal_supports_...
8,426
strxmov
eloqsql/strings/strxmov.c
char *strxmov(char *dst,const char *src, ...) { va_list pvar; va_start(pvar,src); while (src != NullS) { while ((*dst++ = *src++)) ; dst--; src = va_arg(pvar, char *); } va_end(pvar); *dst = 0; /* there might have been no sources! */ return dst; }
O0
c
strxmov: pushq %rbp movq %rsp, %rbp subq $0x80, %rsp testb %al, %al je 0x75d88 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, -...
strxmov: push rbp mov rbp, rsp sub rsp, 80h test al, al jz short loc_75D88 movaps [rbp+var_B0], xmm0 movaps [rbp+var_A0], xmm1 movaps [rbp+var_90], xmm2 movaps [rbp+var_80], xmm3 movaps [rbp+var_70], xmm4 movaps [rbp+var_60], xmm5 movaps [rbp+var_50], xmm6 movaps [rbp+var_40], xmm7 loc_75D88:...
_BYTE * strxmov( _BYTE *a1, _BYTE *a2, long long a3, long long a4, long long a5, long long a6, __m128 a7, __m128 a8, __m128 a9, __m128 a10, __m128 a11, __m128 a12, __m128 a13, __m128 a14, char a15) { ...
strxmov: PUSH RBP MOV RBP,RSP SUB RSP,0x80 TEST AL,AL JZ 0x00175d88 MOVAPS xmmword ptr [RBP + -0xb0],XMM0 MOVAPS xmmword ptr [RBP + -0xa0],XMM1 MOVAPS xmmword ptr [RBP + -0x90],XMM2 MOVAPS xmmword ptr [RBP + -0x80],XMM3 MOVAPS xmmword ptr [RBP + -0x70],XMM4 MOVAPS xmmword ptr [RBP + -0x60],XMM5 MOVAPS xmmword ptr [RBP ...
/* WARNING: Restarted to delay deadcode elimination for space: stack */ char * strxmov(char *param_1,char *param_2) { char cVar1; char *pcVar2; int8 *local_100; int8 local_e8 [22]; uint local_38; int8 *local_30; char *local_18; char *local_10; local_30 = (int8 *)&stack0x00000008; local_38 = 0x...
8,427
tbb::detail::r1::tcm_adaptor::tcm_adaptor()
aimrt_mujoco_sim/_deps/tbb-src/src/tbb/tcm_adaptor.cpp
tcm_adaptor::tcm_adaptor() { __TBB_ASSERT(tcm_connect, nullptr); tcm_client_id_t client_id{}; auto return_code = tcm_connect(renegotiation_callback, &client_id); if (return_code == TCM_RESULT_SUCCESS) { my_impl = make_cache_aligned_unique<tcm_adaptor_impl>(client_id); } }
O0
cpp
tbb::detail::r1::tcm_adaptor::tcm_adaptor(): subq $0x58, %rsp movq %fs:0x28, %rax movq %rax, 0x50(%rsp) movq %rdi, 0x38(%rsp) movq 0x38(%rsp), %rdi movq %rdi, 0x10(%rsp) callq 0x37a180 movq 0x10(%rsp), %rdi leaq 0x3c8c46(%rip), %rax # 0x7460e8 movq %rax, (%rdi) addq $0x10, %rdi movq %rdi, 0x18(%rsp) callq 0x37daa0 m...
_ZN3tbb6detail2r111tcm_adaptorC2Ev: sub rsp, 58h mov rax, fs:28h mov [rsp+58h+var_8], rax mov [rsp+58h+var_20], rdi mov rdi, [rsp+58h+var_20]; this mov [rsp+58h+var_48], rdi call _ZN3tbb6detail2r114permit_managerC2Ev; tbb::detail::r1::permit_manager::permit_manager(void) mov rdi, [rsp+58h...
unsigned long long tbb::detail::r1::tcm_adaptor::tcm_adaptor(tbb::detail::r1::tcm_adaptor *this) { _BYTE v2[8]; // [rsp+40h] [rbp-18h] BYREF _QWORD v3[2]; // [rsp+48h] [rbp-10h] BYREF v3[1] = __readfsqword(0x28u); tbb::detail::r1::permit_manager::permit_manager(this); *(_QWORD *)this = off_7460E8; std::un...
_Construct<std::__cxx11::sub_match<char_const*>,std::__cxx11::sub_match<char_const*>&>: MOV qword ptr [RSP + -0x8],RDI MOV qword ptr [RSP + -0x10],RSI MOV RAX,qword ptr [RSP + -0x8] MOV RCX,qword ptr [RSP + -0x10] MOV RDX,qword ptr [RCX] MOV qword ptr [RAX],RDX MOV RDX,qword ptr [RCX + 0x8] MOV qword ptr [RAX + 0x8],RD...
/* WARNING: Unknown calling convention -- yet parameter storage is locked */ /* void std::_Construct<std::__cxx11::sub_match<char const*>, std::__cxx11::sub_match<char const*>&>(std::__cxx11::sub_match<char const*>*, std::__cxx11::sub_match<char const*>&) */ void std::_Construct<std::__cxx11::sub_match<char_const*...
8,428
tbb::detail::r1::tcm_adaptor::tcm_adaptor()
aimrt_mujoco_sim/_deps/tbb-src/src/tbb/tcm_adaptor.cpp
tcm_adaptor::tcm_adaptor() { __TBB_ASSERT(tcm_connect, nullptr); tcm_client_id_t client_id{}; auto return_code = tcm_connect(renegotiation_callback, &client_id); if (return_code == TCM_RESULT_SUCCESS) { my_impl = make_cache_aligned_unique<tcm_adaptor_impl>(client_id); } }
O3
cpp
tbb::detail::r1::tcm_adaptor::tcm_adaptor(): pushq %r14 pushq %rbx subq $0x18, %rsp movq %rdi, %rbx movq %fs:0x28, %rax movq %rax, 0x10(%rsp) xorps %xmm0, %xmm0 movups %xmm0, 0x8(%rdi) leaq 0x17ecf0(%rip), %rax # 0x29ac68 movq %rax, (%rdi) addq $0x10, %rbx leaq 0x8(%rsp), %rsi movq $0x0, (%rsi) leaq -0x96(%rip), %rd...
_ZN3tbb6detail2r111tcm_adaptorC2Ev: push r14 push rbx sub rsp, 18h mov rbx, rdi mov rax, fs:28h mov [rsp+28h+var_18], rax xorps xmm0, xmm0 movups xmmword ptr [rdi+8], xmm0 lea rax, off_29AC68 mov [rdi], rax add rbx, 10h lea rsi, [rsp+28h+var_20]; unsigned __int64 mov qword p...
unsigned long long tbb::detail::r1::tcm_adaptor::tcm_adaptor(tbb::detail::r1::tcm_adaptor *this) { unsigned long long v1; // rdx long long v2; // rax unsigned long long v3; // rcx long long v5; // [rsp+0h] [rbp-28h] BYREF unsigned long long v6[4]; // [rsp+8h] [rbp-20h] BYREF v6[1] = __readfsqword(0x28u); ...
8,429
default_reporter
eloqsql/mysys/my_getopt.c
static void default_reporter(enum loglevel level, const char *format, ...) { va_list args; DBUG_ENTER("default_reporter"); va_start(args, format); if (level == WARNING_LEVEL) fprintf(stderr, "%s", "Warning: "); else if (level == INFORMATION_LEVEL) fprintf(stderr, "%s", "Info: "); vfprintf(stderr, f...
O0
c
default_reporter: pushq %rbp movq %rsp, %rbp subq $0xe0, %rsp testb %al, %al je 0x32518 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) mo...
default_reporter_0: push rbp mov rbp, rsp sub rsp, 0E0h test al, al jz short loc_32518 movaps [rbp+var_B0], xmm0 movaps [rbp+var_A0], xmm1 movaps [rbp+var_90], xmm2 movaps [rbp+var_80], xmm3 movaps [rbp+var_70], xmm4 movaps [rbp+var_60], xmm5 movaps [rbp+var_50], xmm6 movaps [rbp+var_40], xmm...
long long default_reporter_0(int a1, long long a2, ...) { va_list va; // [rsp+B0h] [rbp-30h] BYREF long long v4; // [rsp+D0h] [rbp-10h] int v5; // [rsp+DCh] [rbp-4h] va_start(va, a2); v5 = a1; v4 = a2; if ( a1 == 1 ) { fprintf(stderr, "%s", "Warning: "); } else if ( v5 == 2 ) { fprintf(st...
default_reporter: PUSH RBP MOV RBP,RSP SUB RSP,0xe0 TEST AL,AL JZ 0x00132518 MOVAPS xmmword ptr [RBP + -0xb0],XMM0 MOVAPS xmmword ptr [RBP + -0xa0],XMM1 MOVAPS xmmword ptr [RBP + -0x90],XMM2 MOVAPS xmmword ptr [RBP + -0x80],XMM3 MOVAPS xmmword ptr [RBP + -0x70],XMM4 MOVAPS xmmword ptr [RBP + -0x60],XMM5 MOVAPS xmmword ...
void default_reporter(int8 param_1,int8 param_2,int8 param_3,int8 param_4, int8 param_5,int8 param_6,int8 param_7,int8 param_8, int param_9,char *param_10,int8 param_11,int8 param_12, int8 param_13,int8 param_14) { char in_AL; int1 local_e8 [16]; in...
8,430
inline_mysql_file_close
eloqsql/include/mysql/psi/mysql_file.h
static inline int inline_mysql_file_close( #ifdef HAVE_PSI_FILE_INTERFACE const char *src_file, uint src_line, #endif File file, myf flags) { int result; #ifdef HAVE_PSI_FILE_INTERFACE struct PSI_file_locker *locker; PSI_file_locker_state state; locker= PSI_FILE_CALL(get_thread_file_descriptor_locker)(&stat...
O3
c
inline_mysql_file_close: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx subq $0x58, %rsp movl %esi, %ebx movl %edi, %r14d leaq 0x2f4ddc(%rip), %rax # 0x389050 movq (%rax), %rax leaq -0x68(%rbp), %rdi movl $0x4, %edx callq *0x158(%rax) testq %rax, %rax jne 0x9429f movl %ebx, %edi xorl %esi, %esi callq 0x...
inline_mysql_file_close_1: push rbp mov rbp, rsp push r15 push r14 push rbx sub rsp, 58h mov ebx, esi mov r14d, edi lea rax, PSI_server mov rax, [rax] lea rdi, [rbp+var_68] mov edx, 4 call qword ptr [rax+158h] test rax, rax jnz short loc_9429F mov edi, ebx xor ...
long long inline_mysql_file_close_1(unsigned int a1, long long a2) { long long v2; // rax _BYTE v4[76]; // [rsp+8h] [rbp-68h] BYREF unsigned int v5[7]; // [rsp+54h] [rbp-1Ch] BYREF v2 = ((long long ( *)(_BYTE *, long long, long long))PSI_server[43])(v4, a2, 4LL); if ( !v2 ) return my_close((unsigned int...
inline_mysql_file_close: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x58 MOV EBX,ESI MOV R14D,EDI LEA RAX,[0x489050] MOV RAX,qword ptr [RAX] LEA RDI,[RBP + -0x68] MOV EDX,0x4 CALL qword ptr [RAX + 0x158] TEST RAX,RAX JNZ 0x0019429f MOV EDI,EBX XOR ESI,ESI CALL 0x001a33d9 LAB_00194294: ADD RSP,0x58 POP RBX ...
ulong inline_mysql_file_close(int4 param_1,ulong param_2) { long lVar1; ulong uVar2; int1 local_70 [76]; uint local_24; lVar1 = (**(code **)(PSI_server + 0x158))(local_70,param_2,4); if (lVar1 == 0) { uVar2 = my_close(param_2 & 0xffffffff,0); } else { inline_mysql_file_close_cold_1(lVar1,pa...
8,431
my_set_error
eloqsql/libmariadb/libmariadb/mariadb_lib.c
void my_set_error(MYSQL *mysql, unsigned int error_nr, const char *sqlstate, const char *format, ...) { va_list ap; const char *errmsg; if (!format) { if (error_nr >= CR_MIN_ERROR && error_nr <= CR_MYSQL_LAST_ERROR) errmsg= ER(e...
O0
c
my_set_error: pushq %rbp movq %rsp, %rbp subq $0x110, %rsp # imm = 0x110 testb %al, %al je 0x9e64e movaps %xmm0, -0xd0(%rbp) movaps %xmm1, -0xc0(%rbp) movaps %xmm2, -0xb0(%rbp) movaps %xmm3, -0xa0(%rbp) movaps %xmm4, -0x90(%rbp) movaps %xmm5, -0x80(%rbp) movaps %xmm6, -0x70(%rbp) movaps %xmm7, -0x60(%rbp) mo...
my_set_error: push rbp mov rbp, rsp sub rsp, 110h test al, al jz short loc_9E64E movaps [rbp+var_D0], xmm0 movaps [rbp+var_C0], xmm1 movaps [rbp+var_B0], xmm2 movaps [rbp+var_A0], xmm3 movaps [rbp+var_90], xmm4 movaps [rbp+var_80], xmm5 movaps [rbp+var_70], xmm6 movaps [rbp+var_60], xmm7 loc_...
long long my_set_error(long long a1, unsigned int a2, long long a3, long long a4, ...) { long long v5; // [rsp+8h] [rbp-108h] char *v6; // [rsp+C8h] [rbp-48h] va_list va; // [rsp+D0h] [rbp-40h] BYREF long long v8; // [rsp+F0h] [rbp-20h] long long v9; // [rsp+F8h] [rbp-18h] unsigned int v10; // [rsp+104h] [r...
my_set_error: PUSH RBP MOV RBP,RSP SUB RSP,0x110 TEST AL,AL JZ 0x0019e64e MOVAPS xmmword ptr [RBP + -0xd0],XMM0 MOVAPS xmmword ptr [RBP + -0xc0],XMM1 MOVAPS xmmword ptr [RBP + -0xb0],XMM2 MOVAPS xmmword ptr [RBP + -0xa0],XMM3 MOVAPS xmmword ptr [RBP + -0x90],XMM4 MOVAPS xmmword ptr [RBP + -0x80],XMM5 MOVAPS xmmword ptr...
void my_set_error(int8 param_1,int8 param_2,int8 param_3,int8 param_4, int8 param_5,int8 param_6,int8 param_7,int8 param_8, long param_9,uint param_10,int8 param_11,char *param_12,int8 param_13, int8 param_14) { char in_AL; char *local_118; int1 local_108 [32];...
8,432
google::protobuf::MapValueConstRef::GetEnumValue() const
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/map_field.h
int GetEnumValue() const { TYPE_CHECK(FieldDescriptor::CPPTYPE_ENUM, "MapValueConstRef::GetEnumValue"); return *reinterpret_cast<int*>(data_); }
O3
c
google::protobuf::MapValueConstRef::GetEnumValue() const: pushq %r15 pushq %r14 pushq %rbx subq $0x40, %rsp movq %rdi, %rbx callq 0x98410 cmpl $0x8, %eax je 0x9cb33 leaq 0xcc446(%rip), %rdx # 0x168ec5 leaq 0x8(%rsp), %r14 movq %r14, %rdi movl $0x3, %esi movl $0x2dd, %ecx # imm = 0x2DD callq 0x857c2 leaq ...
_ZNK6google8protobuf16MapValueConstRef12GetEnumValueEv: push r15 push r14 push rbx sub rsp, 40h mov rbx, rdi call _ZNK6google8protobuf16MapValueConstRef4typeEv; google::protobuf::MapValueConstRef::type(void) cmp eax, 8 jz loc_9CB33 lea rdx, aWorkspaceLlm4b_22; "/workspace/llm4binary/git...
long long google::protobuf::MapValueConstRef::GetEnumValue(google::protobuf::MapValueConstRef *this) { long long v1; // rax long long v2; // rax long long v3; // rax long long v4; // rax long long v5; // rax long long v6; // rax long long v7; // r14 unsigned int v8; // eax google::protobuf::internal:...
GetEnumValue: PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x40 MOV RBX,RDI CALL 0x00198410 CMP EAX,0x8 JZ 0x0019cb33 LEA RDX,[0x268ec5] LEA R14,[RSP + 0x8] MOV RDI,R14 MOV ESI,0x3 MOV ECX,0x2dd CALL 0x001857c2 LAB_0019ca96: LEA RSI,[0x268f2a] MOV RDI,R14 CALL 0x001852c0 LEA RSI,[0x269546] MOV RDI,RAX CALL 0x001852c0 LEA RSI,[0x...
/* google::protobuf::MapValueConstRef::GetEnumValue() const */ int4 __thiscall google::protobuf::MapValueConstRef::GetEnumValue(MapValueConstRef *this) { int iVar1; uint uVar2; LogMessage *pLVar3; LogFinisher local_51; LogMessage local_50 [56]; iVar1 = type(this); if (iVar1 != 8) { internal::Log...
8,433
u32toa
bluesky950520[P]quickjs/cutils.c
size_t u32toa(char buf[minimum_length(11)], uint32_t n) { #ifdef USE_SINGLE_CASE_FAST /* 10% */ if (n < 10) { buf[0] = (char)('0' + n); buf[1] = '\0'; return 1; } #endif #define TEN_POW_7 10000000 if (n >= TEN_POW_7) { uint32_t quo = n / TEN_POW_7; n %= TEN_POW_7; ...
O0
c
u32toa: subq $0x28, %rsp movq %rdi, 0x18(%rsp) movl %esi, 0x14(%rsp) cmpl $0xa, 0x14(%rsp) jae 0x25a38 movl 0x14(%rsp), %eax addl $0x30, %eax movb %al, %cl movq 0x18(%rsp), %rax movb %cl, (%rax) movq 0x18(%rsp), %rax movb $0x0, 0x1(%rax) movq $0x1, 0x20(%rsp) jmp 0x25aa4 cmpl $0x989680, 0x14(%rsp) # imm = 0x989680 jb...
u32toa: sub rsp, 28h mov [rsp+28h+var_10], rdi mov [rsp+28h+var_14], esi cmp [rsp+28h+var_14], 0Ah jnb short loc_25A38 mov eax, [rsp+28h+var_14] add eax, 30h ; '0' mov cl, al mov rax, [rsp+28h+var_10] mov [rax], cl mov rax, [rsp+28h+var_10] mov byte ptr [rax+1], 0 mov ...
long long u32toa(_BYTE *a1, unsigned int a2) { long long v3; // [rsp+8h] [rbp-20h] if ( a2 >= 0xA ) { if ( a2 < 0x989680 ) { return u7toa_shift(a1, a2); } else { v3 = u7toa_shift(a1, a2 / 0x989680); return u07toa_shift(a1, a2 % 0x989680, v3); } } else { *a1 = ...
u32toa: SUB RSP,0x28 MOV qword ptr [RSP + 0x18],RDI MOV dword ptr [RSP + 0x14],ESI CMP dword ptr [RSP + 0x14],0xa JNC 0x00125a38 MOV EAX,dword ptr [RSP + 0x14] ADD EAX,0x30 MOV CL,AL MOV RAX,qword ptr [RSP + 0x18] MOV byte ptr [RAX],CL MOV RAX,qword ptr [RSP + 0x18] MOV byte ptr [RAX + 0x1],0x0 MOV qword ptr [RSP + 0x2...
int8 u32toa(char *param_1,uint param_2) { int8 uVar1; int8 local_8; if (param_2 < 10) { *param_1 = (char)param_2 + '0'; param_1[1] = '\0'; local_8 = 1; } else if (param_2 < 10000000) { local_8 = u7toa_shift(param_1,param_2); } else { uVar1 = u7toa_shift(param_1,param_2 / 10000000)...
8,434
u32toa
bluesky950520[P]quickjs/cutils.c
size_t u32toa(char buf[minimum_length(11)], uint32_t n) { #ifdef USE_SINGLE_CASE_FAST /* 10% */ if (n < 10) { buf[0] = (char)('0' + n); buf[1] = '\0'; return 1; } #endif #define TEN_POW_7 10000000 if (n >= TEN_POW_7) { uint32_t quo = n / TEN_POW_7; n %= TEN_POW_7; ...
O2
c
u32toa: pushq %rbp pushq %rbx pushq %rax movq %rdi, %rbx cmpl $0x9, %esi ja 0x1a052 orb $0x30, %sil movb %sil, (%rbx) movb $0x0, 0x1(%rbx) pushq $0x1 popq %rax addq $0x8, %rsp popq %rbx popq %rbp retq cmpl $0x989680, %esi # imm = 0x989680 jb 0x1a081 movl $0x989680, %ecx # imm = 0x989680 movl %esi, %eax ...
u32toa: push rbp push rbx push rax mov rbx, rdi cmp esi, 9 ja short loc_1A052 or sil, 30h mov [rbx], sil mov byte ptr [rbx+1], 0 push 1 pop rax add rsp, 8 pop rbx pop rbp retn loc_1A052: cmp esi, 989680h jb short loc_1A081 mov ecx, 989680h mov eax, ...
long long u32toa(_BYTE *a1, unsigned int a2) { long long v3; // rax if ( a2 > 9 ) { if ( a2 < 0x989680 ) { return u7toa_shift(a1); } else { v3 = u7toa_shift(a1); return u07toa_shift(a1, a2 % 0x989680, v3); } } else { *a1 = a2 | 0x30; a1[1] = 0; return ...
u32toa: PUSH RBP PUSH RBX PUSH RAX MOV RBX,RDI CMP ESI,0x9 JA 0x0011a052 OR SIL,0x30 MOV byte ptr [RBX],SIL MOV byte ptr [RBX + 0x1],0x0 PUSH 0x1 POP RAX ADD RSP,0x8 POP RBX POP RBP RET LAB_0011a052: CMP ESI,0x989680 JC 0x0011a081 MOV ECX,0x989680 MOV EAX,ESI XOR EDX,EDX DIV ECX MOV EBP,EDX MOV RDI,RBX MOV ESI,EAX CALL...
int8 u32toa(byte *param_1,uint param_2) { int8 uVar1; if (param_2 < 10) { *param_1 = (byte)param_2 | 0x30; param_1[1] = 0; return 1; } if (9999999 < param_2) { uVar1 = u7toa_shift(param_1,(ulong)param_2 / 10000000); uVar1 = u07toa_shift(param_1,(ulong)param_2 % 10000000,uVar1); retu...
8,435
ma_mark_file_crashed
eloqsql/storage/maria/ma_locking.c
void _ma_mark_file_crashed(MARIA_SHARE *share) { uchar buff[2]; DBUG_ENTER("_ma_mark_file_crashed"); share->state.changed|= STATE_CRASHED; if (share->no_status_updates) DBUG_VOID_RETURN; /* Safety */ mi_int2store(buff, share->state.changed); /* We can ignore the errors, ...
O0
c
ma_mark_file_crashed: pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax movl 0x170(%rax), %ecx orl $0x2, %ecx movl %ecx, 0x170(%rax) movq -0x8(%rbp), %rax cmpb $0x0, 0x7e1(%rax) je 0x47730 jmp 0x4772e jmp 0x47771 movq -0x8(%rbp), %rax movl 0x170(%rax), %eax movl %eax, -0x10(%rbp) m...
_ma_mark_file_crashed: push rbp mov rbp, rsp sub rsp, 10h mov [rbp+var_8], rdi mov rax, [rbp+var_8] mov ecx, [rax+170h] or ecx, 2 mov [rax+170h], ecx mov rax, [rbp+var_8] cmp byte ptr [rax+7E1h], 0 jz short loc_47730 jmp short $+2 loc_4772E: jmp short loc_47771 loc_4...
long long ma_mark_file_crashed(long long a1) { long long result; // rax __int16 v2; // kr00_2 _BYTE v3[2]; // [rsp+6h] [rbp-Ah] BYREF long long v4; // [rsp+8h] [rbp-8h] v4 = a1; *(_DWORD *)(a1 + 368) |= 2u; result = v4; if ( !*(_BYTE *)(v4 + 2017) ) { v2 = *(_DWORD *)(v4 + 368); v3[0] = HIBY...
_ma_mark_file_crashed: PUSH RBP MOV RBP,RSP SUB RSP,0x10 MOV qword ptr [RBP + -0x8],RDI MOV RAX,qword ptr [RBP + -0x8] MOV ECX,dword ptr [RAX + 0x170] OR ECX,0x2 MOV dword ptr [RAX + 0x170],ECX MOV RAX,qword ptr [RBP + -0x8] CMP byte ptr [RAX + 0x7e1],0x0 JZ 0x00147730 JMP 0x0014772e LAB_0014772e: JMP 0x00147771 LAB_00...
void _ma_mark_file_crashed(long param_1) { int4 uVar1; int8 in_R9; int1 local_12; int1 local_11; long local_10; *(uint *)(param_1 + 0x170) = *(uint *)(param_1 + 0x170) | 2; if (*(char *)(param_1 + 0x7e1) == '\0') { uVar1 = *(int4 *)(param_1 + 0x170); local_11 = (int1)uVar1; local_12 = (in...
8,436
my_copy_incomplete_char
eloqsql/strings/ctype-ucs2.c
static my_char_copy_status_t my_copy_incomplete_char(CHARSET_INFO *cs, char *dst, size_t dst_length, const char *src, size_t src_length, size_t nchars, my_bool fix) { size_t pad_length; size_t src_offset= src_length % cs->mbminlen; if (dst_le...
O0
c
my_copy_incomplete_char: pushq %rbp movq %rsp, %rbp subq $0x50, %rsp movb 0x10(%rbp), %al movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq %rcx, -0x28(%rbp) movq %r8, -0x30(%rbp) movq %r9, -0x38(%rbp) movq -0x30(%rbp), %rax movq -0x10(%rbp), %rcx movl 0x98(%rcx), %ecx xorl %edx, %edx divq %rcx ...
my_copy_incomplete_char: push rbp mov rbp, rsp sub rsp, 50h mov al, [rbp+arg_0] mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov [rbp+var_28], rcx mov [rbp+var_30], r8 mov [rbp+var_38], r9 mov rax, [rbp+var_30] mov rcx, [rbp+var_10] mov ecx, [rcx+9...
long long my_copy_incomplete_char( long long a1, long long a2, unsigned long long a3, long long a4, unsigned long long a5, long long a6, char a7) { unsigned long long v8; // [rsp+8h] [rbp-48h] unsigned long long v9; // [rsp+10h] [rbp-40h] v8 = a5 % *(unsig...
my_copy_incomplete_char: PUSH RBP MOV RBP,RSP SUB RSP,0x50 MOV AL,byte ptr [RBP + 0x10] MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV qword ptr [RBP + -0x20],RDX MOV qword ptr [RBP + -0x28],RCX MOV qword ptr [RBP + -0x30],R8 MOV qword ptr [RBP + -0x38],R9 MOV RAX,qword ptr [RBP + -0x30] MOV RCX,qw...
int4 my_copy_incomplete_char (long param_1,void *param_2,ulong param_3,void *param_4,ulong param_5,long param_6, char param_7) { int iVar1; size_t __n; int4 local_c; param_5 = param_5 % (ulong)*(uint *)(param_1 + 0x98); if ((param_3 < *(uint *)(param_1 + 0x98)) || (param_6 == 0)) { ...
8,437
JS_ThrowReferenceError
bluesky950520[P]quickjs/quickjs.c
JSValue __attribute__((format(printf, 2, 3))) JS_ThrowReferenceError(JSContext *ctx, const char *fmt, ...) { JSValue val; va_list ap; va_start(ap, fmt); val = JS_ThrowError(ctx, JS_REFERENCE_ERROR, fmt, ap); va_end(ap); return val; }
O1
c
JS_ThrowReferenceError: subq $0xd8, %rsp movq %rsi, %r10 leaq 0x20(%rsp), %rsi movq %rdx, 0x10(%rsi) movq %rcx, 0x18(%rsi) movq %r8, 0x20(%rsi) movq %r9, 0x28(%rsi) testb %al, %al je 0x21a43 movaps %xmm0, 0x50(%rsp) movaps %xmm1, 0x60(%rsp) movaps %xmm2, 0x70(%rsp) movaps %xmm3, 0x80(%rsp) movaps %xmm4, 0x90(%rsp) mova...
JS_ThrowReferenceError: sub rsp, 0D8h mov r10, rsi lea rsi, [rsp+0D8h+var_B8] mov [rsi+10h], rdx mov [rsi+18h], rcx mov [rsi+20h], r8 mov [rsi+28h], r9 test al, al jz short loc_21A43 movaps [rsp+0D8h+var_88], xmm0 movaps [rsp+0D8h+var_78], xmm1 movaps [rsp+0D8h+var_68], xmm2 movap...
long long JS_ThrowReferenceError( long long a1, long long a2, long long a3, long long a4, long long a5, long long a6, __m128 a7, __m128 a8, __m128 a9, __m128 a10, __m128 a11, __m128 a12, __m128 a13, __m128 a...
JS_ThrowReferenceError: SUB RSP,0xd8 MOV R10,RSI LEA RSI,[RSP + 0x20] MOV qword ptr [RSI + 0x10],RDX MOV qword ptr [RSI + 0x18],RCX MOV qword ptr [RSI + 0x20],R8 MOV qword ptr [RSI + 0x28],R9 TEST AL,AL JZ 0x00121a43 MOVAPS xmmword ptr [RSP + 0x50],XMM0 MOVAPS xmmword ptr [RSP + 0x60],XMM1 MOVAPS xmmword ptr [RSP + 0x7...
int1 [16] JS_ThrowReferenceError(int8 param_1,int8 param_2) { JS_ThrowError(param_1,2,param_2); return ZEXT816(6) << 0x40; }
8,438
JS_ThrowReferenceError
bluesky950520[P]quickjs/quickjs.c
JSValue __attribute__((format(printf, 2, 3))) JS_ThrowReferenceError(JSContext *ctx, const char *fmt, ...) { JSValue val; va_list ap; va_start(ap, fmt); val = JS_ThrowError(ctx, JS_REFERENCE_ERROR, fmt, ap); va_end(ap); return val; }
O2
c
JS_ThrowReferenceError: subq $0xd8, %rsp movq %rsi, %r10 leaq 0x20(%rsp), %rsi movq %rdx, 0x10(%rsi) movq %rcx, 0x18(%rsi) movq %r8, 0x20(%rsi) movq %r9, 0x28(%rsi) testb %al, %al je 0x1bbbd movaps %xmm0, 0x50(%rsp) movaps %xmm1, 0x60(%rsp) movaps %xmm2, 0x70(%rsp) movaps %xmm3, 0x80(%rsp) movaps %xmm4, 0x90(%rsp) mova...
JS_ThrowReferenceError: sub rsp, 0D8h mov r10, rsi lea rsi, [rsp+0D8h+var_B8] mov [rsi+10h], rdx mov [rsi+18h], rcx mov [rsi+20h], r8 mov [rsi+28h], r9 test al, al jz short loc_1BBBD movaps [rsp+0D8h+var_88], xmm0 movaps [rsp+0D8h+var_78], xmm1 movaps [rsp+0D8h+var_68], xmm2 movap...
long long JS_ThrowReferenceError( long long a1, long long a2, long long a3, long long a4, long long a5, long long a6, __m128 a7, __m128 a8, __m128 a9, __m128 a10, __m128 a11, __m128 a12, __m128 a13, __m128 a...
JS_ThrowReferenceError: SUB RSP,0xd8 MOV R10,RSI LEA RSI,[RSP + 0x20] MOV qword ptr [RSI + 0x10],RDX MOV qword ptr [RSI + 0x18],RCX MOV qword ptr [RSI + 0x20],R8 MOV qword ptr [RSI + 0x28],R9 TEST AL,AL JZ 0x0011bbbd MOVAPS xmmword ptr [RSP + 0x50],XMM0 MOVAPS xmmword ptr [RSP + 0x60],XMM1 MOVAPS xmmword ptr [RSP + 0x7...
int1 [16] JS_ThrowReferenceError(int8 param_1,int8 param_2) { JS_ThrowError(param_1,2,param_2); return ZEXT816(6) << 0x40; }
8,439
JS_ThrowReferenceError
bluesky950520[P]quickjs/quickjs.c
JSValue __attribute__((format(printf, 2, 3))) JS_ThrowReferenceError(JSContext *ctx, const char *fmt, ...) { JSValue val; va_list ap; va_start(ap, fmt); val = JS_ThrowError(ctx, JS_REFERENCE_ERROR, fmt, ap); va_end(ap); return val; }
O3
c
JS_ThrowReferenceError: subq $0xd8, %rsp movq %rsi, %r10 leaq 0x20(%rsp), %rsi movq %rdx, 0x10(%rsi) movq %rcx, 0x18(%rsi) movq %r8, 0x20(%rsi) movq %r9, 0x28(%rsi) testb %al, %al je 0x2223f movaps %xmm0, 0x50(%rsp) movaps %xmm1, 0x60(%rsp) movaps %xmm2, 0x70(%rsp) movaps %xmm3, 0x80(%rsp) movaps %xmm4, 0x90(%rsp) mova...
JS_ThrowReferenceError: sub rsp, 0D8h mov r10, rsi lea rsi, [rsp+0D8h+var_B8] mov [rsi+10h], rdx mov [rsi+18h], rcx mov [rsi+20h], r8 mov [rsi+28h], r9 test al, al jz short loc_2223F movaps [rsp+0D8h+var_88], xmm0 movaps [rsp+0D8h+var_78], xmm1 movaps [rsp+0D8h+var_68], xmm2 movap...
long long JS_ThrowReferenceError( long long a1, long long a2, long long a3, long long a4, long long a5, long long a6, __m128 a7, __m128 a8, __m128 a9, __m128 a10, __m128 a11, __m128 a12, __m128 a13, __m128 a...
JS_ThrowReferenceError: SUB RSP,0xd8 MOV R10,RSI LEA RSI,[RSP + 0x20] MOV qword ptr [RSI + 0x10],RDX MOV qword ptr [RSI + 0x18],RCX MOV qword ptr [RSI + 0x20],R8 MOV qword ptr [RSI + 0x28],R9 TEST AL,AL JZ 0x0012223f MOVAPS xmmword ptr [RSP + 0x50],XMM0 MOVAPS xmmword ptr [RSP + 0x60],XMM1 MOVAPS xmmword ptr [RSP + 0x7...
int1 [16] JS_ThrowReferenceError(int8 param_1,int8 param_2) { JS_ThrowError(param_1,2,param_2); return ZEXT816(6) << 0x40; }
8,440
OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement::populateEdgeFacesFromParentEdges()
NVIDIA-RTX[P]OSD-Lite/opensubdiv/vtr/triRefinement.cpp
void TriRefinement::populateEdgeFacesFromParentEdges() { for (Index pEdge = 0; pEdge < _parent->getNumEdges(); ++pEdge) { ConstIndexArray pEdgeChildEdges = getEdgeChildEdges(pEdge); if (!IndexIsValid(pEdgeChildEdges[0]) && !IndexIsValid(pEdgeChildEdges[1])) continue; ConstIndexArray p...
O1
cpp
OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement::populateEdgeFacesFromParentEdges(): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx movq %rdi, -0x40(%rsp) movq 0x8(%rdi), %rax movq %rax, -0x50(%rsp) cmpl $0x0, 0x4(%rax) jle 0x4bcd6 movq -0x40(%rsp), %rax movq 0xc0(%rax), %rax movq %rax, -0x18(%rsp) ...
_ZN10OpenSubdiv6v3_6_03Vtr8internal13TriRefinement32populateEdgeFacesFromParentEdgesEv: push rbp push r15 push r14 push r13 push r12 push rbx mov [rsp+30h+var_70], rdi mov rax, [rdi+8] mov [rsp+30h+var_80], rax cmp dword ptr [rax+4], 0 jle loc_4BCD6 mov rax, [rsp+30h+var_70] mo...
long long OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement::populateEdgeFacesFromParentEdges( OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement *this) { long long result; // rax long long v2; // rcx long long v3; // rax long long v4; // rdx long long v5; // rbx _DWORD *v6; // r9 long long v7; // r...
populateEdgeFacesFromParentEdges: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX MOV qword ptr [RSP + -0x40],RDI MOV RAX,qword ptr [RDI + 0x8] MOV qword ptr [RSP + -0x50],RAX CMP dword ptr [RAX + 0x4],0x0 JLE 0x0014bcd6 MOV RAX,qword ptr [RSP + -0x40] MOV RAX,qword ptr [RAX + 0xc0] MOV qword ptr [RSP + -0x18],RA...
/* OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement::populateEdgeFacesFromParentEdges() */ void __thiscall OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement::populateEdgeFacesFromParentEdges (TriRefinement *this) { int *piVar1; ushort uVar2; uint uVar3; int iVar4; long lVar5; long lVar6; long ...
8,441
OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement::populateEdgeFacesFromParentEdges()
NVIDIA-RTX[P]OSD-Lite/opensubdiv/vtr/triRefinement.cpp
void TriRefinement::populateEdgeFacesFromParentEdges() { for (Index pEdge = 0; pEdge < _parent->getNumEdges(); ++pEdge) { ConstIndexArray pEdgeChildEdges = getEdgeChildEdges(pEdge); if (!IndexIsValid(pEdgeChildEdges[0]) && !IndexIsValid(pEdgeChildEdges[1])) continue; ConstIndexArray p...
O3
cpp
OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement::populateEdgeFacesFromParentEdges(): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx movq %rdi, -0x40(%rsp) movq 0x8(%rdi), %rax movq %rax, -0x58(%rsp) movl 0x4(%rax), %ecx testl %ecx, %ecx jle 0x4e2ca movq -0x40(%rsp), %rax movq 0xc0(%rax), %rax movq %...
_ZN10OpenSubdiv6v3_6_03Vtr8internal13TriRefinement32populateEdgeFacesFromParentEdgesEv: push rbp push r15 push r14 push r13 push r12 push rbx mov [rsp+30h+var_70], rdi mov rax, [rdi+8] mov [rsp+30h+var_88], rax mov ecx, [rax+4] test ecx, ecx jle loc_4E2CA mov rax, [rsp+30h+v...
long long OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement::populateEdgeFacesFromParentEdges( OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement *this) { long long result; // rax int v2; // ecx long long i; // rdx _DWORD *v4; // rsi long long v5; // r9 long long v6; // rax long long v7; // rdx lo...
populateEdgeFacesFromParentEdges: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX MOV qword ptr [RSP + -0x40],RDI MOV RAX,qword ptr [RDI + 0x8] MOV qword ptr [RSP + -0x58],RAX MOV ECX,dword ptr [RAX + 0x4] TEST ECX,ECX JLE 0x0014e2ca MOV RAX,qword ptr [RSP + -0x40] MOV RAX,qword ptr [RAX + 0xc0] MOV qword ptr [RS...
/* OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement::populateEdgeFacesFromParentEdges() */ void __thiscall OpenSubdiv::v3_6_0::Vtr::internal::TriRefinement::populateEdgeFacesFromParentEdges (TriRefinement *this) { int *piVar1; ushort uVar2; uint uVar3; long lVar4; long lVar5; long lVar6; long...
8,442
stmt_unbuffered_fetch
eloqsql/libmariadb/libmariadb/mariadb_stmt.c
static int stmt_unbuffered_fetch(MYSQL_STMT *stmt, uchar **row) { ulong pkt_len; pkt_len= ma_net_safe_read(stmt->mysql); if (pkt_len == packet_error) { stmt->fetch_row_func= stmt_unbuffered_eof; return(1); } if (stmt->mysql->net.read_pos[0] == 254) { *row = NULL; stmt->fetch_row_func= s...
O0
c
stmt_unbuffered_fetch: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq -0x10(%rbp), %rax movq 0x38(%rax), %rdi callq 0x304c0 movq %rax, -0x20(%rbp) movl $0xffffffff, %eax # imm = 0xFFFFFFFF cmpq %rax, -0x20(%rbp) jne 0x40b57 movq -0x10(%rbp), %rax leaq 0x7069(%rip), ...
stmt_unbuffered_fetch: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov rax, [rbp+var_10] mov rdi, [rax+38h] call ma_net_safe_read mov [rbp+var_20], rax mov eax, 0FFFFFFFFh cmp [rbp+var_20], rax jnz short loc_40B57 mov rax, [rbp+var_10]...
long long stmt_unbuffered_fetch(long long *a1, _QWORD *a2, long long a3, long long a4, int a5, int a6) { if ( ma_net_safe_read(a1[7], (long long)a2, a3, a4, a5, a6) == 0xFFFFFFFFLL ) { a1[105] = (long long)stmt_unbuffered_eof; return 1; } else if ( **(unsigned __int8 **)(a1[7] + 32) == 254 ) { *a...
stmt_unbuffered_fetch: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV RAX,qword ptr [RBP + -0x10] MOV RDI,qword ptr [RAX + 0x38] CALL 0x001304c0 MOV qword ptr [RBP + -0x20],RAX MOV EAX,0xffffffff CMP qword ptr [RBP + -0x20],RAX JNZ 0x00140b57 MOV RAX,qword ptr [RBP...
int4 stmt_unbuffered_fetch(long param_1,int8 *param_2) { long lVar1; int4 local_c; lVar1 = ma_net_safe_read(*(int8 *)(param_1 + 0x38)); if (lVar1 == 0xffffffff) { *(code **)(param_1 + 0x348) = stmt_unbuffered_eof; local_c = 1; } else if (**(char **)(*(long *)(param_1 + 0x38) + 0x20) == -2) { ...
8,443
unreg_request
eloqsql/storage/maria/ma_pagecache.c
static void unreg_request(PAGECACHE *pagecache, PAGECACHE_BLOCK_LINK *block, int at_end) { DBUG_ENTER("unreg_request"); DBUG_PRINT("enter", ("block %p (%u) status: %x requests: %u", block, PCBLOCK_NUMBER(pagecache, block), block->status, block->requests));...
O0
c
unreg_request: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movl %edx, -0x14(%rbp) jmp 0x2d415 jmp 0x2d417 jmp 0x2d419 jmp 0x2d41b jmp 0x2d41d movq -0x10(%rbp), %rcx movl 0x60(%rcx), %eax addl $-0x1, %eax movl %eax, 0x60(%rcx) cmpl $0x0, %eax jne 0x2d574 movq -0x10(%rbp), %ra...
unreg_request: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_14], edx jmp short $+2 loc_2D415: jmp short $+2 loc_2D417: jmp short $+2 loc_2D419: jmp short $+2 loc_2D41B: jmp short $+2 loc_2D41D: mov rcx, [rbp+var_10] mov eax...
unsigned long long unreg_request(_QWORD *a1, long long a2, int a3) { unsigned long long result; // rax bool v4; // [rsp+Ah] [rbp-16h] unsigned long long v5; // [rsp+10h] [rbp-10h] result = (unsigned int)(*(_DWORD *)(a2 + 96) - 1); *(_DWORD *)(a2 + 96) = result; if ( !(_DWORD)result ) { if ( *(_DWORD...
unreg_request: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV dword ptr [RBP + -0x14],EDX JMP 0x0012d415 LAB_0012d415: JMP 0x0012d417 LAB_0012d417: JMP 0x0012d419 LAB_0012d419: JMP 0x0012d41b LAB_0012d41b: JMP 0x0012d41d LAB_0012d41d: MOV RCX,qword ptr [RBP + -0x10]...
void unreg_request(long param_1,long param_2,int param_3) { long lVar1; int iVar2; bool local_1e; iVar2 = *(int *)(param_2 + 0x60) + -1; *(int *)(param_2 + 0x60) = iVar2; if (iVar2 == 0) { if (*(int *)(param_2 + 0x80) != 0) { *(int *)(param_2 + 0x80) = *(int *)(param_2 + 0x80) + -1; } ...
8,444
nlohmann::json_abi_v3_11_3::detail::invalid_iterator nlohmann::json_abi_v3_11_3::detail::invalid_iterator::create<nlohmann::json_abi_v3_11_3::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...
zkingston[P]unknot/build_O1/_deps/json-src/include/nlohmann/detail/exceptions.hpp
static invalid_iterator create(int id_, const std::string& what_arg, BasicJsonContext context) { const std::string w = concat(exception::name("invalid_iterator", id_), exception::diagnostics(context), what_arg); return {id_, w.c_str()}; }
O1
cpp
nlohmann::json_abi_v3_11_3::detail::invalid_iterator nlohmann::json_abi_v3_11_3::detail::invalid_iterator::create<nlohmann::json_abi_v3_11_3::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...
_ZN8nlohmann16json_abi_v3_11_36detail16invalid_iterator6createIPNS0_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEETnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKSC_SJ_: push rbp push r15 push r14 push r13 p...
nlohmann::json_abi_v3_11_3::detail::exception * ZN8nlohmann16json_abi_v3_11_36detail16invalid_iterator6createIPNS0_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEETnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKSC_SJ_( ...
_ZN8nlohmann16json_abi_v3_11_36detail16invalid_iterator6createIPNS0_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEETnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKSC_SJ_: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH...
exception * _ZN8nlohmann16json_abi_v3_11_36detail16invalid_iterator6createIPNS0_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEETnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKSC_SJ_ (exception *param_1,int par...
8,445
GetGlyphAtlasRec
csit-sgu[P]mit-game-2025_1/Libraries/raylib/src/rtext.c
Rectangle GetGlyphAtlasRec(Font font, int codepoint) { Rectangle rec = { 0 }; rec = font.recs[GetGlyphIndex(font, codepoint)]; return rec; }
O3
c
GetGlyphAtlasRec: pushq %rbx movq 0x30(%rsp), %rax movq 0x38(%rsp), %rcx movslq 0x14(%rsp), %r8 xorl %edx, %edx movl $0x0, %esi testq %r8, %r8 jle 0x85849 xorl %r9d, %r9d movq %rcx, %r10 xorl %esi, %esi movl %esi, %r11d movl (%r10), %ebx cmpl $0x3f, %ebx movl %r9d, %esi cmovnel %r11d, %esi cmpl %edi, %ebx je 0x8583f in...
GetGlyphAtlasRec: push rbx mov rax, [rsp+8+arg_20] mov rcx, [rsp+8+arg_28] movsxd r8, [rsp+8+arg_4] xor edx, edx mov esi, 0 test r8, r8 jle short loc_85849 xor r9d, r9d mov r10, rcx xor esi, esi loc_8581D: mov r11d, esi mov ebx, [r10] cmp ebx, 3Fh ; '?' mov esi, r9...
double GetGlyphAtlasRec( int a1, long long a2, long long a3, long long a4, long long a5, long long a6, long long a7, int a8, int a9, int a10, long long a11, _DWORD *a12) { int v12; // esi long long v13; // r9 _DWORD *...
GetGlyphAtlasRec: PUSH RBX MOV RAX,qword ptr [RSP + 0x30] MOV RCX,qword ptr [RSP + 0x38] MOVSXD R8,dword ptr [RSP + 0x14] XOR EDX,EDX MOV ESI,0x0 TEST R8,R8 JLE 0x00185849 XOR R9D,R9D MOV R10,RCX XOR ESI,ESI LAB_0018581d: MOV R11D,ESI MOV EBX,dword ptr [R10] CMP EBX,0x3f MOV ESI,R9D CMOVNZ ESI,R11D CMP EBX,EDI JZ 0x001...
int1 [16] GetGlyphAtlasRec(int param_1) { int iVar1; int iVar2; int iVar3; long lVar4; int *piVar5; int1 auVar6 [16]; int8 in_stack_00000008; long in_stack_00000028; int *in_stack_00000030; iVar2 = 0; if (0 < (long)in_stack_00000008._4_4_) { lVar4 = 0; iVar2 = 0; piVar5 = in_stac...
8,446
minja::Value::dump_string(nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_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_3::adl_serializer, std::vector<unsigned char,...
monkey531[P]llama/common/minja.hpp
static void dump_string(const json & primitive, std::ostringstream & out, char string_quote = '\'') { if (!primitive.is_string()) throw std::runtime_error("Value is not a string: " + primitive.dump()); auto s = primitive.dump(); if (string_quote == '"' || s.find('\'') != std::string::npos) { out << s;...
O1
cpp
minja::Value::dump_string(nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_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_3::adl_serializer, std::vector<unsigned char,...
_ZN5minja5Value11dump_stringERKN8nlohmann16json_abi_v3_11_310basic_jsonINS2_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS2_14adl_serializerES5_IhSaIhEEvEERNS6_19basic_ostringstreamIcS9_SA_EEc: push rbp push r15 push r14 push r12 push rbx sub rsp, 40h mov r14,...
void minja::Value::dump_string(_BYTE *a1, long long a2, char a3) { unsigned long long v4; // r15 unsigned long long v5; // r12 char v6; // al long long v7; // rax void *exception; // rbx long long *v9; // [rsp+0h] [rbp-68h] BYREF long long v10; // [rsp+8h] [rbp-60h] long long v11; // [rsp+10h] [rbp-58h...
dump_string: PUSH RBP PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB RSP,0x40 MOV R14,RDI CMP byte ptr [RDI],0x3 JNZ 0x00189c5d MOV EBP,EDX MOV RBX,RSI MOV RDI,RSP MOV RSI,R14 MOV EDX,0xffffffff MOV ECX,0x20 XOR R8D,R8D XOR R9D,R9D CALL 0x0018228e CMP BPL,0x22 JZ 0x00189b5d MOV RDI,RSP MOV ESI,0x27 XOR EDX,EDX CALL 0x0011bb80...
/* minja::Value::dump_string(nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char> >, void> const...
8,447
testing::internal::DeathTest::Create(char const*, testing::Matcher<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&>, char const*, int, testing::internal::DeathTest**)
giladroyz[P]FindPeaks/build_O1/_deps/googletest-src/googletest/src/gtest-death-test.cc
bool DeathTest::Create(const char* statement, Matcher<const std::string&> matcher, const char* file, int line, DeathTest** test) { return GetUnitTestImpl()->death_test_factory()->Create( statement, std::move(matcher), file, line, test); }
O1
cpp
testing::internal::DeathTest::Create(char const*, testing::Matcher<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&>, char const*, int, testing::internal::DeathTest**): pushq %rbp pushq %r15 pushq %r14 pushq %r12 pushq %rbx subq $0x20, %rsp movq %r8, %rbx movl %ecx, %ebp movq %rdx, ...
_ZN7testing8internal9DeathTest6CreateEPKcNS_7MatcherIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEES3_iPPS1_: push rbp push r15 push r14 push r12 push rbx sub rsp, 20h mov rbx, r8 mov ebp, ecx mov r14, rdx mov r15, rsi mov r12, rdi call _ZN7testing8UnitTest11GetInstan...
long long testing::internal::DeathTest::Create( testing::UnitTest *a1, long long a2, long long a3, unsigned int a4, long long a5) { long long v9; // rdi _QWORD v11[8]; // [rsp+8h] [rbp-40h] BYREF testing::UnitTest::GetInstance(a1); v9 = *((_QWORD *)qword_597B0 + 86); ...
Create: PUSH RBP PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB RSP,0x20 MOV RBX,R8 MOV EBP,ECX MOV R14,RDX MOV R15,RSI MOV R12,RDI CALL 0x00119012 MOV RAX,qword ptr [0x001597b0] MOV RDI,qword ptr [RAX + 0x2b0] LEA RAX,[0x158a30] LEA RDX,[RSP + 0x8] MOV qword ptr [RDX],RAX MOV RAX,qword ptr [R15 + 0x8] MOV qword ptr [RDX + 0x...
/* testing::internal::DeathTest::Create(char const*, testing::Matcher<std::__cxx11::string const&>, char const*, int, testing::internal::DeathTest**) */ int4 testing::internal::DeathTest::Create (int8 param_1,long param_2,int8 param_3,int4 param_4,int8 param_5) { long *plVar1; int4 uVar2; int **lo...
8,448
glfwPlatformSetCursorMode
untodesu[P]riteg/build_O3/_deps/glfw-src/src/x11_window.c
void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode) { if (mode == GLFW_CURSOR_DISABLED) { if (_glfwPlatformWindowFocused(window)) disableCursor(window); } else if (_glfw.x11.disabledCursorWindow == window) enableCursor(window); else updateCursorImage(wi...
O3
c
glfwPlatformSetCursorMode: pushq %r14 pushq %rbx subq $0x18, %rsp movq %rdi, %rbx leaq 0x834f3(%rip), %rax # 0xa8638 cmpl $0x34003, %esi # imm = 0x34003 jne 0x2517c movq 0x1fec0(%rax), %rdi leaq 0x10(%rsp), %r14 leaq 0xc(%rsp), %rdx movq %r14, %rsi callq 0xcea0 movq 0x348(%rbx), %rax cmpq (%r14), %rax jne ...
_glfwPlatformSetCursorMode: push r14 push rbx sub rsp, 18h mov rbx, rdi lea rax, _glfw cmp esi, offset loc_34003 jnz short loc_2517C mov rdi, [rax+1FEC0h] lea r14, [rsp+28h+var_18] lea rdx, [rsp+28h+var_1C] mov rsi, r14 call _XGetInputFocus mov rax, [rbx+348h] cmp ra...
long long glfwPlatformSetCursorMode(long long a1, int a2) { _BYTE v3[4]; // [rsp+Ch] [rbp-1Ch] BYREF _QWORD v4[3]; // [rsp+10h] [rbp-18h] BYREF if ( a2 == (_DWORD)&loc_34003 ) { XGetInputFocus(*(_QWORD *)&glfw[32688], v4, v3); if ( *(_QWORD *)(a1 + 840) == v4[0] ) disableCursor(a1); } else i...
_glfwPlatformSetCursorMode: PUSH R14 PUSH RBX SUB RSP,0x18 MOV RBX,RDI LEA RAX,[0x1a8638] CMP ESI,0x34003 JNZ 0x0012517c MOV RDI,qword ptr [RAX + 0x1fec0] LEA R14,[RSP + 0x10] LEA RDX,[RSP + 0xc] MOV RSI,R14 CALL 0x0010cea0 MOV RAX,qword ptr [RBX + 0x348] CMP RAX,qword ptr [R14] JNZ 0x00125197 MOV RDI,RBX CALL 0x001251...
void _glfwPlatformSetCursorMode(long param_1,int param_2) { int1 local_1c [4]; long local_18; if (param_2 == 0x34003) { XGetInputFocus(DAT_001c84f8,&local_18,local_1c); if (*(long *)(param_1 + 0x348) == local_18) { disableCursor(param_1); } } else if (DAT_001c8a20 == param_1) { enab...
8,449
lunasvg::matchPseudoClassSelector(lunasvg::PseudoClassSelector const&, lunasvg::SVGElement const*)
dmazzella[P]pylunasvg/lunasvg/source/svgparser.cpp
static bool matchPseudoClassSelector(const PseudoClassSelector& selector, const SVGElement* element) { if(selector.type == PseudoClassSelector::Type::Empty) return element->children().empty(); if(selector.type == PseudoClassSelector::Type::Root) return element->isRootElement(); if(selector.t...
O0
cpp
lunasvg::matchPseudoClassSelector(lunasvg::PseudoClassSelector const&, lunasvg::SVGElement const*): pushq %rbp movq %rsp, %rbp subq $0xb0, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq -0x10(%rbp), %rax cmpl $0x1, (%rax) jne 0x3cc37 movq -0x18(%rbp), %rdi callq 0xe950 movq %rax, %rdi callq 0x1fd10 andb $0x1, ...
_ZN7lunasvgL24matchPseudoClassSelectorERKNS_19PseudoClassSelectorEPKNS_10SVGElementE: push rbp mov rbp, rsp sub rsp, 0B0h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov rax, [rbp+var_10] cmp dword ptr [rax], 1 jnz short loc_3CC37 mov rdi, [rbp+var_18] call _ZNK7lunasvg10SVGElement...
bool lunasvg::matchPseudoClassSelector( lunasvg *this, const lunasvg::PseudoClassSelector *a2, const lunasvg::SVGElement *a3) { _QWORD *v3; // rax const lunasvg::SVGElement *v4; // rdx const lunasvg::SVGElement *v5; // rdx char v7; // [rsp+5h] [rbp-ABh] char v8; // [rsp+6h] [rbp-AAh] ...
matchPseudoClassSelector: PUSH RBP MOV RBP,RSP SUB RSP,0xb0 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV RAX,qword ptr [RBP + -0x10] CMP dword ptr [RAX],0x1 JNZ 0x0013cc37 MOV RDI,qword ptr [RBP + -0x18] CALL 0x0010e950 MOV RDI,RAX CALL 0x0011fd10 AND AL,0x1 MOV byte ptr [RBP + -0x1],AL JMP 0x001...
/* lunasvg::matchPseudoClassSelector(lunasvg::PseudoClassSelector const&, lunasvg::SVGElement const*) */ byte lunasvg::matchPseudoClassSelector(PseudoClassSelector *param_1,SVGElement *param_2) { bool bVar1; char cVar2; char cVar3; list<std::unique_ptr<lunasvg::SVGNode,std::default_delete<lunasvg::SVGNode...
8,450
operator new(unsigned long)
ng-log[P]ng-log/src/googletest.h
void* operator new(size_t size) NGLOG_GLOG_THROW_BAD_ALLOC { void* p = ::operator new(size, std::nothrow); if (p == nullptr) { throw std::bad_alloc{}; } return p; }
O3
c
operator new(unsigned long): pushq %rax movq 0x27c08(%rip), %rsi # 0x30ef0 callq 0x92bd testq %rax, %rax je 0x92f4 popq %rcx retq movl $0x8, %edi callq 0x7240 movq 0x27c33(%rip), %rcx # 0x30f38 addq $0x10, %rcx movq %rcx, (%rax) movq 0x27c65(%rip), %rsi # 0x30f78 movq 0x27bf6(%rip), %rdx # 0x30f10 movq ...
_Znwm: push rax mov rsi, cs:_ZSt7nothrow_ptr; std::nothrow_t * call _ZnwmRKSt9nothrow_t; operator new(ulong,std::nothrow_t const&) test rax, rax jz short loc_92F4 pop rcx retn loc_92F4: mov edi, 8; thrown_size call ___cxa_allocate_exception mov rcx, cs:_ZTVSt9bad_alloc_ptr add rcx, ...
long long operator new(long long a1) { long long result; // rax _QWORD *exception; // rax result = operator new(a1, (const std::nothrow_t *)&std::nothrow); if ( !result ) { exception = __cxa_allocate_exception(8uLL); *exception = (char *)&`vtable for'std::bad_alloc + 16; __cxa_throw( excep...
operator.new: PUSH RAX MOV RSI,qword ptr [0x00130ef0] CALL 0x001092bd TEST RAX,RAX JZ 0x001092f4 POP RCX RET LAB_001092f4: MOV EDI,0x8 CALL 0x00107240 MOV RCX,qword ptr [0x00130f38] ADD RCX,0x10 MOV qword ptr [RAX],RCX MOV RSI,qword ptr [0x00130f78] MOV RDX,qword ptr [0x00130f10] MOV RDI,RAX CALL 0x00107920
/* operator new(unsigned long) */ void * operator_new(ulong param_1) { void *pvVar1; int8 *puVar2; pvVar1 = operator_new(param_1,(nothrow_t *)PTR_nothrow_00130ef0); if (pvVar1 != (void *)0x0) { return pvVar1; } puVar2 = (int8 *)__cxa_allocate_exception(8); *puVar2 = PTR_vtable_00130f38 + 0x10; ...
8,451
MeasureText
csit-sgu[P]mit-game-2025_1/Libraries/raylib/src/rtext.c
int MeasureText(const char *text, int fontSize) { Vector2 textSize = { 0.0f, 0.0f }; // Check if default font has been loaded if (GetFontDefault().texture.id != 0) { int defaultFontSize = 10; // Default Font chars height in pixel if (fontSize < defaultFontSize) fontSize = defaultFontS...
O0
c
MeasureText: pushq %rbp movq %rsp, %rbp subq $0xc0, %rsp movq %rdi, -0x8(%rbp) movl %esi, -0xc(%rbp) leaq -0x14(%rbp), %rdi xorl %esi, %esi movl $0x8, %edx callq 0xa2d0 leaq -0x48(%rbp), %rdi callq 0xe1500 cmpl $0x0, -0x3c(%rbp) je 0xe685b movl $0xa, -0x4c(%rbp) movl -0xc(%rbp), %eax cmpl -0x4c(%rbp), %eax jge 0xe6806 ...
MeasureText: push rbp mov rbp, rsp sub rsp, 0C0h mov [rbp+var_8], rdi mov [rbp+var_C], esi lea rdi, [rbp+var_14] xor esi, esi mov edx, 8 call _memset lea rdi, [rbp+var_48] call GetFontDefault cmp [rbp+var_3C], 0 jz short loc_E685B mov [rbp+var_4C], 0Ah mov eax, ...
long long MeasureText(long long a1, int a2) { int v2; // edx int v3; // ecx int v4; // r8d int v5; // r9d __int128 v7; // [rsp+38h] [rbp-88h] BYREF double v8; // [rsp+68h] [rbp-58h] int v9; // [rsp+70h] [rbp-50h] int v10; // [rsp+74h] [rbp-4Ch] _BYTE v11[12]; // [rsp+78h] [rbp-48h] BYREF int v12; /...
MeasureText: PUSH RBP MOV RBP,RSP SUB RSP,0xc0 MOV qword ptr [RBP + -0x8],RDI MOV dword ptr [RBP + -0xc],ESI LEA RDI,[RBP + -0x14] XOR ESI,ESI MOV EDX,0x8 CALL 0x0010a2d0 LEA RDI,[RBP + -0x48] CALL 0x001e1500 CMP dword ptr [RBP + -0x3c],0x0 JZ 0x001e685b MOV dword ptr [RBP + -0x4c],0xa MOV EAX,dword ptr [RBP + -0xc] CM...
int MeasureText(int8 param_1,int param_2) { int1 local_90 [56]; int local_58; int4 local_54; int1 local_50 [12]; int local_44; float local_1c [2]; int local_14; int8 local_10; local_14 = param_2; local_10 = param_1; memset(local_1c,0,8); GetFontDefault(local_50); if (local_44 != 0) { ...
8,452
MeasureText
csit-sgu[P]mit-game-2025_1/Libraries/raylib/src/rtext.c
int MeasureText(const char *text, int fontSize) { Vector2 textSize = { 0.0f, 0.0f }; // Check if default font has been loaded if (GetFontDefault().texture.id != 0) { int defaultFontSize = 10; // Default Font chars height in pixel if (fontSize < defaultFontSize) fontSize = defaultFontS...
O3
c
MeasureText: cmpl $0x0, 0xbc3cf(%rip) # 0x14190c je 0x8558f subq $0x38, %rsp cmpl $0xb, %esi movl $0xa, %eax cmovgel %esi, %eax imulq $0x66666667, %rax, %rcx # imm = 0x66666667 cvtsi2ss %eax, %xmm0 shrq $0x22, %rcx cvtsi2ss %ecx, %xmm1 movups 0xbc3b8(%rip), %xmm2 # 0x141920 movups %xmm2, 0x20(%rsp) movups 0xbc39...
MeasureText: cmp dword ptr cs:defaultFont+0Ch, 0 jz short loc_8558F sub rsp, 38h cmp esi, 0Bh mov eax, 0Ah cmovge eax, esi imul rcx, rax, 66666667h cvtsi2ss xmm0, eax shr rcx, 22h cvtsi2ss xmm1, ecx movups xmm2, cs:xmmword_141920 movups [rsp+38h+var_18], xmm2 movups xmm2, cs:xmmword_1419...
long long MeasureText(int a1, int a2, int a3, long long a4, int a5, int a6) { long long v6; // rax float v7; // xmm0_4 if ( HIDWORD(defaultFont) ) { v6 = 10LL; if ( a2 >= 11 ) v6 = (unsigned int)a2; v7 = (float)(int)v6; MeasureTextEx( a1, a2, a3, (unsigned int)((u...
MeasureText: CMP dword ptr [0x0024190c],0x0 JZ 0x0018558f SUB RSP,0x38 CMP ESI,0xb MOV EAX,0xa CMOVGE EAX,ESI IMUL RCX,RAX,0x66666667 CVTSI2SS XMM0,EAX SHR RCX,0x22 CVTSI2SS XMM1,ECX MOVUPS XMM2,xmmword ptr [0x00241920] MOVUPS xmmword ptr [RSP + 0x20],XMM2 MOVUPS XMM2,xmmword ptr [0x00241910] MOVUPS xmmword ptr [RSP + ...
int8 MeasureText(int8 param_1,uint param_2) { int8 in_RAX; int4 uVar2; ulong uVar1; int4 extraout_var; float fVar3; uVar2 = (int4)((ulong)in_RAX >> 0x20); if (defaultFont._12_4_ == 0) { fVar3 = 0.0; } else { uVar1 = 10; if (10 < (int)param_2) { uVar1 = (ulong)param_2; } ...
8,453
wait_for_lock
eloqsql/mysys/thr_lock.c
static enum enum_thr_lock_result wait_for_lock(struct st_lock_list *wait, THR_LOCK_DATA *data, my_bool in_wait_list, ulong lock_wait_timeout) { struct st_my_thread_var *thread_var= my_thread_var; mysql_cond_t *cond= &thread_var->suspend; struct timespec wait_timeout; enum enum_thr_lock_result resu...
O0
c
wait_for_lock: pushq %rbp movq %rsp, %rbp subq $0x90, %rsp movb %dl, %al movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movb %al, -0x11(%rbp) movq %rcx, -0x20(%rbp) callq 0xc0d80 movq %rax, -0x28(%rbp) movq -0x28(%rbp), %rax addq $0x8, %rax movq %rax, -0x30(%rbp) movl $0x1, -0x44(%rbp) movb $0x0, -0x61(%rbp) jmp 0xc377e ...
wait_for_lock: push rbp mov rbp, rsp sub rsp, 90h mov al, dl mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_11], al mov [rbp+var_20], rcx call _my_thread_var mov [rbp+var_28], rax mov rax, [rbp+var_28] add rax, 8 mov [rbp+var_30], rax mov [rbp+var_44], 1 mo...
long long wait_for_lock(long long a1, const char *a2, char a3, long long a4) { long long v4; // rax bool v6; // [rsp+13h] [rbp-7Dh] int v7; // [rsp+14h] [rbp-7Ch] unsigned long long v8; // [rsp+20h] [rbp-70h] char v9; // [rsp+2Fh] [rbp-61h] unsigned int v10; // [rsp+4Ch] [rbp-44h] _QWORD v11[2]; // [rsp+...
wait_for_lock: PUSH RBP MOV RBP,RSP SUB RSP,0x90 MOV AL,DL MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV byte ptr [RBP + -0x11],AL MOV qword ptr [RBP + -0x20],RCX CALL 0x001c0d80 MOV qword ptr [RBP + -0x28],RAX MOV RAX,qword ptr [RBP + -0x28] ADD RAX,0x8 MOV qword ptr [RBP + -0x30],RAX MOV dword pt...
int4 wait_for_lock(long param_1,long param_2,char param_3,long param_4) { char cVar1; int iVar2; long lVar3; ulong uVar4; ulong extraout_RDX; ulong extraout_RDX_00; bool bVar5; int1 local_68 [28]; int4 local_4c; ulong local_48; ulong local_40; long local_38; long local_30; long local_28; ...
8,454
testing::internal::StreamingListener::AbstractSocketWriter::SendLn(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
giladroyz[P]FindPeaks/build_O1/_deps/googletest-src/googletest/src/gtest-internal-inl.h
void SendLn(const std::string& message) { Send(message + "\n"); }
O1
c
testing::internal::StreamingListener::AbstractSocketWriter::SendLn(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&): pushq %r15 pushq %r14 pushq %rbx subq $0x20, %rsp movq %rdi, %rbx leaq 0x10(%rsp), %r15 movq %r15, -0x10(%r15) movq (%rsi), %rax movq 0x8(%rsi), %rdx addq %rax, %rdx...
_ZN7testing8internal17StreamingListener20AbstractSocketWriter6SendLnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: push r15 push r14 push rbx sub rsp, 20h mov rbx, rdi lea r15, [rsp+38h+var_28] mov [r15-10h], r15 mov rax, [rsi] mov rdx, [rsi+8] add rdx, rax mov r14, rs...
void testing::internal::StreamingListener::AbstractSocketWriter::SendLn(long long a1, _QWORD *a2) { void *v2[2]; // [rsp+0h] [rbp-38h] BYREF _QWORD v3[5]; // [rsp+10h] [rbp-28h] BYREF v2[0] = v3; std::string::_M_construct<char *>(v2, *a2, *a2 + a2[1]); std::string::append(v2, "\n"); (*(void ( **)(long lon...
SendLn: PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x20 MOV RBX,RDI LEA R15,[RSP + 0x10] MOV qword ptr [R15 + -0x10],R15 MOV RAX,qword ptr [RSI] MOV RDX,qword ptr [RSI + 0x8] ADD RDX,RAX MOV R14,RSP MOV RDI,R14 MOV RSI,RAX CALL 0x00139594 LAB_0013944f: LEA RSI,[0x1432dd] MOV RDI,R14 CALL 0x00108a50 MOV RAX,qword ptr [RBX] LAB_...
/* testing::internal::StreamingListener::AbstractSocketWriter::SendLn(std::__cxx11::string const&) */ void __thiscall testing::internal::StreamingListener::AbstractSocketWriter::SendLn (AbstractSocketWriter *this,string *param_1) { long *local_38 [2]; long local_28 [2]; local_38[0] = local_28;...
8,455
my_8bit_charset_flags_from_data
eloqsql/strings/ctype-simple.c
uint my_8bit_charset_flags_from_data(CHARSET_INFO *cs) { uint flags= 0; if (my_charset_is_8bit_pure_ascii(cs)) flags|= MY_CS_PUREASCII; if (!my_charset_is_ascii_compatible(cs)) flags|= MY_CS_NONASCII; return flags; }
O0
c
my_8bit_charset_flags_from_data: pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movl $0x0, -0xc(%rbp) movq -0x8(%rbp), %rdi callq 0x94ee0 cmpb $0x0, %al je 0x94ebb movl -0xc(%rbp), %eax orl $0x1000, %eax # imm = 0x1000 movl %eax, -0xc(%rbp) movq -0x8(%rbp), %rdi callq 0x94f40 cmpb $0x0, %al...
my_8bit_charset_flags_from_data: push rbp mov rbp, rsp sub rsp, 10h mov [rbp+var_8], rdi mov [rbp+var_C], 0 mov rdi, [rbp+var_8] call my_charset_is_8bit_pure_ascii cmp al, 0 jz short loc_94EBB mov eax, [rbp+var_C] or eax, 1000h mov [rbp+var_C], eax loc_94EBB: mov rdi,...
long long my_8bit_charset_flags_from_data(long long a1) { unsigned int v2; // [rsp+4h] [rbp-Ch] v2 = 0; if ( (unsigned __int8)my_charset_is_8bit_pure_ascii(a1) ) v2 = 4096; if ( !(unsigned __int8)my_charset_is_ascii_compatible(a1) ) v2 |= 0x2000u; return v2; }
my_8bit_charset_flags_from_data: PUSH RBP MOV RBP,RSP SUB RSP,0x10 MOV qword ptr [RBP + -0x8],RDI MOV dword ptr [RBP + -0xc],0x0 MOV RDI,qword ptr [RBP + -0x8] CALL 0x00194ee0 CMP AL,0x0 JZ 0x00194ebb MOV EAX,dword ptr [RBP + -0xc] OR EAX,0x1000 MOV dword ptr [RBP + -0xc],EAX LAB_00194ebb: MOV RDI,qword ptr [RBP + -0x8...
uint my_8bit_charset_flags_from_data(int8 param_1) { char cVar1; int4 local_14; local_14 = 0; cVar1 = my_charset_is_8bit_pure_ascii(param_1); if (cVar1 != '\0') { local_14 = 0x1000; } cVar1 = my_charset_is_ascii_compatible(param_1); if (cVar1 == '\0') { local_14 = local_14 | 0x2000; } r...
8,456
ma_mmap_pwrite
eloqsql/storage/maria/ma_dynrec.c
size_t _ma_mmap_pwrite(MARIA_HA *info, const uchar *Buffer, size_t Count, my_off_t offset, myf MyFlags) { DBUG_PRINT("info", ("maria_write with mmap %d\n", info->dfile.file)); if (info->s->lock_key_trees) mysql_rwlock_rdlock(&info->s->mmap_lock); /* The following test may fail in the following c...
O3
c
ma_mmap_pwrite: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movq %r8, %r12 movq %rcx, %r14 movq %rdx, %rbx movq %rsi, %r13 movq %rdi, %r15 movq (%rdi), %rax cmpb $0x0, 0x7e3(%rax) je 0x6738c leaq 0xb78(%rax), %rdi cmpq $0x0, 0xc08(%rax) jne 0x67448 callq 0xc3d84 movq (%r...
_ma_mmap_pwrite: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx push rax mov r12, r8 mov r14, rcx mov rbx, rdx mov r13, rsi mov r15, rdi mov rax, [rdi] cmp byte ptr [rax+7E3h], 0 jz short loc_6738C lea rdi, [rax+0B78h] cmp qword ptr [...
long long ma_mmap_pwrite(unsigned int *a1, long long a2, long long a3, long long a4, long long a5) { long long v9; // rax long long v10; // rdi long long v11; // rax long long v12; // r12 long long v13; // rdi long long v14; // r12 long long v16; // rbx long long v17; // rdi long long v18; // rbx l...
_ma_mmap_pwrite: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX MOV R12,R8 MOV R14,RCX MOV RBX,RDX MOV R13,RSI MOV R15,RDI MOV RAX,qword ptr [RDI] CMP byte ptr [RAX + 0x7e3],0x0 JZ 0x0016738c LEA RDI,[RAX + 0xb78] CMP qword ptr [RAX + 0xc08],0x0 JNZ 0x00167448 CALL 0x001c3d84 LAB_0016738c: M...
int8 _ma_mmap_pwrite(long *param_1,void *param_2,size_t param_3,long param_4,int8 param_5) { long lVar1; int8 uVar2; lVar1 = *param_1; if (*(char *)(lVar1 + 0x7e3) != '\0') { if (*(long *)(lVar1 + 0xc08) == 0) { my_rw_rdlock(); } else { psi_rwlock_rdlock(lVar1 + 0xb78, ...
8,457
testing::internal::SuiteApiResolver<testing::internal::(anonymous namespace)::FailureTest>::GetTearDownCaseOrSuite(char const*, int)
AlayaLite/build_O0/_deps/googletest-src/googletest/include/gtest/internal/gtest-internal.h
static SetUpTearDownSuiteFuncType GetTearDownCaseOrSuite(const char* filename, int line_num) { #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ SetUpTearDownSuiteFuncType test_case_fp = GetNotDefaultOrNull(&T::TearDownTestCase, &Test::TearDownTestCase); ...
O0
c
testing::internal::SuiteApiResolver<testing::internal::(anonymous namespace)::FailureTest>::GetTearDownCaseOrSuite(char const*, int): subq $0x68, %rsp movq %rdi, 0x60(%rsp) movl %esi, 0x5c(%rsp) leaq -0x30e84(%rip), %rsi # 0x107e0 movq %rsi, %rdi callq 0x10780 movq %rax, 0x50(%rsp) leaq -0x30e88(%rip), %rsi # 0x1...
_ZN7testing8internal16SuiteApiResolverINS0_12_GLOBAL__N_111FailureTestEE22GetTearDownCaseOrSuiteEPKci: sub rsp, 68h mov [rsp+68h+var_8], rdi mov [rsp+68h+var_C], esi lea rsi, _ZN7testing4Test16TearDownTestCaseEv; void (*)(void) mov rdi, rsi; this call _ZN7testing8internal19GetNotDefaultOrNullEPFv...
testing::internal * testing::internal::SuiteApiResolver<testing::internal::`anonymous namespace'::FailureTest>::GetTearDownCaseOrSuite( long long a1, unsigned int a2, void (*a3)(void)) { void (*v3)(void); // rdx void *Stream; // rax long long v7; // [rsp+8h] [rbp-60h] long long v8; // [r...
GetTearDownCaseOrSuite: SUB RSP,0x68 MOV qword ptr [RSP + 0x60],RDI MOV dword ptr [RSP + 0x5c],ESI LEA RSI,[0x1107e0] MOV RDI,RSI CALL 0x00110780 MOV qword ptr [RSP + 0x50],RAX LEA RSI,[0x1107f0] MOV RDI,RSI CALL 0x00110780 MOV qword ptr [RSP + 0x48],RAX MOV AL,0x1 CMP qword ptr [RSP + 0x50],0x0 MOV byte ptr [RSP + 0x3...
/* testing::internal::SuiteApiResolver<testing::internal::(anonymous namespace)::FailureTest>::GetTearDownCaseOrSuite(char const*, int) */ long testing::internal::SuiteApiResolver<testing::internal::(anonymous_namespace)::FailureTest>:: GetTearDownCaseOrSuite(char *param_1,int param_2) { ulong uVar1; ost...
8,458
aria_get_capabilities
eloqsql/storage/maria/ma_backup.c
int aria_get_capabilities(File kfile, ARIA_TABLE_CAPABILITIES *cap) { MARIA_SHARE share; int error= 0; uint head_length= sizeof(share.state.header), base_pos; uint aligned_bit_blocks; size_t info_length; uchar *disc_cache; DBUG_ENTER("aria_get_capabilities"); bzero(cap, sizeof(*cap)); if (my_pread(kf...
O0
c
aria_get_capabilities: pushq %rbp movq %rsp, %rbp subq $0xc80, %rsp # imm = 0xC80 movq %fs:0x28, %rax movq %rax, -0x8(%rbp) movl %edi, -0xc48(%rbp) movq %rsi, -0xc50(%rbp) movl $0x0, -0xc54(%rbp) movl $0x18, -0xc58(%rbp) movq -0xc50(%rbp), %rdi xorl %esi, %esi movl $0x30, %edx callq 0x2a2c0 movl -0xc48(%rbp)...
aria_get_capabilities: push rbp mov rbp, rsp sub rsp, 0C80h mov rax, fs:28h mov [rbp+var_8], rax mov [rbp+var_C48], edi mov [rbp+var_C50], rsi mov [rbp+var_C54], 0 mov [rbp+var_C58], 18h mov rdi, [rbp+var_C50] xor esi, esi mov edx, 30h ; '0' call _memset mov edi, [r...
long long aria_get_capabilities(unsigned int a1, long long a2) { int v2; // ecx bool v4; // [rsp+Fh] [rbp-C71h] const char *v5; // [rsp+10h] [rbp-C70h] long long v6; // [rsp+18h] [rbp-C68h] int v7; // [rsp+24h] [rbp-C5Ch] unsigned int v8; // [rsp+2Ch] [rbp-C54h] int v10; // [rsp+40h] [rbp-C40h] BYREF u...
aria_get_capabilities: PUSH RBP MOV RBP,RSP SUB RSP,0xc80 MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x8],RAX MOV dword ptr [RBP + -0xc48],EDI MOV qword ptr [RBP + -0xc50],RSI MOV dword ptr [RBP + -0xc54],0x0 MOV dword ptr [RBP + -0xc58],0x18 MOV RDI,qword ptr [RBP + -0xc50] XOR ESI,ESI MOV EDX,0x30 CALL 0x0012a...
int4 aria_get_capabilities(int4 param_1,int8 *param_2) { long lVar1; long lVar2; int4 *puVar3; int iVar4; long in_FS_OFFSET; bool local_c79; int4 local_c5c; int4 local_c4c; int local_c48; int1 local_c44; int1 local_c43; int1 local_c42; int1 local_c41; int1 local_c3c; int1 local_c3b; by...
8,459
allocate_dynamic
eloqsql/mysys/array.c
my_bool allocate_dynamic(DYNAMIC_ARRAY *array, uint max_elements) { DBUG_ENTER("allocate_dynamic"); if (max_elements >= array->max_element) { uint size; uchar *new_ptr; size= (max_elements + array->alloc_increment)/array->alloc_increment; size*= array->alloc_increment; if (array->malloc_flags...
O3
c
allocate_dynamic: cmpl %esi, 0xc(%rdi) jbe 0x2e02d xorl %eax, %eax retq pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movl %esi, %ebx movq %rdi, %r14 movl 0x10(%rdi), %ecx movl 0x18(%rdi), %edi addl %ecx, %ebx movl %ebx, %eax xorl %edx, %edx divl %ecx subl %edx, %ebx movq 0x20(%r14), %rcx btl $...
allocate_dynamic: cmp [rdi+0Ch], esi jbe short loc_2E02D xor eax, eax retn loc_2E02D: push rbp mov rbp, rsp push r15 push r14 push rbx push rax mov ebx, esi mov r14, rdi mov ecx, [rdi+10h] mov edi, [rdi+18h] add ebx, ecx mov eax, ebx xor edx, edx div ecx su...
long long allocate_dynamic(long long *a1, unsigned int a2) { unsigned int v4; // ecx unsigned int v5; // edi unsigned int v6; // ebx long long v7; // rcx long long v8; // r15 long long v9; // rax if ( *((_DWORD *)a1 + 3) > a2 ) return 0LL; v4 = *((_DWORD *)a1 + 4); v5 = *((_DWORD *)a1 + 6); v6...
allocate_dynamic: CMP dword ptr [RDI + 0xc],ESI JBE 0x0012e02d XOR EAX,EAX RET LAB_0012e02d: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX PUSH RAX MOV EBX,ESI MOV R14,RDI MOV ECX,dword ptr [RDI + 0x10] MOV EDI,dword ptr [RDI + 0x18] ADD EBX,ECX MOV EAX,EBX XOR EDX,EDX DIV ECX SUB EBX,EDX MOV RCX,qword ptr [R14 + 0x2...
int8 allocate_dynamic(long *param_1,uint param_2) { ulong uVar1; void *__dest; int iVar2; if (param_2 < *(uint *)((long)param_1 + 0xc)) { return 0; } param_2 = param_2 + *(uint *)(param_1 + 2); iVar2 = param_2 - param_2 % *(uint *)(param_1 + 2); uVar1 = param_1[4]; if (((uint)uVar1 >> 8 & 1) ...
8,460
ma_pvio_tls_init
eloqsql/libmariadb/libmariadb/ma_tls.c
MARIADB_TLS *ma_pvio_tls_init(MYSQL *mysql) { MARIADB_TLS *ctls= NULL; if (!ma_tls_initialized) ma_tls_start(mysql->net.last_error, MYSQL_ERRMSG_SIZE); if (!(ctls= (MARIADB_TLS *)calloc(1, sizeof(MARIADB_TLS)))) { return NULL; } /* register error routine and methods */ ctls->pvio= mysql->net.pv...
O0
c
ma_pvio_tls_init: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x10(%rbp) movq $0x0, -0x18(%rbp) leaq 0x35585(%rip), %rax # 0x64350 cmpb $0x0, (%rax) jne 0x2ede5 movq -0x10(%rbp), %rdi addq $0x97, %rdi movl $0x200, %esi # imm = 0x200 callq 0x463e0 movl $0x1, %edi movl $0x18, %esi callq 0x173a0...
ma_pvio_tls_init: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_10], rdi mov [rbp+var_18], 0 lea rax, ma_tls_initialized cmp byte ptr [rax], 0 jnz short loc_2EDE5 mov rdi, [rbp+var_10] add rdi, 97h mov esi, 200h call ma_tls_start loc_2EDE5: mov edi, 1 mov esi, 18h...
long long ma_pvio_tls_init(_QWORD *a1) { long long v1; // rax long long v3; // [rsp+8h] [rbp-18h] if ( !ma_tls_initialized ) ma_tls_start((char *)a1 + 151); v3 = calloc(1LL, 24LL); if ( !v3 ) return 0LL; *(_QWORD *)(v3 + 8) = *a1; v1 = ma_tls_init(a1); *(_QWORD *)(v3 + 16) = v1; if ( !v1 ) ...
ma_pvio_tls_init: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],0x0 LEA RAX,[0x164350] CMP byte ptr [RAX],0x0 JNZ 0x0012ede5 MOV RDI,qword ptr [RBP + -0x10] ADD RDI,0x97 MOV ESI,0x200 CALL 0x001463e0 LAB_0012ede5: MOV EDI,0x1 MOV ESI,0x18 CALL 0x001173a0 MOV qword ptr [RB...
void * ma_pvio_tls_init(int8 *param_1) { long lVar1; int8 local_20; int8 local_10; if (ma_tls_initialized == '\0') { ma_tls_start((long)param_1 + 0x97,0x200); } local_20 = calloc(1,0x18); if (local_20 == (void *)0x0) { local_10 = (void *)0x0; } else { *(int8 *)((long)local_20 + 8) = *...
8,461
ggml_mul_impl
Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml.c
static struct ggml_tensor * ggml_mul_impl( struct ggml_context * ctx, struct ggml_tensor * a, struct ggml_tensor * b, bool inplace) { GGML_ASSERT(ggml_can_repeat(b, a)); struct ggml_tensor * result = inplace ? ggml_view_tensor(ctx, a) : ggml_dup_tensor(ctx, a)...
O0
c
ggml_mul_impl: pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movb %cl, %al movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) andb $0x1, %al movb %al, -0x19(%rbp) movq -0x18(%rbp), %rdi movq -0x10(%rbp), %rsi callq 0x47040 testb $0x1, %al jne 0x4d49d leaq 0x64134(%rip), %rdi # 0xb15b7 movl $0x7e6, %e...
ggml_mul_impl: push rbp mov rbp, rsp sub rsp, 30h mov al, cl mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_18], rdx and al, 1 mov [rbp+var_19], al mov rdi, [rbp+var_18] mov rsi, [rbp+var_10] call _ggml_can_repeat test al, 1 jnz short loc_4D49D lea rdi, ...
long long ggml_mul_impl( long long a1, long long *a2, _QWORD *a3, char a4, __m128 a5, __m128 a6, __m128 a7, __m128 a8, double a9, double a10, __m128 a11, __m128 a12) { double v12; // xmm4_8 double v13; // xmm5_8 long ...
ggml_mul_impl: PUSH RBP MOV RBP,RSP SUB RSP,0x30 MOV AL,CL MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV qword ptr [RBP + -0x18],RDX AND AL,0x1 MOV byte ptr [RBP + -0x19],AL MOV RDI,qword ptr [RBP + -0x18] MOV RSI,qword ptr [RBP + -0x10] CALL 0x00147040 TEST AL,0x1 JNZ 0x0014d49d LEA RDI,[0x1b15b7]...
long ggml_mul_impl(int8 param_1,int8 param_2,int8 param_3,byte param_4) { ulong uVar1; long local_38; uVar1 = ggml_can_repeat(param_3,param_2); if ((uVar1 & 1) == 0) { ggml_abort("/workspace/llm4binary/github/2025_star3/Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml.c", 0x7e6,"GGML_ASSERT(%s) f...
8,462
ggml_mul_impl
Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml.c
static struct ggml_tensor * ggml_mul_impl( struct ggml_context * ctx, struct ggml_tensor * a, struct ggml_tensor * b, bool inplace) { GGML_ASSERT(ggml_can_repeat(b, a)); struct ggml_tensor * result = inplace ? ggml_view_tensor(ctx, a) : ggml_dup_tensor(ctx, a)...
O1
c
ggml_mul_impl: pushq %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movl %ecx, %ebp movq %rdx, %rbx movq %rsi, %r14 movq %rdi, %r15 movq %rdx, %rdi callq 0x185d0 testb %al, %al je 0x1c426 testb %bpl, %bpl je 0x1c3ec movq %r15, %rdi movq %r14, %rsi callq 0x17260 jmp 0x1c406 movl (%r14), %esi leaq 0x10(%r14), %rcx movq...
ggml_mul_impl: push rbp push r15 push r14 push rbx push rax mov ebp, ecx mov rbx, rdx mov r14, rsi mov r15, rdi mov rdi, rdx call _ggml_can_repeat test al, al jz short loc_1C426 test bpl, bpl jz short loc_1C3EC mov rdi, r15 mov rsi, r14 call _ggml_view_te...
long long ggml_mul_impl(long long a1, long long *a2, _QWORD *a3, char a4, double a5) { int v7; // r8d int v8; // r9d long long result; // rax if ( !ggml_can_repeat(a3, a2) ) ggml_abort( (unsigned int)"/workspace/llm4binary/github/2025_star3/Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml.c", 2022, ...
ggml_mul_impl: PUSH RBP PUSH R15 PUSH R14 PUSH RBX PUSH RAX MOV EBP,ECX MOV RBX,RDX MOV R14,RSI MOV R15,RDI MOV RDI,RDX CALL 0x001185d0 TEST AL,AL JZ 0x0011c426 TEST BPL,BPL JZ 0x0011c3ec MOV RDI,R15 MOV RSI,R14 CALL 0x00117260 JMP 0x0011c406 LAB_0011c3ec: MOV ESI,dword ptr [R14] LEA RCX,[R14 + 0x10] MOV RDI,R15 MOV ED...
void ggml_mul_impl(int8 param_1,int4 *param_2,int8 param_3,char param_4) { char cVar1; long lVar2; cVar1 = ggml_can_repeat(param_3); if (cVar1 != '\0') { if (param_4 == '\0') { lVar2 = ggml_new_tensor_impl(param_1,*param_2,4,param_2 + 4,0,0); } else { lVar2 = ggml_view_tensor(param_...
8,463
ggml_mul_impl
Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml.c
static struct ggml_tensor * ggml_mul_impl( struct ggml_context * ctx, struct ggml_tensor * a, struct ggml_tensor * b, bool inplace) { GGML_ASSERT(ggml_can_repeat(b, a)); struct ggml_tensor * result = inplace ? ggml_view_tensor(ctx, a) : ggml_dup_tensor(ctx, a)...
O2
c
ggml_mul_impl: pushq %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movl %ecx, %ebp movq %rdx, %rbx movq %rsi, %r14 movq %rdi, %r15 movq %rdx, %rdi callq 0x1ef60 testb %al, %al je 0x21cb3 movq %r15, %rdi movq %r14, %rsi testb %bpl, %bpl je 0x21c8e callq 0x1d410 jmp 0x21c93 callq 0x1e7a0 movl $0x6, 0x50(%rax) movq %r1...
ggml_mul_impl: push rbp push r15 push r14 push rbx push rax mov ebp, ecx mov rbx, rdx mov r14, rsi mov r15, rdi mov rdi, rdx call _ggml_can_repeat test al, al jz short loc_21CB3 mov rdi, r15 mov rsi, r14 test bpl, bpl jz short loc_21C8E call _ggml_view_te...
long long ggml_mul_impl( long long a1, long long *a2, _QWORD *a3, char a4, __m128 a5, __m128 a6, __m128 a7, __m128 a8, double a9, double a10, __m128 a11, __m128 a12) { char v12; // al long long v15; // r8 long long v1...
ggml_mul_impl: PUSH RBP PUSH R15 PUSH R14 PUSH RBX PUSH RAX MOV EBP,ECX MOV RBX,RDX MOV R14,RSI MOV R15,RDI MOV RDI,RDX CALL 0x0011ef60 TEST AL,AL JZ 0x00121cb3 MOV RDI,R15 MOV RSI,R14 TEST BPL,BPL JZ 0x00121c8e CALL 0x0011d410 JMP 0x00121c93 LAB_00121c8e: CALL 0x0011e7a0 LAB_00121c93: MOV dword ptr [RAX + 0x50],0x6 MO...
void ggml_mul_impl(int8 param_1,int8 param_2,int8 param_3,char param_4) { char cVar1; long lVar2; cVar1 = ggml_can_repeat(param_3); if (cVar1 != '\0') { if (param_4 == '\0') { lVar2 = ggml_dup_tensor(param_1,param_2); } else { lVar2 = ggml_view_tensor(); } *(int4 *)(lVar2 + ...
8,464
ggml_mul_impl
Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml.c
static struct ggml_tensor * ggml_mul_impl( struct ggml_context * ctx, struct ggml_tensor * a, struct ggml_tensor * b, bool inplace) { GGML_ASSERT(ggml_can_repeat(b, a)); struct ggml_tensor * result = inplace ? ggml_view_tensor(ctx, a) : ggml_dup_tensor(ctx, a)...
O3
c
ggml_mul_impl: pushq %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movl %ecx, %ebp movq %rdx, %rbx movq %rsi, %r14 movq %rdi, %r15 movq %rdx, %rdi callq 0x175c0 testb %al, %al je 0x1b14a testb %bpl, %bpl je 0x1b110 movq %r15, %rdi movq %r14, %rsi callq 0x16260 jmp 0x1b12a movl (%r14), %esi leaq 0x10(%r14), %rcx movq...
ggml_mul_impl: push rbp push r15 push r14 push rbx push rax mov ebp, ecx mov rbx, rdx mov r14, rsi mov r15, rdi mov rdi, rdx call _ggml_can_repeat test al, al jz short loc_1B14A test bpl, bpl jz short loc_1B110 mov rdi, r15 mov rsi, r14 call _ggml_view_te...
long long ggml_mul_impl(long long a1, long long *a2, _QWORD *a3, char a4, double a5) { int v7; // r8d int v8; // r9d long long result; // rax if ( !ggml_can_repeat(a3, a2) ) ggml_abort( (unsigned int)"/workspace/llm4binary/github/2025_star3/Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml.c", 2022, ...
ggml_mul_impl: PUSH RBP PUSH R15 PUSH R14 PUSH RBX PUSH RAX MOV EBP,ECX MOV RBX,RDX MOV R14,RSI MOV R15,RDI MOV RDI,RDX CALL 0x001175c0 TEST AL,AL JZ 0x0011b14a TEST BPL,BPL JZ 0x0011b110 MOV RDI,R15 MOV RSI,R14 CALL 0x00116260 JMP 0x0011b12a LAB_0011b110: MOV ESI,dword ptr [R14] LEA RCX,[R14 + 0x10] MOV RDI,R15 MOV ED...
void ggml_mul_impl(int8 param_1,int4 *param_2,int8 param_3,char param_4) { char cVar1; long lVar2; cVar1 = ggml_can_repeat(param_3); if (cVar1 != '\0') { if (param_4 == '\0') { lVar2 = ggml_new_tensor_impl(param_1,*param_2,4,param_2 + 4,0,0); } else { lVar2 = ggml_view_tensor(param_...
8,465
common_arg::common_arg(std::initializer_list<char const*> const&, char const*, char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, void (*)(common_params&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::__cxx11::basic_string<ch...
monkey531[P]llama/common/arg.h
common_arg( const std::initializer_list<const char *> & args, const char * value_hint, const char * value_hint_2, const std::string & help, void (*handler)(common_params & params, const std::string &, const std::string &) ) : args(args), value_hint(value_hint), value_hint_2(v...
O2
c
common_arg::common_arg(std::initializer_list<char const*> const&, char const*, char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, void (*)(common_params&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::__cxx11::basic_string<ch...
_ZN10common_argC2ERKSt16initializer_listIPKcES2_S2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPFvR13common_paramsSD_SD_E: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 18h mov [rsp+48h+var_40], r9 mov r15, r8 mov r12, rcx mov r13, rdx mov r14, rsi mo...
long long common_arg::common_arg(long long a1, _QWORD *a2, long long a3, long long a4, long long a5, long long a6) { long long result; // rax char v10; // [rsp+5h] [rbp-43h] BYREF char v11; // [rsp+6h] [rbp-42h] BYREF char v12; // [rsp+7h] [rbp-41h] BYREF long long v13; // [rsp+8h] [rbp-40h] _DWORD v14[13]...
common_arg: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x18 MOV qword ptr [RSP + 0x8],R9 MOV R15,R8 MOV R12,RCX MOV R13,RDX MOV R14,RSI MOV RBX,RDI LEA RSI,[RSP + 0x14] AND dword ptr [RSI],0x0 PUSH 0x1 POP RDX LEA RCX,[RSP + 0x7] LEA R8,[RSP + 0x6] CALL 0x0016413e LEA RAX,[RBX + 0x38] XORPS XMM0,XMM0...
/* common_arg::common_arg(std::initializer_list<char const*> const&, char const*, char const*, std::__cxx11::string const&, void (*)(common_params&, std::__cxx11::string const&, std::__cxx11::string const&)) */ void __thiscall common_arg::common_arg (common_arg *this,initializer_list *param_1,char *pa...
8,466
lunasvg::SVGNumberPercentage::parse(std::basic_string_view<char, std::char_traits<char>>)
dmazzella[P]pylunasvg/lunasvg/source/svgproperty.cpp
bool SVGNumberPercentage::parse(std::string_view input) { float value = 0.f; stripLeadingAndTrailingSpaces(input); if(!parseNumber(input, value)) return false; if(!input.empty() && input.front() == '%') { value /= 100.f; input.remove_prefix(1); } if(!input.empty()) ...
O0
cpp
lunasvg::SVGNumberPercentage::parse(std::basic_string_view<char, std::char_traits<char>>): pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rsi, -0x18(%rbp) movq %rdx, -0x10(%rbp) movq %rdi, -0x20(%rbp) movq -0x20(%rbp), %rax movq %rax, -0x38(%rbp) xorps %xmm0, %xmm0 movss %xmm0, -0x24(%rbp) leaq -0x18(%rbp), %rdi cal...
_ZN7lunasvg19SVGNumberPercentage5parseESt17basic_string_viewIcSt11char_traitsIcEE: push rbp mov rbp, rsp sub rsp, 40h mov [rbp+var_18], rsi mov [rbp+var_10], rdx mov [rbp+var_20], rdi mov rax, [rbp+var_20] mov [rbp+var_38], rax xorps xmm0, xmm0 movss [rbp+var_24], xmm0 lea rdi, [r...
char lunasvg::SVGNumberPercentage::parse(long long a1, long long a2, long long a3) { int v4; // [rsp+14h] [rbp-2Ch] BYREF int v5; // [rsp+18h] [rbp-28h] BYREF float v6; // [rsp+1Ch] [rbp-24h] BYREF long long v7; // [rsp+20h] [rbp-20h] _QWORD v8[2]; // [rsp+28h] [rbp-18h] BYREF v8[0] = a2; v8[1] = a3; ...
parse: PUSH RBP MOV RBP,RSP SUB RSP,0x40 MOV qword ptr [RBP + -0x18],RSI MOV qword ptr [RBP + -0x10],RDX MOV qword ptr [RBP + -0x20],RDI MOV RAX,qword ptr [RBP + -0x20] MOV qword ptr [RBP + -0x38],RAX XORPS XMM0,XMM0 MOVSS dword ptr [RBP + -0x24],XMM0 LEA RDI,[RBP + -0x18] CALL 0x00132fd0 LEA RDI,[RBP + -0x18] LEA RSI,...
/* lunasvg::SVGNumberPercentage::parse(std::basic_string_view<char, std::char_traits<char> >) */ int1 lunasvg::SVGNumberPercentage::parse(long param_1,int8 param_2,int8 param_3) { bool bVar1; ulong uVar2; char *pcVar3; float *pfVar4; float local_34; float local_30; float local_2c; long local_28; in...
8,467
lunasvg::SVGNumberPercentage::parse(std::basic_string_view<char, std::char_traits<char>>)
dmazzella[P]pylunasvg/lunasvg/source/svgproperty.cpp
bool SVGNumberPercentage::parse(std::string_view input) { float value = 0.f; stripLeadingAndTrailingSpaces(input); if(!parseNumber(input, value)) return false; if(!input.empty() && input.front() == '%') { value /= 100.f; input.remove_prefix(1); } if(!input.empty()) ...
O1
cpp
lunasvg::SVGNumberPercentage::parse(std::basic_string_view<char, std::char_traits<char>>): pushq %r15 pushq %r14 pushq %rbx subq $0x20, %rsp movq %rdi, %rbx leaq 0x10(%rsp), %r14 movq %rsi, (%r14) movq %rdx, 0x8(%r14) leaq 0xc(%rsp), %r15 movl $0x0, (%r15) movq %r14, %rdi callq 0x171df movq %r14, %rdi movq %r15, %rsi c...
_ZN7lunasvg19SVGNumberPercentage5parseESt17basic_string_viewIcSt11char_traitsIcEE: push r15 push r14 push rbx sub rsp, 20h mov rbx, rdi lea r14, [rsp+38h+var_28] mov [r14], rsi mov [r14+8], rdx lea r15, [rsp+38h+var_2C] mov dword ptr [r15], 0 mov rdi, r14 call _ZN7lunasvg29st...
char lunasvg::SVGNumberPercentage::parse(long long a1, long long a2, _BYTE *a3) { __m128 v4; // xmm1 float v5; // [rsp+Ch] [rbp-2Ch] BYREF long long v6; // [rsp+10h] [rbp-28h] BYREF _BYTE *v7; // [rsp+18h] [rbp-20h] v6 = a2; v7 = a3; v5 = 0.0; lunasvg::stripLeadingAndTrailingSpaces(&v6); if ( !lunas...
parse: PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x20 MOV RBX,RDI LEA R14,[RSP + 0x10] MOV qword ptr [R14],RSI MOV qword ptr [R14 + 0x8],RDX LEA R15,[RSP + 0xc] MOV dword ptr [R15],0x0 MOV RDI,R14 CALL 0x001171df MOV RDI,R14 MOV RSI,R15 CALL 0x001172e2 TEST AL,AL JZ 0x0011fadb MOV RAX,qword ptr [RSP + 0x10] TEST RAX,RAX JZ 0x...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ /* lunasvg::SVGNumberPercentage::parse(std::basic_string_view<char, std::char_traits<char> >) */ int8 lunasvg::SVGNumberPercentage::parse(long param_1,long param_2,char *param_3) { bool bVar1; float fVar2; float local_2c; lo...
8,468
minja::chat_template::add_system(nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_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_3::adl_serializer, std::vector<unsigne...
monkey531[P]llama/common/chat-template.hpp
static nlohmann::ordered_json add_system(const nlohmann::ordered_json & messages, const std::string & system_prompt) { json messages_with_system = messages; if (messages_with_system.size() > 0 && messages_with_system[0].at("role") == "system") { std::string existing_system = messages_with_s...
O2
cpp
minja::chat_template::add_system(nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_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_3::adl_serializer, std::vector<unsigne...
_ZN5minja13chat_template10add_systemERKN8nlohmann16json_abi_v3_11_310basic_jsonINS2_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS2_14adl_serializerES5_IhSaIhEEvEERKSB_: push rbp push r15 push r14 push r12 push rbx sub rsp, 120h mov r14, rdx mov rbx, rdi c...
unsigned __int8 * minja::chat_template::add_system(unsigned __int8 *a1, unsigned __int8 *a2, long long a3) { long long v4; // rax long long v5; // rax long long v6; // rax long long v7; // rax long long v8; // rax long long i; // r14 long long j; // r14 long long k; // r14 long long m; // r14 long l...
add_system: PUSH RBP PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB RSP,0x120 MOV R14,RDX MOV RBX,RDI CALL 0x0014210c MOV RDI,RBX CALL 0x00141fb4 TEST RAX,RAX JZ 0x0017a0c4 LAB_00179f0d: MOV RDI,RBX XOR ESI,ESI CALL 0x0017d894 LEA RSI,[0x1b348f] MOV RDI,RAX CALL 0x0017a43a LEA RSI,[0x1b350a] MOV RDI,RAX CALL 0x0017a876 TEST A...
/* minja::chat_template::add_system(nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char> >, void...
8,469
PFS_buffer_scalable_container<PFS_program, 1024, 1024, PFS_buffer_default_array<PFS_program>, PFS_buffer_default_allocator<PFS_program>>::cleanup()
eloqsql/storage/perfschema/pfs_buffer_container.h
void cleanup() { int i; array_type *page; if (! m_initialized) return; pthread_mutex_lock(& m_critical_section); for (i=0 ; i < PFS_PAGE_COUNT; i++) { page= m_pages[i]; if (page != NULL) { m_allocator->free_array(page); delete page; m_pages[i]...
O0
c
PFS_buffer_scalable_container<PFS_program, 1024, 1024, PFS_buffer_default_array<PFS_program>, PFS_buffer_default_allocator<PFS_program>>::cleanup(): pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax movq %rax, -0x20(%rbp) testb $0x1, 0x8(%rax) jne 0x4510f jmp 0x451c3 movq -0x20(%rb...
_ZN29PFS_buffer_scalable_containerI20PFS_table_share_lockLi4096ELi4096E24PFS_buffer_default_arrayIS0_E28PFS_buffer_default_allocatorIS0_EE7cleanupEv: push rbp mov rbp, rsp sub rsp, 30h mov [rbp+var_8], rdi mov rax, [rbp+var_8] mov [rbp+var_20], rax test byte ptr [rax+8], 1 jnz short loc_45...
long long PFS_buffer_scalable_container<PFS_table_share_lock,4096,4096,PFS_buffer_default_array<PFS_table_share_lock>,PFS_buffer_default_allocator<PFS_table_share_lock>>::cleanup( long long a1) { long long result; // rax void *v2; // [rsp+18h] [rbp-18h] int i; // [rsp+24h] [rbp-Ch] result = a1; if (...
cleanup: PUSH RBP MOV RBP,RSP SUB RSP,0x30 MOV qword ptr [RBP + -0x8],RDI MOV RAX,qword ptr [RBP + -0x8] MOV qword ptr [RBP + -0x20],RAX TEST byte ptr [RAX + 0x8],0x1 JNZ 0x0014510f JMP 0x001451c3 LAB_0014510f: MOV RDI,qword ptr [RBP + -0x20] ADD RDI,0x80b0 CALL 0x001264b0 MOV dword ptr [RBP + -0xc],0x0 LAB_00145126: C...
/* PFS_buffer_scalable_container<PFS_table_share_lock, 4096, 4096, PFS_buffer_default_array<PFS_table_share_lock>, PFS_buffer_default_allocator<PFS_table_share_lock> >::cleanup() */ void __thiscall PFS_buffer_scalable_container<PFS_table_share_lock,4096,4096,PFS_buffer_default_array<PFS_table_share_lock>,PFS_bu...
8,470
nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_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_3::adl_serializer, std::vecto...
monkey531[P]llama/common/./json.hpp
token_type scan() { // initially, skip the BOM if (position.chars_read_total == 0 && !skip_bom()) { error_message = "invalid BOM; must be 0xEF 0xBB 0xBF if given"; return token_type::parse_error; } // read next character and ignore whitespace ...
O0
cpp
nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_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_3::adl_serializer, std::vecto...
_ZN8nlohmann16json_abi_v3_11_36detail5lexerINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEENS1_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSB_EEEEE4scanEv: sub rsp, 58h mov [rsp+58h+var_10], rdi mov rax,...
long long nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<unsigned char>,void>,nlohmann::json_abi_v3_11_3::detail::iterat...
scan: SUB RSP,0x58 MOV qword ptr [RSP + 0x48],RDI MOV RAX,qword ptr [RSP + 0x48] MOV qword ptr [RSP + 0x30],RAX CMP qword ptr [RAX + 0x20],0x0 JNZ 0x0018fec5 MOV RDI,qword ptr [RSP + 0x30] CALL 0x001900c0 TEST AL,0x1 JNZ 0x0018fec5 MOV RAX,qword ptr [RSP + 0x30] LEA RCX,[0x2c896e] MOV qword ptr [RAX + 0x70],RCX MOV dwo...
/* nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char...
8,471
nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_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_3::adl_serializer, std::vecto...
monkey531[P]llama/common/./json.hpp
token_type scan() { // initially, skip the BOM if (position.chars_read_total == 0 && !skip_bom()) { error_message = "invalid BOM; must be 0xEF 0xBB 0xBF if given"; return token_type::parse_error; } // read next character and ignore whitespace ...
O1
cpp
nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_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_3::adl_serializer, std::vecto...
_ZN8nlohmann16json_abi_v3_11_36detail5lexerINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEENS1_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSB_EEEEE4scanEv: push r14 push rbx sub rsp, 18h mov rbx, rdi c...
long long nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<unsigned char>,void>,nlohmann::json_abi_v3_11_3::detail::iterat...
scan: PUSH R14 PUSH RBX SUB RSP,0x18 MOV RBX,RDI CMP qword ptr [RDI + 0x20],0x0 JNZ 0x00131d17 MOV RDI,RBX CALL 0x00131ec0 TEST AL,AL JZ 0x00131deb LAB_00131d17: MOV R14,0x100002600 LAB_00131d21: MOV RDI,RBX CALL 0x00119de6 MOV EAX,dword ptr [RBX + 0x14] CMP RAX,0x20 JA 0x00131d38 BT R14,RAX JC 0x00131d21 LAB_00131d38:...
/* nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char...
8,472
nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_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_3::adl_serializer, std::vecto...
monkey531[P]llama/common/./json.hpp
token_type scan() { // initially, skip the BOM if (position.chars_read_total == 0 && !skip_bom()) { error_message = "invalid BOM; must be 0xEF 0xBB 0xBF if given"; return token_type::parse_error; } // read next character and ignore whitespace ...
O2
cpp
nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_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_3::adl_serializer, std::vecto...
_ZN8nlohmann16json_abi_v3_11_36detail5lexerINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEENS1_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSB_EEEEE4scanEv: push rbp push rbx sub rsp, 18h mov rbx, rdi c...
long long nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<unsigned char>,void>,nlohmann::json_abi_v3_11_3::detail::iterat...
scan: PUSH RBP PUSH RBX SUB RSP,0x18 MOV RBX,RDI CMP qword ptr [RDI + 0x20],0x0 JNZ 0x00131e0e MOV RDI,RBX CALL 0x00131f2e TEST AL,AL JZ 0x00131e63 LAB_00131e0e: MOV RDI,RBX CALL 0x00131f70 PUSH 0xe POP RBP LAB_00131e19: MOV EAX,dword ptr [RBX + 0x14] CMP byte ptr [RBX + 0x10],0x1 JNZ 0x00131e3d CMP EAX,0x2f JNZ 0x0013...
/* nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char...
8,473
inline_mysql_file_read
eloqsql/include/mysql/psi/mysql_file.h
static inline size_t inline_mysql_file_read( #ifdef HAVE_PSI_FILE_INTERFACE const char *src_file, uint src_line, #endif File file, uchar *buffer, size_t count, myf flags) { size_t result; #ifdef HAVE_PSI_FILE_INTERFACE struct PSI_file_locker *locker; PSI_file_locker_state state; size_t bytes_read; locker=...
O0
c
inline_mysql_file_read: pushq %rbp movq %rsp, %rbp subq $0xa0, %rsp movq %rdi, -0x10(%rbp) movl %esi, -0x14(%rbp) movl %edx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq %r8, -0x28(%rbp) movq %r9, -0x30(%rbp) leaq 0x1a04d8(%rip), %rax # 0x1cc820 movq (%rax), %rax movq 0x158(%rax), %rax movl -0x18(%rbp), %esi leaq -0x88(%...
inline_mysql_file_read: push rbp mov rbp, rsp sub rsp, 0A0h mov [rbp+var_10], rdi mov [rbp+var_14], esi mov [rbp+var_18], edx mov [rbp+var_20], rcx mov [rbp+var_28], r8 mov [rbp+var_30], r9 lea rax, PSI_server mov rax, [rax] mov rax, [rax+158h] mov esi, [rbp+var_18] le...
long long inline_mysql_file_read( long long a1, unsigned int a2, unsigned int a3, long long a4, long long a5, long long a6) { long long v7; // [rsp+0h] [rbp-A0h] long long v8; // [rsp+8h] [rbp-98h] _BYTE v9[72]; // [rsp+18h] [rbp-88h] BYREF long long v10; // [rsp...
inline_mysql_file_read: PUSH RBP MOV RBP,RSP SUB RSP,0xa0 MOV qword ptr [RBP + -0x10],RDI MOV dword ptr [RBP + -0x14],ESI MOV dword ptr [RBP + -0x18],EDX MOV qword ptr [RBP + -0x20],RCX MOV qword ptr [RBP + -0x28],R8 MOV qword ptr [RBP + -0x30],R9 LEA RAX,[0x2cc820] MOV RAX,qword ptr [RAX] MOV RAX,qword ptr [RAX + 0x15...
long inline_mysql_file_read (int8 param_1,int4 param_2,int4 param_3,int8 param_4, long param_5,ulong param_6) { long local_a8; long local_a0; long local_98; int1 local_90 [72]; long local_48; long local_40; ulong local_38; long local_30; int8 local_28; int4 local_20; ...
8,474
uf_prespace_selected
eloqsql/storage/maria/ma_packrec.c
static void uf_prespace_selected(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff, uchar *to, uchar *end) { uint spaces; if (get_bit(bit_buff)) { if ((spaces=get_bits(bit_buff,rec->space_length_bits))+to > end) { bit_buff->error=1; return; } bfill(to...
O0
c
uf_prespace_selected: pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq -0x10(%rbp), %rax cmpl $0x0, 0x4(%rax) je 0x4e67a movq -0x10(%rbp), %rax movl (%rax), %eax movq -0x10(%rbp), %rdx movl 0x4(%rdx), %ecx addl $-0x1, %ecx movl %...
uf_prespace_selected: push rbp mov rbp, rsp sub rsp, 30h mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_18], rdx mov [rbp+var_20], rcx mov rax, [rbp+var_10] cmp dword ptr [rax+4], 0 jz short loc_4E67A mov rax, [rbp+var_10] mov eax, [rax] mov rdx, [rbp+var_10]...
long long uf_prespace_selected(long long a1, int *a2, _BYTE *a3, _BYTE *a4) { int v4; // eax int v5; // ecx unsigned int v6; // eax int v7; // ecx long long result; // rax unsigned int bits; // [rsp+8h] [rbp-28h] if ( a2[1] ) { v4 = *a2; v5 = a2[1] - 1; a2[1] = v5; if ( ((1 << v5) & v4...
uf_prespace_selected: PUSH RBP MOV RBP,RSP SUB RSP,0x30 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV qword ptr [RBP + -0x18],RDX MOV qword ptr [RBP + -0x20],RCX MOV RAX,qword ptr [RBP + -0x10] CMP dword ptr [RAX + 0x4],0x0 JZ 0x0014e67a MOV RAX,qword ptr [RBP + -0x10] MOV EAX,dword ptr [RAX] MOV R...
void uf_prespace_selected(long param_1,uint *param_2,void *param_3,ulong param_4) { uint uVar1; uint local_30; if (param_2[1] == 0) { fill_buffer(param_2); param_2[1] = 0x1f; uVar1 = *param_2 & 0x80000000; } else { uVar1 = param_2[1]; param_2[1] = uVar1 - 1; uVar1 = *param_2 & 1 <...
8,475
my_thread_end
eloqsql/mysys/my_thr_init.c
void my_thread_end(void) { struct st_my_thread_var *tmp; tmp= my_thread_var; #ifdef EXTRA_DEBUG_THREADS fprintf(stderr,"my_thread_end(): tmp: %p pthread_self: %p thread_id: %ld\n", tmp, pthread_self(), tmp ? (long) tmp->id : 0L); #endif /* Remove the instrumentation for this thread. This must b...
O3
c
my_thread_end: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax leaq 0x355a87(%rip), %r15 # 0x3b39d4 movl (%r15), %edi callq 0x28640 movq %rax, %rbx leaq 0x2d62c9(%rip), %r14 # 0x334228 movq (%r14), %rax callq *0x138(%rax) movl (%r15), %edi xorl %esi, %esi callq 0x280b0 testq %rbx, %rbx je 0...
my_thread_end: push rbp mov rbp, rsp push r15 push r14 push rbx push rax lea r15, THR_KEY_mysys mov edi, [r15] call _pthread_getspecific mov rbx, rax lea r14, PSI_server mov rax, [r14] call qword ptr [rax+138h] mov edi, [r15] xor esi, esi call _pthread_setspecific...
long long my_thread_end() { long long v0; // rdi long long v1; // rbx long long result; // rax long long v3; // rdi long long v4; // rdi v0 = THR_KEY_mysys; v1 = pthread_getspecific(THR_KEY_mysys); (*((void ( **)(long long))PSI_server + 39))(v0); result = pthread_setspecific(THR_KEY_mysys, 0LL); if...
my_thread_end: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX PUSH RAX LEA R15,[0x4b39d4] MOV EDI,dword ptr [R15] CALL 0x00128640 MOV RBX,RAX LEA R14,[0x434228] MOV RAX,qword ptr [R14] CALL qword ptr [RAX + 0x138] MOV EDI,dword ptr [R15] XOR ESI,ESI CALL 0x001280b0 TEST RBX,RBX JZ 0x0015dff0 CMP byte ptr [RBX + 0xe8],...
void my_thread_end(void) { void *__ptr; __ptr = pthread_getspecific(THR_KEY_mysys); (**(code **)(PSI_server + 0x138))(); pthread_setspecific(THR_KEY_mysys,(void *)0x0); if ((__ptr != (void *)0x0) && (*(char *)((long)__ptr + 0xe8) != '\0')) { my_thread_destory_thr_mutex(__ptr); if (THR_LOCK_thread...
8,476
my_strxfrm_pad_nweights_unicode
eloqsql/strings/ctype-utf8.c
size_t my_strxfrm_pad_nweights_unicode(uchar *str, uchar *strend, size_t nweights) { uchar *str0; DBUG_ASSERT(str && str <= strend); for (str0= str; str < strend && nweights; nweights--) { *str++= 0x00; if (str < strend) *str++= 0x20; } return str - str0; }
O0
c
my_strxfrm_pad_nweights_unicode: pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) jmp 0x13b4f2 movq -0x8(%rbp), %rax movq %rax, -0x20(%rbp) movq -0x8(%rbp), %rcx xorl %eax, %eax cmpq -0x10(%rbp), %rcx movb %al, -0x21(%rbp) jae 0x13b514 cmpq $0x0, -0x18(%rbp) setne %al movb ...
my_strxfrm_pad_nweights_unicode: push rbp mov rbp, rsp mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_18], rdx jmp short $+2 loc_13B4F2: mov rax, [rbp+var_8] mov [rbp+var_20], rax loc_13B4FA: mov rcx, [rbp+var_8] xor eax, eax cmp rcx, [rbp+var_10] mov [rbp+var_21]...
_BYTE * my_strxfrm_pad_nweights_unicode(_BYTE *a1, unsigned long long a2, long long a3) { _BYTE *v3; // rax _BYTE *v4; // rax bool v6; // [rsp+1h] [rbp-21h] _BYTE *v8; // [rsp+1Ah] [rbp-8h] v8 = a1; while ( 1 ) { v6 = 0; if ( (unsigned long long)v8 < a2 ) v6 = a3 != 0; if ( !v6 ) ...
8,477
my_strxfrm_pad_nweights_unicode
eloqsql/strings/ctype-utf8.c
size_t my_strxfrm_pad_nweights_unicode(uchar *str, uchar *strend, size_t nweights) { uchar *str0; DBUG_ASSERT(str && str <= strend); for (str0= str; str < strend && nweights; nweights--) { *str++= 0x00; if (str < strend) *str++= 0x20; } return str - str0; }
O3
c
my_strxfrm_pad_nweights_unicode: cmpq %rsi, %rdi setae %al testq %rdx, %rdx sete %cl orb %al, %cl movq %rdi, %rax jne 0xcb531 pushq %rbp movq %rsp, %rbp decq %rdx movq %rdi, %rcx leaq 0x1(%rcx), %rax movb $0x0, (%rcx) cmpq %rsi, %rax jae 0xcb51b movb $0x20, 0x1(%rcx) addq $0x2, %rcx movq %rcx, %rax addq $-0x1, %rdx set...
my_strxfrm_pad_nweights_unicode: cmp rdi, rsi setnb al test rdx, rdx setz cl or cl, al mov rax, rdi jnz short loc_CB531 push rbp mov rbp, rsp dec rdx mov rcx, rdi loc_CB504: lea rax, [rcx+1] mov byte ptr [rcx], 0 cmp rax, rsi jnb short loc_CB51B mov byte ptr [...
long long my_strxfrm_pad_nweights_unicode(_BYTE *a1, unsigned long long a2, long long a3) { _BYTE *v3; // rax long long v4; // rdx _BYTE *v5; // rcx bool v6; // cf v3 = a1; if ( (unsigned long long)a1 < a2 && a3 != 0 ) { v4 = a3 - 1; v5 = a1; do { v3 = v5 + 1; *v5 = 0; ...
my_strxfrm_pad_nweights_unicode: CMP RDI,RSI SETNC AL TEST RDX,RDX SETZ CL OR CL,AL MOV RAX,RDI JNZ 0x001cb531 PUSH RBP MOV RBP,RSP DEC RDX MOV RCX,RDI LAB_001cb504: LEA RAX,[RCX + 0x1] MOV byte ptr [RCX],0x0 CMP RAX,RSI JNC 0x001cb51b MOV byte ptr [RCX + 0x1],0x20 ADD RCX,0x2 MOV RAX,RCX LAB_001cb51b: ADD RDX,-0x1 SET...
long my_strxfrm_pad_nweights_unicode(int1 *param_1,int1 *param_2,long param_3) { int1 *puVar1; int1 *puVar2; bool bVar3; puVar2 = param_1; if (param_3 != 0 && param_1 < param_2) { param_3 = param_3 + -1; puVar1 = param_1; do { puVar2 = puVar1 + 1; *puVar1 = 0; if (puVar2 < p...
8,478
qoraal_free
navaro[P]qoraal-tictactoe/build_O3/_deps/qoraal-src/src/qoraal.c
void qoraal_free (QORAAL_HEAP heap, void *mem) { if (!_qoraal_instance) return; if (!mem) return; #if defined CFG_OS_MEM_DEBUG_ENABLE // Validate our canaries; optionally clear user data mem = heap_do_check(mem, 1, 0, 0); #endif _qoraal_instance->free(heap, mem); }
O3
c
qoraal_free: pushq %rbp movq %rsp, %rbp movq 0x2c6fa(%rip), %rax # 0x40948 testq %rax, %rax sete %cl testq %rsi, %rsi sete %dl orb %cl, %dl jne 0x14265 movq 0x8(%rax), %rax popq %rbp jmpq *%rax popq %rbp retq nop
qoraal_free: push rbp mov rbp, rsp mov rax, cs:_qoraal_instance test rax, rax setz cl test rsi, rsi setz dl or dl, cl jnz short loc_14265 mov rax, [rax+8] pop rbp jmp rax loc_14265: pop rbp retn
long long qoraal_free(long long a1, long long a2) { long long result; // rax result = qoraal_instance; if ( qoraal_instance != 0 && a2 != 0 ) return (*(long long (**)(void))(qoraal_instance + 8))(); return result; }
qoraal_free: PUSH RBP MOV RBP,RSP MOV RAX,qword ptr [0x00140948] TEST RAX,RAX SETZ CL TEST RSI,RSI SETZ DL OR DL,CL JNZ 0x00114265 MOV RAX,qword ptr [RAX + 0x8] POP RBP JMP RAX LAB_00114265: POP RBP RET
void qoraal_free(int8 param_1,long param_2) { if (param_2 != 0 && _qoraal_instance != 0) { /* WARNING: Could not recover jumptable at 0x00114263. Too many branches */ /* WARNING: Treating indirect jump as call */ (**(code **)(_qoraal_instance + 8))(); return; } re...
8,479
R3D_DrawMeshInstancedPro
r3d/src/r3d_core.c
void R3D_DrawMeshInstancedPro(Mesh mesh, Material material, Matrix transform, Matrix* instanceTransforms, int transformsStride, Color* instanceColors, int colorsStride, int instanceCount) { r3d_drawcall_t drawCall = { 0 }; ...
O3
c
R3D_DrawMeshInstancedPro: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r12 pushq %rbx subq $0x120, %rsp # imm = 0x120 movl %ecx, %r14d xorps %xmm0, %xmm0 movups %xmm0, -0x40(%rbp) movups %xmm0, -0x50(%rbp) movups %xmm0, -0x60(%rbp) movq $0x0, -0x30(%rbp) testl %r8d, %r8d sete %al testq %rdi, %rdi ...
R3D_DrawMeshInstancedPro: push rbp mov rbp, rsp push r15 push r14 push r12 push rbx sub rsp, 120h mov r14d, ecx xorps xmm0, xmm0 movups [rbp+var_40], xmm0 movups [rbp+var_50], xmm0 movups [rbp+var_60], xmm0 mov [rbp+var_30], 0 test r8d, r8d setz al test rdi, rdi setz cl o...
char R3D_DrawMeshInstancedPro( long long a1, int a2, long long a3, int a4, int a5, long long a6, char a7, int a8, int a9, int a10, int a11, int a12, int a13, int a14, int a15, int a16, ...
R3D_DrawMeshInstancedPro: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB RSP,0x120 MOV R14D,ECX XORPS XMM0,XMM0 MOVUPS xmmword ptr [RBP + -0x40],XMM0 MOVUPS xmmword ptr [RBP + -0x50],XMM0 MOVUPS xmmword ptr [RBP + -0x60],XMM0 MOV qword ptr [RBP + -0x30],0x0 TEST R8D,R8D SETZ AL TEST RDI,RDI SETZ CL OR CL,...
void R3D_DrawMeshInstancedPro(long param_1,int param_2,int8 param_3,int param_4,int param_5) { void *pvVar1; ulong uVar2; void *pvVar3; ulong uVar4; void *pvVar5; void *pvVar6; int iVar7; ulong uVar8; ulong uVar9; void *pvVar10; long lVar11; long *plVar12; int8 *puVar13; int8 *puVar14; u...
8,480
js_typed_array_set
bluesky950520[P]quickjs/quickjs.c
static JSValue js_typed_array_set(JSContext *ctx, JSValue this_val, int argc, JSValue *argv) { JSValue offset = JS_UNDEFINED; if (argc > 1) { offset = argv[1]; } return js_typed_array_set_internal(ctx, this_val, argv[0], offset)...
O1
c
js_typed_array_set: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x88, %rsp movq %rdi, %rbx cmpl $0x2, %ecx jl 0x80a0e movq 0x10(%r8), %r12 movq 0x18(%r8), %r15 jmp 0x80a17 movl $0x3, %r15d xorl %r12d, %r12d movq (%r8), %rbp movq 0x8(%r8), %r14 movq $0x0, 0x20(%rsp) movq %rsi, 0x70(%rsp) movq...
js_typed_array_set: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 88h mov rbx, rdi cmp ecx, 2 jl short loc_80A0E mov r12, [r8+10h] mov r15, [r8+18h] jmp short loc_80A17 loc_80A0E: mov r15d, 3 xor r12d, r12d loc_80A17: mov rbp, [r8] mov r14,...
long long js_typed_array_set( long long a1, unsigned long long a2, long long a3, long long a4, long long *a5, long long a6, __m128 a7, __m128 a8, __m128 a9, __m128 a10, __m128 a11, __m128 a12, __m128 a13, __...
8,481
js_typed_array_set
bluesky950520[P]quickjs/quickjs.c
static JSValue js_typed_array_set(JSContext *ctx, JSValue this_val, int argc, JSValue *argv) { JSValue offset = JS_UNDEFINED; if (argc > 1) { offset = argv[1]; } return js_typed_array_set_internal(ctx, this_val, argv[0], offset)...
O2
c
js_typed_array_set: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x58, %rsp movq %rdi, %rbx pushq $0x3 popq %r14 cmpl $0x2, %ecx jl 0x6c250 movq %r14, %rbp movq 0x10(%r8), %r13 movq 0x18(%r8), %r14 jmp 0x6c256 xorl %r13d, %r13d movq %r14, %rbp movq (%r8), %r15 movq 0x8(%r8), %r12 movq %rbx, %...
js_typed_array_set: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 58h mov rbx, rdi push 3 pop r14 cmp ecx, 2 jl short loc_6C250 mov rbp, r14 mov r13, [r8+10h] mov r14, [r8+18h] jmp short loc_6C256 loc_6C250: xor r13d, r13d mov rbp, r14 l...
long long js_typed_array_set( long long a1, long long a2, long long a3, long long a4, long long *a5, long long a6, __m128 a7, __m128 a8, __m128 a9, __m128 a10, __m128 a11, __m128 a12, __m128 a13, __m128 a14)...
js_typed_array_set: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x58 MOV RBX,RDI PUSH 0x3 POP R14 CMP ECX,0x2 JL 0x0016c250 MOV RBP,R14 MOV R13,qword ptr [R8 + 0x10] MOV R14,qword ptr [R8 + 0x18] JMP 0x0016c256 LAB_0016c250: XOR R13D,R13D MOV RBP,R14 LAB_0016c256: MOV R15,qword ptr [R8] MOV R12,qword ...
int1 [16] js_typed_array_set(int8 param_1,int8 param_2,int8 param_3,int param_4, int8 *param_5) { byte bVar1; ushort uVar2; ushort uVar3; int8 uVar4; int8 uVar5; long lVar6; long lVar7; long lVar8; long lVar9; int iVar10; long lVar11; ulong uVar13; uint uVar14; int8 uVar...
8,482
js_worker_get_onmessage
bluesky950520[P]quickjs/quickjs-libc.c
static JSValue js_worker_get_onmessage(JSContext *ctx, JSValue this_val) { JSRuntime *rt = JS_GetRuntime(ctx); JSThreadState *ts = js_get_thread_state(rt); JSWorkerData *worker = JS_GetOpaque2(ctx, this_val, ts->worker_class_id); JSWorkerMessageHandler *port; if (!worker) return JS_EXCEPTION...
O2
c
js_worker_get_onmessage: pushq %r15 pushq %r14 pushq %rbx movq %rdx, %r14 movq %rsi, %r15 movq %rdi, %rbx callq 0x1a185 movq %rax, %rdi callq 0x1028a movl 0x7c(%rax), %ecx movq %rbx, %rdi movq %r15, %rsi movq %r14, %rdx callq 0x21207 testq %rax, %rax je 0x13156 movq 0x10(%rax), %rax testq %rax, %rax je 0x1315a movq 0x1...
js_worker_get_onmessage: push r15 push r14 push rbx mov r14, rdx mov r15, rsi mov rbx, rdi call JS_GetRuntime mov rdi, rax call js_get_thread_state mov ecx, [rax+7Ch] mov rdi, rbx mov rsi, r15 mov rdx, r14 call JS_GetOpaque2 test rax, rax jz short loc_13156 mov ...
unsigned long long js_worker_get_onmessage(long long a1, long long a2, long long a3) { int Runtime; // eax int v5; // edx int v6; // ecx int v7; // r8d int v8; // r9d long long thread_state; // rax long long Opaque2; // rax long long v11; // rax unsigned long long v12; // rcx long long v13; // rax ...
js_worker_get_onmessage: PUSH R15 PUSH R14 PUSH RBX MOV R14,RDX MOV R15,RSI MOV RBX,RDI CALL 0x0011a185 MOV RDI,RAX CALL 0x0011028a MOV ECX,dword ptr [RAX + 0x7c] MOV RDI,RBX MOV RSI,R15 MOV RDX,R14 CALL 0x00121207 TEST RAX,RAX JZ 0x00113156 MOV RAX,qword ptr [RAX + 0x10] TEST RAX,RAX JZ 0x0011315a MOV RSI,qword ptr [R...
ulong js_worker_get_onmessage(int8 param_1,int8 param_2,int8 param_3) { int8 uVar1; long lVar2; ulong uVar3; ulong uVar4; uVar1 = JS_GetRuntime(); lVar2 = js_get_thread_state(uVar1); lVar2 = JS_GetOpaque2(param_1,param_2,param_3,*(int4 *)(lVar2 + 0x7c)); if ((lVar2 == 0) || (lVar2 = *(long *)(lVar2...
8,483
BAIL_OUT
eloqsql/libmariadb/unittest/mytap/tap.c
void BAIL_OUT(char const *fmt, ...) { va_list ap; va_start(ap, fmt); fprintf(tapout, "Bail out! "); vfprintf(tapout, fmt, ap); emit_endl(); va_end(ap); exit(255); }
O3
c
BAIL_OUT: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx subq $0xc8, %rsp movq %rdi, %rbx leaq -0xe0(%rbp), %rdi movq %rsi, 0x8(%rdi) movq %rdx, 0x10(%rdi) movq %rcx, 0x18(%rdi) movq %r8, 0x20(%rdi) movq %r9, 0x28(%rdi) testb %al, %al je 0x15457 movaps %xmm0, -0xb0(%rbp) movaps %xmm1, -0xa0(%rbp) movaps %x...
BAIL_OUT: push rbp mov rbp, rsp push r15 push r14 push rbx sub rsp, 0C8h mov rbx, rdi lea rdi, [rbp+var_E0] mov [rdi+8], rsi mov [rdi+10h], rdx mov [rdi+18h], rcx mov [rdi+20h], r8 mov [rdi+28h], r9 test al, al jz short loc_15457 movaps [rbp+var_B0], xmm0 movaps ...
void __noreturn BAIL_OUT( long long a1, long long a2, long long a3, long long a4, long long a5, long long a6, __m128 a7, __m128 a8, __m128 a9, __m128 a10, __m128 a11, __m128 a12, __m128 a13, __m128 a14, ...
BAIL_OUT: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX SUB RSP,0xc8 MOV RBX,RDI LEA RDI,[RBP + -0xe0] MOV qword ptr [RDI + 0x8],RSI MOV qword ptr [RDI + 0x10],RDX MOV qword ptr [RDI + 0x18],RCX MOV qword ptr [RDI + 0x20],R8 MOV qword ptr [RDI + 0x28],R9 TEST AL,AL JZ 0x00115457 MOVAPS xmmword ptr [RBP + -0xb0],XMM0 ...
void BAIL_OUT(int8 param_1,int8 param_2,int8 param_3,int8 param_4, int8 param_5,int8 param_6,int8 param_7,int8 param_8, int8 param_9,int8 param_10,int8 param_11,int8 param_12, int8 param_13,int8 param_14) { int *puVar1; char in_AL; int1 local_e8 [8]; int8 local_e0; int...
8,484
my_coll_parser_scan_character_list
eloqsql/strings/ctype-uca.c
static int my_coll_parser_scan_character_list(MY_COLL_RULE_PARSER *p, my_wc_t *pwc, size_t limit, const char *name) { if (my_coll_parser_curr(p)->term != MY_COLL_LEXEM_CHAR) return my_coll_parser_expected_error(p, MY_COLL_LEXEM_CHAR); if (!m...
O0
c
my_coll_parser_scan_character_list: pushq %rbp movq %rsp, %rbp subq $0x50, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq %rcx, -0x28(%rbp) movq -0x10(%rbp), %rdi callq 0x12f600 cmpl $0x5, (%rax) je 0x1305fc movq -0x10(%rbp), %rdi movl $0x5, %esi callq 0x12ff40 movl %eax, -0x4(%rbp) jmp ...
my_coll_parser_scan_character_list: push rbp mov rbp, rsp sub rsp, 50h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov [rbp+var_28], rcx mov rdi, [rbp+var_10] call my_coll_parser_curr cmp dword ptr [rax], 5 jz short loc_1305FC mov rdi, [rbp+var_10] mo...
long long my_coll_parser_scan_character_list(long long a1, long long a2, long long a3, long long a4) { long long v4; // rax long long v5; // rax if ( *(_DWORD *)my_coll_parser_curr(a1) == 5 ) { v4 = my_coll_parser_curr(a1); if ( (unsigned int)my_coll_rule_expand(a2, a3, *(int *)(v4 + 36)) ) { ...
_ma_keydef_read: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV RAX,qword ptr [RBP + -0x8] MOV RCX,RAX ADD RCX,0x1 MOV qword ptr [RBP + -0x8],RCX MOVZX EAX,byte ptr [RAX] MOV CX,AX MOV RAX,qword ptr [RBP + -0x10] MOV word ptr [RAX + 0xa0],CX MOV RAX,qword ptr [RBP + -0x8] MOV RC...
byte * _ma_keydef_read(byte *param_1,long param_2) { *(ushort *)(param_2 + 0xa0) = (ushort)*param_1; *(byte *)(param_2 + 0xa4) = param_1[1]; *(ushort *)(param_2 + 0xa2) = CONCAT11(param_1[2],param_1[3]); *(ushort *)(param_2 + 0xa6) = CONCAT11(param_1[4],param_1[5]); *(ushort *)(param_2 + 0xaa) = CONCAT11(pa...
8,485
my_casedn_ucs2
eloqsql/strings/ctype-ucs2.c
static size_t my_casedn_ucs2(CHARSET_INFO *cs, const char *src, size_t srclen, char *dst, size_t dstlen) { my_wc_t wc; int res; const char *srcend= src + srclen; char *dstend= dst + dstlen; MY_UNICASE_INFO *uni_plane= cs->caseinfo; DBUG_ASSERT(srclen <= dstlen); while ((src < s...
O3
c
my_casedn_ucs2: movq %rdx, %rax cmpq $0x2, %rdx jl 0x51346 pushq %rbp movq %rsp, %rbp leaq (%rsi,%rax), %rdx addq %rcx, %r8 movq 0x78(%rdi), %rdi addq $0x2, %rcx movzbl (%rsi), %r9d movzbl 0x1(%rsi), %r10d movq 0x8(%rdi), %r11 movq (%r11,%r9,8), %r11 testq %r11, %r11 je 0x5130d leaq (%r10,%r10,2), %r9 movl 0x4(%r11,%r9...
my_casedn_ucs2: mov rax, rdx cmp rdx, 2 jl short locret_51346 push rbp mov rbp, rsp lea rdx, [rsi+rax] add r8, rcx mov rdi, [rdi+78h] add rcx, 2 loc_512EC: movzx r9d, byte ptr [rsi] movzx r10d, byte ptr [rsi+1] mov r11, [rdi+8] mov r11, [r11+r9*8] test r11, r11 jz ...
long long my_casedn_ucs2(long long a1, unsigned __int8 *a2, long long a3, long long a4, long long a5) { long long result; // rax unsigned long long v6; // rdx unsigned long long v7; // r8 long long v8; // rdi unsigned long long v9; // rcx long long v10; // r9 long long v11; // r10 long long v12; // r11...
my_casedn_ucs2: MOV RAX,RDX CMP RDX,0x2 JL 0x00151346 PUSH RBP MOV RBP,RSP LEA RDX,[RSI + RAX*0x1] ADD R8,RCX MOV RDI,qword ptr [RDI + 0x78] ADD RCX,0x2 LAB_001512ec: MOVZX R9D,byte ptr [RSI] MOVZX R10D,byte ptr [RSI + 0x1] MOV R11,qword ptr [RDI + 0x8] MOV R11,qword ptr [R11 + R9*0x8] TEST R11,R11 JZ 0x0015130d LEA R9...
void my_casedn_ucs2(long param_1,byte *param_2,long param_3,long param_4,long param_5) { long lVar1; long lVar2; ulong uVar3; byte *pbVar4; byte *pbVar5; uint uVar6; if (1 < param_3) { lVar1 = *(long *)(param_1 + 0x78); uVar3 = param_4 + 2; pbVar4 = param_2; while( true ) { lVar...
8,486
mysql_stat
eloqsql/libmariadb/libmariadb/mariadb_lib.c
char * STDCALL mysql_stat(MYSQL *mysql) { if (ma_simple_command(mysql, COM_STATISTICS,0,0,0,0)) return mysql->net.last_error; mysql->net.read_pos[mysql->packet_length]=0; /* End of stat string */ if (!mysql->net.read_pos[0]) { SET_CLIENT_ERROR(mysql, CR_WRONG_HOST_INFO , SQLSTATE_UNKNOWN, 0); return...
O3
c
mysql_stat: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movq %rdi, %rbx movq 0x4d0(%rdi), %rax movl $0x9, %esi xorl %edx, %edx xorl %ecx, %ecx xorl %r8d, %r8d xorl %r9d, %r9d callq *0x10(%rax) testl %eax, %eax je 0x1ba35 addq $0x97, %rbx movq %rbx, %r14 jmp 0x1baa3 movq 0x20(%rbx), %rax movq ...
mysql_stat: push rbp mov rbp, rsp push r15 push r14 push rbx push rax mov rbx, rdi mov rax, [rdi+4D0h] mov esi, 9 xor edx, edx xor ecx, ecx xor r8d, r8d xor r9d, r9d call qword ptr [rax+10h] test eax, eax jz short loc_1BA35 add rbx, 97h mov r14, rbx jmp ...
_BYTE * mysql_stat(long long a1) { long long v1; // rax _BYTE *v2; // r14 if ( (*(unsigned int ( **)(long long, long long, _QWORD, _QWORD, _QWORD, _QWORD, long long))(*(_QWORD *)(a1 + 1232) + 16LL))( a1, ...
mysql_stat: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX PUSH RAX MOV RBX,RDI MOV RAX,qword ptr [RDI + 0x4d0] MOV ESI,0x9 XOR EDX,EDX XOR ECX,ECX XOR R8D,R8D XOR R9D,R9D CALL qword ptr [RAX + 0x10] TEST EAX,EAX JZ 0x0011ba35 ADD RBX,0x97 MOV R14,RBX JMP 0x0011baa3 LAB_0011ba35: MOV RAX,qword ptr [RBX + 0x20] MOV RCX...
char * mysql_stat(long param_1) { int iVar1; char *__dest; iVar1 = (**(code **)(*(long *)(param_1 + 0x4d0) + 0x10))(param_1,9,0,0,0,0); if (iVar1 == 0) { *(int1 *)(*(long *)(param_1 + 0x20) + *(long *)(param_1 + 0x358)) = 0; __dest = *(char **)(param_1 + 0x20); if (*__dest == '\0') { *(in...
8,487
random_string[abi:cxx11]()
llama.cpp/examples/server/utils.hpp
static std::string random_string() { static const std::string str("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"); std::random_device rd; std::mt19937 generator(rd()); std::string result(32, ' '); for (int i = 0; i < 32; ++i) { result[i] = str[generator() % str.size()]; ...
O3
cpp
random_string[abi:cxx11](): pushq %r15 pushq %r14 pushq %r12 pushq %rbx subq $0x2718, %rsp # imm = 0x2718 movq %rdi, %rbx movb 0x2dad8b(%rip), %al # 0x312a00 testb %al, %al je 0x37d37 leaq 0x1390(%rsp), %r14 movq %r14, %rdi callq 0x6dd5a movq %r14, %rdi callq 0x25520 movl %eax, %eax movq %rax, 0x8(%rsp) m...
_ZL13random_stringB5cxx11v: push r15 push r14 push r12 push rbx sub rsp, 2718h mov rbx, rdi mov al, cs:_ZGVZL13random_stringB5cxx11vE3strB5cxx11; `guard variable for'random_string(void)::str test al, al jz loc_37D37 loc_37C7D: lea r14, [rsp+2738h+var_13A8] mov rdi, r14; this call...
long long random_string[abi:cxx11](_QWORD *a1) { unsigned long long v1; // rax long long i; // rcx long long j; // r12 _QWORD v5[625]; // [rsp+8h] [rbp-2730h] BYREF _BYTE v6[5032]; // [rsp+1390h] [rbp-13A8h] BYREF if ( !(_BYTE)`guard variable for'random_string[abi:cxx11](void)::str[abi:cxx11] && __cxa...
random_string[abi:cxx11]: PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB RSP,0x2718 MOV RBX,RDI MOV AL,byte ptr [0x00412a00] TEST AL,AL JZ 0x00137d37 LAB_00137c7d: LEA R14,[RSP + 0x1390] MOV RDI,R14 CALL 0x0016dd5a LAB_00137c8d: MOV RDI,R14 CALL 0x00125520 MOV EAX,EAX MOV qword ptr [RSP + 0x8],RAX MOV ECX,0x1 LAB_00137ca1: MO...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ /* WARNING: Unknown calling convention -- yet parameter storage is locked */ /* random_string[abi:cxx11]() */ void random_string_abi_cxx11_(void) { uint uVar1; int iVar2; ulong uVar3; long lVar4; long *in_RDI; ulong loca...
8,488
my_longlong10_to_str_8bit
eloqsql/strings/ctype-simple.c
size_t my_longlong10_to_str_8bit(CHARSET_INFO *cs __attribute__((unused)), char *dst, size_t len, int radix, longlong val) { char buffer[65]; register char *p, *e; long long_val; uint sign= 0; ulonglong uval = (ulonglong)val; if (radix < 0...
O0
c
my_longlong10_to_str_8bit: pushq %rbp movq %rsp, %rbp subq $0xd0, %rsp movq %fs:0x28, %rax movq %rax, -0x8(%rbp) movq %rdi, -0x58(%rbp) movq %rsi, -0x60(%rbp) movq %rdx, -0x68(%rbp) movl %ecx, -0x6c(%rbp) movq %r8, -0x78(%rbp) movl $0x0, -0x94(%rbp) movq -0x78(%rbp), %rax movq %rax, -0xa0(%rbp) cmpl $0x0, -0x6c(%rbp) j...
my_longlong10_to_str_8bit: push rbp mov rbp, rsp sub rsp, 0D0h mov rax, fs:28h mov [rbp+var_8], rax mov [rbp+var_58], rdi mov [rbp+var_60], rsi mov [rbp+var_68], rdx mov [rbp+var_6C], ecx mov [rbp+var_78], r8 mov [rbp+var_94], 0 mov rax, [rbp+var_78] mov [rbp+var_A0], ...
long long my_longlong10_to_str_8bit(long long a1, _BYTE *a2, _BYTE *a3, int a4, long long a5) { char *v5; // rax char *v6; // rax _BYTE *v8; // [rsp+10h] [rbp-C0h] unsigned long long v9; // [rsp+30h] [rbp-A0h] unsigned int v10; // [rsp+3Ch] [rbp-94h] signed long long i; // [rsp+40h] [rbp-90h] char *v12; ...
my_longlong10_to_str_8bit: PUSH RBP MOV RBP,RSP SUB RSP,0xd0 MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x8],RAX MOV qword ptr [RBP + -0x58],RDI MOV qword ptr [RBP + -0x60],RSI MOV qword ptr [RBP + -0x68],RDX MOV dword ptr [RBP + -0x6c],ECX MOV qword ptr [RBP + -0x78],R8 MOV dword ptr [RBP + -0x94],0x0 MOV RAX,q...
long my_longlong10_to_str_8bit (int8 param_1,int1 *param_2,ulong param_3,int param_4,ulong param_5) { char *pcVar1; long in_FS_OFFSET; ulong local_c8; ulong local_a8; uint local_9c; ulong local_98; char *local_88; size_t local_70; int1 *local_68; char local_19 [9]; long local_10; ...
8,489
list_free
eloqsql/mysys/list.c
void list_free(LIST *root, uint free_data) { LIST *next; while (root) { next=root->next; if (free_data) my_free(root->data); my_free(root); root=next; } }
O3
c
list_free: testq %rdi, %rdi je 0x9461a pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movl %esi, %ebx movq %rdi, %r14 movq 0x8(%r14), %r15 testl %ebx, %ebx je 0x94600 movq 0x10(%r14), %rdi callq 0x9ff7e movq %r14, %rdi callq 0x9ff7e movq %r15, %r14 testq %r15, %r15 jne 0x945ef addq $0x8, %rsp po...
list_free: test rdi, rdi jz short locret_9461A push rbp mov rbp, rsp push r15 push r14 push rbx push rax mov ebx, esi mov r14, rdi loc_945EF: mov r15, [r14+8] test ebx, ebx jz short loc_94600 mov rdi, [r14+10h] call my_free loc_94600: mov rdi, r14 call my_fre...
long long list_free(long long a1, int a2) { long long v2; // r14 long long v3; // r15 long long result; // rax if ( a1 ) { v2 = a1; do { v3 = *(_QWORD *)(v2 + 8); if ( a2 ) my_free(*(_QWORD *)(v2 + 16)); result = my_free(v2); v2 = v3; } while ( v3 ); } ...
list_free: TEST RDI,RDI JZ 0x0019461a PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX PUSH RAX MOV EBX,ESI MOV R14,RDI LAB_001945ef: MOV R15,qword ptr [R14 + 0x8] TEST EBX,EBX JZ 0x00194600 MOV RDI,qword ptr [R14 + 0x10] CALL 0x0019ff7e LAB_00194600: MOV RDI,R14 CALL 0x0019ff7e MOV R14,R15 TEST R15,R15 JNZ 0x001945ef A...
void list_free(long param_1,int param_2) { long lVar1; if (param_1 != 0) { do { lVar1 = *(long *)(param_1 + 8); if (param_2 != 0) { my_free(*(int8 *)(param_1 + 0x10)); } my_free(param_1); param_1 = lVar1; } while (lVar1 != 0); } return; }
8,490
translog_write_variable_record_1group_header
eloqsql/storage/maria/ma_loghandler.c
static void translog_write_variable_record_1group_header(struct st_translog_parts *parts, enum translog_record_type type, SHORT_TRANSACTION_ID short_trid, uint16 header_length, ...
O0
c
translog_write_variable_record_1group_header: pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movw %cx, %ax movw %dx, %cx movq %rdi, -0x8(%rbp) movl %esi, -0xc(%rbp) movw %cx, -0xe(%rbp) movw %ax, -0x10(%rbp) movq %r8, -0x18(%rbp) jmp 0x5acf3 movq -0x8(%rbp), %rax movq 0x10(%rax), %rax movq -0x8(%rbp), %rdx movl 0x8(%rdx),...
translog_write_variable_record_1group_header: push rbp mov rbp, rsp sub rsp, 30h mov ax, cx mov cx, dx mov [rbp+var_8], rdi mov [rbp+var_C], esi mov [rbp+var_E], cx mov [rbp+var_10], ax mov [rbp+var_18], r8 jmp short $+2 loc_5ACF3: mov rax, [rbp+var_8] mov rax, [rax+10...
_WORD * translog_write_variable_record_1group_header( unsigned int *a1, char a2, __int16 a3, unsigned __int16 a4, long long a5) { long long v5; // rax unsigned int v6; // ecx _WORD *result; // rax _QWORD *v8; // [rsp+10h] [rbp-20h] v5 = *((_QWORD *)a1 + 2); v6 = a1[2...
translog_write_variable_record_1group_header: PUSH RBP MOV RBP,RSP SUB RSP,0x30 MOV AX,CX MOV CX,DX MOV qword ptr [RBP + -0x8],RDI MOV dword ptr [RBP + -0xc],ESI MOV word ptr [RBP + -0xe],CX MOV word ptr [RBP + -0x10],AX MOV qword ptr [RBP + -0x18],R8 JMP 0x0015acf3 LAB_0015acf3: MOV RAX,qword ptr [RBP + -0x8] MOV RAX,...
void translog_write_variable_record_1group_header (int4 *param_1,int1 param_2,int2 param_3,ushort param_4, int1 *param_5) { int iVar1; int8 *puVar2; iVar1 = param_1[2]; param_1[2] = iVar1 - 1U; puVar2 = (int8 *)(*(long *)(param_1 + 4) + (ulong)(iVar1 - 1U) * 0x10); puVar2[...
8,491
spdlog::logger::err_handler_(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
AlayaLite/build_O0/_deps/spdlog-src/include/spdlog/logger-inl.h
SPDLOG_INLINE void logger::err_handler_(const std::string &msg) { if (custom_err_handler_) { custom_err_handler_(msg); } else { using std::chrono::system_clock; static std::mutex mutex; static std::chrono::system_clock::time_point last_report_time; static size_t err_count...
O0
c
spdlog::logger::err_handler_(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&): subq $0x118, %rsp # imm = 0x118 movq %rdi, 0x110(%rsp) movq %rsi, 0x108(%rsp) movq 0x110(%rsp), %rdi movq %rdi, 0x38(%rsp) addq $0x48, %rdi callq 0x41ca0 testb $0x1, %al jne 0x3e7a3 jmp 0x3e7b...
_ZN6spdlog6logger12err_handler_ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: sub rsp, 118h mov [rsp+118h+var_8], rdi mov [rsp+118h+var_10], rsi mov rdi, [rsp+118h+var_8] mov [rsp+118h+var_E0], rdi add rdi, 48h ; 'H' call _ZNKSt8functionIFvRKNSt7__cxx1112basic_stringIcSt11char_trait...
long long spdlog::logger::err_handler_(long long a1, long long a2) { long long v3; // rax const char *v4; // rax long long v5; // [rsp+8h] [rbp-110h] long long v6; // [rsp+10h] [rbp-108h] const char *v7; // [rsp+20h] [rbp-F8h] char v8[64]; // [rsp+40h] [rbp-D8h] BYREF long long v9; // [rsp+80h] [rbp-98h]...
err_handler_: SUB RSP,0x118 MOV qword ptr [RSP + 0x110],RDI MOV qword ptr [RSP + 0x108],RSI MOV RDI,qword ptr [RSP + 0x110] MOV qword ptr [RSP + 0x38],RDI ADD RDI,0x48 CALL 0x00141ca0 TEST AL,0x1 JNZ 0x0013e7a3 JMP 0x0013e7be LAB_0013e7a3: MOV RDI,qword ptr [RSP + 0x38] ADD RDI,0x48 MOV RSI,qword ptr [RSP + 0x108] CALL...
/* spdlog::logger::err_handler_(std::__cxx11::string const&) */ void __thiscall spdlog::logger::err_handler_(logger *this,string *param_1) { FILE *__stream; long lVar1; bool bVar2; ulong uVar3; string *this_00; int8 uVar4; int8 uVar5; char local_d8 [64]; long local_98; tm local_90; uint local_5...
8,492
mariadb_compression_algorithm_str
eloqsql/libmariadb/libmariadb/ma_compress.c
const char *_mariadb_compression_algorithm_str(enum enum_ma_compression_algorithm algorithm) { switch(algorithm) { case COMPRESSION_NONE: case COMPRESSION_ZLIB: case COMPRESSION_ZSTD: return compression_algorithms[algorithm] ; default: return compression_algorithms[COMPRESSION_UNKNOWN]; ...
O0
c
mariadb_compression_algorithm_str: pushq %rbp movq %rsp, %rbp movl %edi, -0xc(%rbp) movl -0xc(%rbp), %eax subl $0x2, %eax ja 0x4a417 jmp 0x4a401 movl -0xc(%rbp), %eax movl %eax, %ecx leaq 0x1e99d3(%rip), %rax # 0x233de0 movq (%rax,%rcx,8), %rax movq %rax, -0x8(%rbp) jmp 0x4a426 leaq 0x1e99c2(%rip), %rax # 0x233de...
_mariadb_compression_algorithm_str: push rbp mov rbp, rsp mov [rbp+var_C], edi mov eax, [rbp+var_C] sub eax, 2 ja short loc_4A417 jmp short $+2 loc_4A401: mov eax, [rbp+var_C] mov ecx, eax lea rax, compression_algorithms mov rax, [rax+rcx*8] mov [rbp+var_8], rax jmp s...
char * mariadb_compression_algorithm_str(unsigned int a1) { if ( a1 > 2 ) return compression_algorithms[3]; else return compression_algorithms[a1]; }
_mariadb_compression_algorithm_str: PUSH RBP MOV RBP,RSP MOV dword ptr [RBP + -0xc],EDI MOV EAX,dword ptr [RBP + -0xc] SUB EAX,0x2 JA 0x0014a417 JMP 0x0014a401 LAB_0014a401: MOV EAX,dword ptr [RBP + -0xc] MOV ECX,EAX LEA RAX,[0x333de0] MOV RAX,qword ptr [RAX + RCX*0x8] MOV qword ptr [RBP + -0x8],RAX JMP 0x0014a426 LAB_...
int8 _mariadb_compression_algorithm_str(uint param_1) { int8 local_10; if (param_1 < 3) { local_10 = *(int8 *)(compression_algorithms + (ulong)param_1 * 8); } else { local_10 = compression_algorithms._24_8_; } return local_10; }
8,493
post_add_n_dbl
corpus-core[P]colibri-stateless/build_O3/_deps/blst-src/src/pairing.c
static void post_add_n_dbl(vec384fp12 ret, const vec384fp6 lines[], const POINTonE1_affine *Px2, size_t n) { vec384fp6 line; post_line_by_Px2(line, lines++[0], Px2); mul_by_xy00z0_fp12(ret, ret, line); while (n--) { sqr_fp12(ret, ret); post_line_by_Px2(line, l...
O3
c
post_add_n_dbl: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x128, %rsp # imm = 0x128 movq %rcx, %rbx movq %rdx, %r14 movq %rsi, %r15 movq %rdi, %r12 leaq -0x150(%rbp), %r13 movq %r13, %rdi callq 0x28624 movq %r12, %rdi movq %r12, %rsi movq %r13, %rdx callq 0x1f200...
post_add_n_dbl: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 128h mov rbx, rcx mov r14, rdx mov r15, rsi mov r12, rdi lea r13, [rbp+var_150] mov rdi, r13 call post_line_by_Px2 mov rdi, r12 mov rsi, r12 mov rdx, r13 call m...
long long post_add_n_dbl(long long a1, char *a2, long long a3, long long a4) { long long result; // rax char *v7; // r15 char v8[336]; // [rsp+0h] [rbp-150h] BYREF post_line_by_Px2(v8, a2, a3); result = mul_by_xy00z0_fp12(a1, a1, v8); if ( a4 ) { v7 = a2 + 288; do { sqr_fp12(a1, a1); ...
post_add_n_dbl: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x128 MOV RBX,RCX MOV R14,RDX MOV R15,RSI MOV R12,RDI LEA R13,[RBP + -0x150] MOV RDI,R13 CALL 0x00128624 MOV RDI,R12 MOV RSI,R12 MOV RDX,R13 CALL 0x0011f200 TEST RBX,RBX JZ 0x00128748 ADD R15,0x120 LAB_00128715: MOV RDI,R12 MOV RS...
void post_add_n_dbl(int8 param_1,long param_2,int8 param_3,long param_4) { int1 local_158 [296]; post_line_by_Px2(local_158); mul_by_xy00z0_fp12(param_1,param_1,local_158); if (param_4 != 0) { param_2 = param_2 + 0x120; do { sqr_fp12(param_1,param_1); post_line_by_Px2(local_158,param_2,...
8,494
my_charset_loader_init_mysys
eloqsql/mysys/charset.c
void my_charset_loader_init_mysys(MY_CHARSET_LOADER *loader) { loader->error[0]= '\0'; loader->once_alloc= my_once_alloc_c; loader->malloc= my_malloc_c; loader->realloc= my_realloc_c; loader->free= my_free; loader->reporter= my_charset_error_reporter; loader->add_collation= add_collation; }
O0
c
my_charset_loader_init_mysys: pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax movb $0x0, (%rax) movq -0x8(%rbp), %rax leaq 0x66(%rip), %rcx # 0x2af20 movq %rcx, 0x80(%rax) movq -0x8(%rbp), %rax leaq 0x74(%rip), %rcx # 0x2af40 movq %rcx, 0x88(%rax) movq -0x8(%rbp), %rax leaq 0x92(%ri...
my_charset_loader_init_mysys: push rbp mov rbp, rsp mov [rbp+var_8], rdi mov rax, [rbp+var_8] mov byte ptr [rax], 0 mov rax, [rbp+var_8] lea rcx, my_once_alloc_c mov [rax+80h], rcx mov rax, [rbp+var_8] lea rcx, my_malloc_c mov [rax+88h], rcx mov rax, [rbp+var_8] lea rc...
long long my_charset_loader_init_mysys(long long a1) { long long result; // rax *(_BYTE *)a1 = 0; *(_QWORD *)(a1 + 128) = my_once_alloc_c; *(_QWORD *)(a1 + 136) = my_malloc_c; *(_QWORD *)(a1 + 144) = my_realloc_c; *(_QWORD *)(a1 + 152) = my_free; *(_QWORD *)(a1 + 160) = my_charset_error_reporter; resu...
my_charset_loader_init_mysys: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x8],RDI MOV RAX,qword ptr [RBP + -0x8] MOV byte ptr [RAX],0x0 MOV RAX,qword ptr [RBP + -0x8] LEA RCX,[0x12af20] MOV qword ptr [RAX + 0x80],RCX MOV RAX,qword ptr [RBP + -0x8] LEA RCX,[0x12af40] MOV qword ptr [RAX + 0x88],RCX MOV RAX,qword ptr [RBP...
void my_charset_loader_init_mysys(int1 *param_1) { *param_1 = 0; *(code **)(param_1 + 0x80) = my_once_alloc_c; *(code **)(param_1 + 0x88) = my_malloc_c; *(code **)(param_1 + 0x90) = my_realloc_c; *(code **)(param_1 + 0x98) = my_free; *(int **)(param_1 + 0xa0) = my_charset_error_reporter; *(code **)(para...
8,495
evmone::Memory::allocate_capacity()
corpus-core[P]colibri-stateless/build_O2/_deps/evmone_external-src/lib/evmone/execution_state.hpp
void allocate_capacity() noexcept { m_data.reset(static_cast<uint8_t*>(std::realloc(m_data.release(), m_capacity))); if (!m_data) [[unlikely]] handle_out_of_memory(); }
O2
cpp
evmone::Memory::allocate_capacity(): pushq %rbx movq %rdi, %rbx movq (%rdi), %rdi movq 0x10(%rbx), %rsi andq $0x0, (%rbx) callq 0x220b0 movq %rbx, %rdi movq %rax, %rsi callq 0x2fa1e cmpq $0x0, (%rbx) je 0x2fa19 popq %rbx retq callq 0x22580
_ZN6evmone6Memory17allocate_capacityEv: push rbx mov rbx, rdi mov rdi, [rdi] mov rsi, [rbx+10h] and qword ptr [rbx], 0 call _realloc mov rdi, rbx; this mov rsi, rax call _ZNSt15__uniq_ptr_implIhN6evmone6Memory11FreeDeleterEE5resetEPh; std::__uniq_ptr_impl<uchar,evmone::Memory::FreeDelet...
long long evmone::Memory::allocate_capacity(evmone::Memory *this) { long long v2; // rdi long long v3; // rsi long long v4; // rax long long result; // rax v2 = *(_QWORD *)this; v3 = *((_QWORD *)this + 2); *(_QWORD *)this = 0LL; v4 = realloc(v2, v3); result = std::__uniq_ptr_impl<unsigned char,evmon...
allocate_capacity: PUSH RBX MOV RBX,RDI MOV RDI,qword ptr [RDI] MOV RSI,qword ptr [RBX + 0x10] AND qword ptr [RBX],0x0 CALL 0x001220b0 MOV RDI,RBX MOV RSI,RAX CALL 0x0012fa1e CMP qword ptr [RBX],0x0 JZ 0x0012fa19 POP RBX RET LAB_0012fa19: CALL 0x00122580
/* evmone::Memory::allocate_capacity() */ void __thiscall evmone::Memory::allocate_capacity(Memory *this) { void *pvVar1; uchar *puVar2; Memory *pMVar3; pvVar1 = *(void **)this; *(int8 *)this = 0; puVar2 = (uchar *)realloc(pvVar1,*(size_t *)(this + 0x10)); pMVar3 = this; std::__uniq_ptr_impl<unsig...
8,496
int ankerl::nanobench::detail::parseFile<int>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, bool*)
BadAccessGuards/build_O3/_deps/nanobench-src/src/include/nanobench.h
T parseFile(std::string const& filename, bool* fail) { std::ifstream fin(filename); // NOLINT(misc-const-correctness) T num{}; fin >> num; if (fail != nullptr) { *fail = fin.fail(); } return num; }
O3
c
int ankerl::nanobench::detail::parseFile<int>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, bool*): pushq %r14 pushq %rbx subq $0x218, %rsp # imm = 0x218 movq %rsi, %rbx movq %rdi, %rsi leaq 0x10(%rsp), %r14 movq %r14, %rdi movl $0x8, %edx callq 0x3510 leaq 0xc(%rsp),...
_ZN6ankerl9nanobench6detail9parseFileIiEET_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPb: push r14 push rbx sub rsp, 218h mov rbx, rsi mov rsi, rdi lea r14, [rsp+228h+var_218] mov rdi, r14 mov edx, 8 call __ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1ERKNSt7__cxx1112basic_stri...
long long ankerl::nanobench::detail::parseFile<int>(long long a1, bool *a2) { unsigned int v2; // ebx unsigned int v4; // [rsp+Ch] [rbp-21Ch] BYREF _QWORD v5[67]; // [rsp+10h] [rbp-218h] BYREF std::ifstream::basic_ifstream(v5, a1, 8LL); v4 = 0; std::istream::operator>>(v5, &v4); if ( a2 ) *a2 = (*((...
parseFile<int>: PUSH R14 PUSH RBX SUB RSP,0x218 MOV RBX,RSI MOV RSI,RDI LEA R14,[RSP + 0x10] MOV RDI,R14 MOV EDX,0x8 CALL 0x00103510 LEA RSI,[RSP + 0xc] MOV dword ptr [RSI],0x0 LAB_0010d833: MOV RDI,R14 CALL 0x00103190 LAB_0010d83b: TEST RBX,RBX JZ 0x0010d851 MOV RAX,qword ptr [RSP + 0x10] MOV RAX,qword ptr [RAX + -0x1...
/* int ankerl::nanobench::detail::parseFile<int>(std::__cxx11::string const&, bool*) */ int ankerl::nanobench::detail::parseFile<int>(string *param_1,bool *param_2) { int iVar1; int local_21c; long local_218 [4]; byte abStack_1f8 [488]; std::ifstream::ifstream((ifstream *)local_218,param_1,8); local_2...
8,497
add_compiled_extra_collation
eloqsql/mysys/charset.c
void add_compiled_extra_collation(struct charset_info_st *cs) { DBUG_ASSERT(cs->number < array_elements(all_charsets)); all_charsets[cs->number]= cs; cs->state|= MY_CS_AVAILABLE; if ((my_hash_insert(&charset_name_hash, (uchar*) cs))) { CHARSET_INFO *org= (CHARSET_INFO*) my_hash_search(&charset_name_hash, ...
O0
c
add_compiled_extra_collation: pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) jmp 0x6ce5e movq -0x8(%rbp), %rdx movq -0x8(%rbp), %rax movl (%rax), %eax movl %eax, %ecx leaq 0x38a9ef(%rip), %rax # 0x3f7860 movq %rdx, (%rax,%rcx,8) movq -0x8(%rbp), %rax movl 0xc(%rax), %ecx orl $0x200, %ecx ...
add_compiled_extra_collation: push rbp mov rbp, rsp sub rsp, 10h mov [rbp+var_8], rdi jmp short $+2 loc_6CE5E: mov rdx, [rbp+var_8] mov rax, [rbp+var_8] mov eax, [rax] mov ecx, eax lea rax, all_charsets mov [rax+rcx*8], rdx mov rax, [rbp+var_8] mov ecx, [rax+0Ch] or ...
long long add_compiled_extra_collation(unsigned int *a1) { long long result; // rax long long v2; // [rsp+0h] [rbp-10h] all_charsets[*a1] = a1; a1[3] |= 0x200u; result = my_hash_insert(&charset_name_hash, a1); if ( (_BYTE)result ) { v2 = my_hash_search(&charset_name_hash, *((_QWORD *)a1 + 2), *((_QW...
add_compiled_extra_collation: PUSH RBP MOV RBP,RSP SUB RSP,0x10 MOV qword ptr [RBP + -0x8],RDI JMP 0x0016ce5e LAB_0016ce5e: MOV RDX,qword ptr [RBP + -0x8] MOV RAX,qword ptr [RBP + -0x8] MOV EAX,dword ptr [RAX] MOV ECX,EAX LEA RAX,[0x4f7860] MOV qword ptr [RAX + RCX*0x8],RDX MOV RAX,qword ptr [RBP + -0x8] MOV ECX,dword ...
void add_compiled_extra_collation(uint *param_1) { char cVar1; long lVar2; (&all_charsets)[*param_1] = param_1; param_1[3] = param_1[3] | 0x200; cVar1 = my_hash_insert(charset_name_hash,param_1); if (cVar1 != '\0') { lVar2 = my_hash_search(charset_name_hash,*(int8 *)(param_1 + 4), ...
8,498
my_wc_mb_utf8mb4_no_range
eloqsql/strings/ctype-utf8.c
static int my_wc_mb_utf8mb4_no_range(CHARSET_INFO *cs __attribute__((unused)), my_wc_t wc, uchar *r) { int count; if (wc < 0x80) count= 1; else if (wc < 0x800) count= 2; else if (wc < 0x10000) count= 3; else if (wc < 0x200000) count= 4; else return MY_CS_ILUNI;...
O3
c
my_wc_mb_utf8mb4_no_range: pushq %rbp movq %rsp, %rbp movl $0x1, %eax cmpq $0x80, %rdi jb 0xd5385 movl $0x2, %eax cmpq $0x800, %rdi # imm = 0x800 jb 0xd536f movl $0x3, %eax cmpq $0x10000, %rdi # imm = 0x10000 jb 0xd5359 xorl %eax, %eax cmpq $0x1fffff, %rdi # imm = 0x1FFFFF ja 0xd5388 movl %e...
my_wc_mb_utf8mb4_no_range: push rbp mov rbp, rsp mov eax, 1 cmp rdi, 80h jb short loc_D5385 mov eax, 2 cmp rdi, 800h jb short loc_D536F mov eax, 3 cmp rdi, 10000h jb short loc_D5359 xor eax, eax cmp rdi, offset unk_1FFFFF ja short loc_D5388 mov eax, edi and...
long long my_wc_mb_utf8mb4_no_range(unsigned long long a1, _BYTE *a2) { long long result; // rax result = 1LL; if ( a1 >= 0x80 ) { result = 2LL; if ( a1 >= 0x800 ) { result = 3LL; if ( a1 >= 0x10000 ) { result = 0LL; if ( a1 > (unsigned long long)&unk_1FFFFF ) ...
my_wc_mb_utf8mb4_no_range: PUSH RBP MOV RBP,RSP MOV EAX,0x1 CMP RDI,0x80 JC 0x001d5385 MOV EAX,0x2 CMP RDI,0x800 JC 0x001d536f MOV EAX,0x3 CMP RDI,0x10000 JC 0x001d5359 XOR EAX,EAX CMP RDI,0x1fffff JA 0x001d5388 MOV EAX,EDI AND AL,0x3f OR AL,0x80 MOV byte ptr [RSI + 0x3],AL SHR RDI,0x6 OR RDI,0x10000 MOV EAX,0x4 LAB_00...
int8 my_wc_mb_utf8mb4_no_range(ulong param_1,int1 *param_2) { int8 uVar1; uVar1 = 1; if (0x7f < param_1) { uVar1 = 2; if (0x7ff < param_1) { uVar1 = 3; if (0xffff < param_1) { if (0x1fffff < param_1) { return 0; } param_2[3] = (byte)param_1 & 0x3f | 0x80;...
8,499
pfs_unlock_mutex_v1
eloqsql/storage/perfschema/pfs.cc
void pfs_unlock_mutex_v1(PSI_mutex *mutex) { PFS_mutex *pfs_mutex= reinterpret_cast<PFS_mutex*> (mutex); assert(pfs_mutex != NULL); /* Note that this code is still protected by the instrumented mutex, and therefore is thread safe. See inline_mysql_mutex_unlock(). */ /* Always update the instrumente...
O0
cpp
pfs_unlock_mutex_v1: pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax movq %rax, -0x10(%rbp) movq -0x10(%rbp), %rax movq $0x0, 0x40(%rax) movq -0x10(%rbp), %rax movq $0x0, 0x48(%rax) popq %rbp retq nopw (%rax,%rax)
pfs_unlock_mutex_v1: push rbp mov rbp, rsp mov [rbp+var_8], rdi mov rax, [rbp+var_8] mov [rbp+var_10], rax mov rax, [rbp+var_10] mov qword ptr [rax+40h], 0 mov rax, [rbp+var_10] mov qword ptr [rax+48h], 0 pop rbp retn
long long pfs_unlock_mutex_v1(long long a1) { long long result; // rax *(_QWORD *)(a1 + 64) = 0LL; result = a1; *(_QWORD *)(a1 + 72) = 0LL; return result; }
pfs_unlock_mutex_v1: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x8],RDI MOV RAX,qword ptr [RBP + -0x8] MOV qword ptr [RBP + -0x10],RAX MOV RAX,qword ptr [RBP + -0x10] MOV qword ptr [RAX + 0x40],0x0 MOV RAX,qword ptr [RBP + -0x10] MOV qword ptr [RAX + 0x48],0x0 POP RBP RET
void pfs_unlock_mutex_v1(long param_1) { *(int8 *)(param_1 + 0x40) = 0; *(int8 *)(param_1 + 0x48) = 0; return; }