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
26,200
reaction::FieldGraph::getMeta(reaction::ObserverFieldNode*)
reaction/include/reaction/observerNode.h
DataNodePtr getMeta(ObserverFieldNode *node) { return m_fieldObservers[node]; }
O3
c
reaction::FieldGraph::getMeta(reaction::ObserverFieldNode*): pushq %rbx subq $0x10, %rsp movq %rdi, %rbx leaq 0x8(%rsp), %rax movq %rdx, (%rax) leaq 0x38(%rsi), %rdi movq %rax, %rsi callq 0x5cae movq (%rax), %rcx movq %rcx, (%rbx) movq 0x8(%rax), %rax movq %rax, 0x8(%rbx) testq %rax, %rax je 0xb4c0 movq 0x8b0e(%rip), %...
_ZN8reaction10FieldGraph7getMetaEPNS_17ObserverFieldNodeE: push rbx sub rsp, 10h mov rbx, rdi lea rax, [rsp+18h+var_10] mov [rax], rdx lea rdi, [rsi+38h] mov rsi, rax call _ZNSt8__detail9_Map_baseIPN8reaction17ObserverFieldNodeESt4pairIKS3_St10shared_ptrINS1_16ObserverDataNodeEEESaIS9_ENS_...
reaction::FieldGraph * reaction::FieldGraph::getMeta( reaction::FieldGraph *this, reaction::ObserverFieldNode *a2, unsigned long long a3) { _QWORD *v3; // rax long long v4; // rax unsigned long long v6; // [rsp+8h] [rbp-10h] BYREF v6 = a3; v3 = std::__detail::_Map_base<reaction::Obser...
getMeta: PUSH RBX SUB RSP,0x10 MOV RBX,RDI LEA RAX,[RSP + 0x8] MOV qword ptr [RAX],RDX LEA RDI,[RSI + 0x38] MOV RSI,RAX CALL 0x00105cae MOV RCX,qword ptr [RAX] MOV qword ptr [RBX],RCX MOV RAX,qword ptr [RAX + 0x8] MOV qword ptr [RBX + 0x8],RAX TEST RAX,RAX JZ 0x0010b4c0 MOV RCX,qword ptr [0x00113fc0] CMP byte ptr [RCX]...
/* reaction::FieldGraph::getMeta(reaction::ObserverFieldNode*) */ ObserverFieldNode * reaction::FieldGraph::getMeta(ObserverFieldNode *param_1) { long lVar1; int8 *puVar2; long in_RSI; ObserverFieldNode *local_10; puVar2 = (int8 *) std::__detail:: _Map_base<reaction::ObserverFieldN...
26,201
evmone::baseline::(anonymous namespace)::invoke(evmone::Result (*)(evmone::StackTop, long, evmone::ExecutionState&, unsigned char const*&) noexcept, evmone::baseline::(anonymous namespace)::Position, long&, evmone::ExecutionState&)
corpus-core[P]colibri-stateless/build_O0/_deps/evmone_external-src/lib/evmone/baseline_execution.cpp
[[release_inline]] inline code_iterator invoke( Result (*instr_fn)(StackTop, int64_t, ExecutionState&, code_iterator&) noexcept, Position pos, int64_t& gas, ExecutionState& state) noexcept { const auto result = instr_fn(pos.stack_top, gas, state, pos.code_it); gas = result.gas_left; if (result.statu...
O0
cpp
evmone::baseline::(anonymous namespace)::invoke(evmone::Result (*)(evmone::StackTop, long, evmone::ExecutionState&, unsigned char const*&) noexcept, evmone::baseline::(anonymous namespace)::Position, long&, evmone::ExecutionState&): pushq %rbp movq %rsp, %rbp subq $0x50, %rsp movq %rsi, -0x18(%rbp) movq %rdx, -0x10(%rb...
_ZN6evmone8baseline12_GLOBAL__N_16invokeEPDoFNS_6ResultENS_8StackTopElRNS_14ExecutionStateERPKhENS1_8PositionERlS5_: push rbp mov rbp, rsp sub rsp, 50h mov [rbp+var_18], rsi mov [rbp+var_10], rdx mov [rbp+var_20], rdi mov [rbp+var_28], rcx mov [rbp+var_30], r8 mov rax, [rbp+var_20] mo...
long long evmone::baseline::`anonymous namespace'::invoke( long long ( *a1)(_QWORD, _QWORD, _QWORD, _QWORD), long long a2, long long a3, _QWORD *a4, long long a5) { long long v5; // rdx long long v7; // [rsp+8h] [rbp-48h] BYREF int v8; // [rsp+10h] [rbp-40h] long long v9...
invoke: PUSH RBP MOV RBP,RSP SUB RSP,0x50 MOV qword ptr [RBP + -0x18],RSI MOV qword ptr [RBP + -0x10],RDX MOV qword ptr [RBP + -0x20],RDI MOV qword ptr [RBP + -0x28],RCX MOV qword ptr [RBP + -0x30],R8 MOV RAX,qword ptr [RBP + -0x20] MOV qword ptr [RBP + -0x50],RAX MOV RSI,qword ptr [RBP + -0x10] LEA RDI,[RBP + -0x48] C...
/* evmone::baseline::(anonymous namespace)::invoke(evmone::Result (*)(evmone::StackTop, long, evmone::ExecutionState&, unsigned char const*&) noexcept, evmone::baseline::(anonymous namespace)::Position, long&, evmone::ExecutionState&) */ int8 __thiscall evmone::baseline::(anonymous_namespace)::invoke ...
26,202
ftxui::Renderer(std::function<std::shared_ptr<ftxui::Node> (std::shared_ptr<ftxui::Node>)>)
Andrewchistyakov[P]flashcards_lyc/build_O1/_deps/ftxui-src/src/ftxui/component/renderer.cpp
ComponentDecorator Renderer(ElementDecorator decorator) { // NOLINT return [decorator](Component component) { // NOLINT return Renderer(component, [component, decorator] { return component->Render() | decorator; }); }; }
O1
cpp
ftxui::Renderer(std::function<std::shared_ptr<ftxui::Node> (std::shared_ptr<ftxui::Node>)>): pushq %rbx subq $0x20, %rsp movq %rdi, %rbx movq %rsp, %rdi callq 0x26520 xorps %xmm0, %xmm0 movups %xmm0, 0x10(%rbx) movups %xmm0, (%rbx) movl $0x20, %edi callq 0xb3e0 xorps %xmm0, %xmm0 movups %xmm0, (%rax) movq $0x0, 0x10(%r...
_ZN5ftxui8RendererESt8functionIFSt10shared_ptrINS_4NodeEES3_EE: push rbx sub rsp, 20h mov rbx, rdi mov rdi, rsp call _ZNSt8functionIFSt10shared_ptrIN5ftxui4NodeEES3_EEC2ERKS5_; std::function<std::shared_ptr<ftxui::Node> ()(std::shared_ptr<ftxui::Node>)>::function(std::function<std::shared_ptr<ftxui::N...
long long ftxui::Renderer(long long a1, long long a2) { long long v2; // rax long long v3; // rcx __int128 v5; // [rsp+0h] [rbp-28h] BYREF __int128 v6; // [rsp+10h] [rbp-18h] std::function<std::shared_ptr<ftxui::Node> ()(std::shared_ptr<ftxui::Node>)>::function((long long)&v5, a2); *(_OWORD *)(a1 + 16) = ...
Renderer: PUSH RBX SUB RSP,0x20 MOV RBX,RDI MOV RDI,RSP CALL 0x00126520 XORPS XMM0,XMM0 MOVUPS xmmword ptr [RBX + 0x10],XMM0 MOVUPS xmmword ptr [RBX],XMM0 LAB_0012d30b: MOV EDI,0x20 CALL 0x0010b3e0 XORPS XMM0,XMM0 MOVUPS xmmword ptr [RAX],XMM0 MOV qword ptr [RAX + 0x10],0x0 MOV RCX,qword ptr [RSP + 0x18] MOV qword ptr ...
/* ftxui::Renderer(std::function<std::shared_ptr<ftxui::Node> (std::shared_ptr<ftxui::Node>)>) */ ftxui * __thiscall ftxui::Renderer(ftxui *this,function *param_2) { int8 *puVar1; int8 local_28; int8 uStack_20; code *local_18; int8 uStack_10; std::function<std::shared_ptr<ftxui::Node>(std::shared_ptr<...
26,203
my_numcells_cp932
eloqsql/strings/ctype-cp932.c
static size_t my_numcells_cp932(CHARSET_INFO *cs __attribute__((unused)), const char *str, const char *str_end) { size_t clen= 0; const uchar *b= (const uchar *) str; const uchar *e= (const uchar *) str_end; for (clen= 0; b < e; ) { if (*b >= 0xA1 && *b <= 0xDF) { clen++...
O3
c
my_numcells_cp932: cmpq %rdx, %rsi jae 0xad45f pushq %rbp movq %rsp, %rbp xorl %eax, %eax movl $0x1, %ecx movb (%rsi), %dil leal 0x5f(%rdi), %r8d shrb $0x7, %dil movzbl %dil, %edi incq %rdi cmpb $0x3f, %r8b cmovbq %rcx, %rdi addq %rdi, %rax addq %rdi, %rsi cmpq %rdx, %rsi jb 0xad438 popq %rbp retq xorl %eax, %eax retq
my_numcells_cp932: cmp rsi, rdx jnb short loc_AD45F push rbp mov rbp, rsp xor eax, eax mov ecx, 1 loc_AD438: mov dil, [rsi] lea r8d, [rdi+5Fh] shr dil, 7 movzx edi, dil inc rdi cmp r8b, 3Fh ; '?' cmovb rdi, rcx add rax, rdi add rsi, rdi cmp rsi, rdx jb sho...
long long my_numcells_cp932(long long a1, _BYTE *a2, unsigned long long a3) { long long result; // rax long long v4; // rdi if ( (unsigned long long)a2 >= a3 ) return 0LL; result = 0LL; do { v4 = (*a2 >> 7) + 1LL; if ( (unsigned __int8)(*a2 + 95) < 0x3Fu ) v4 = 1LL; result += v4; ...
my_numcells_cp932: CMP RSI,RDX JNC 0x001ad45f PUSH RBP MOV RBP,RSP XOR EAX,EAX MOV ECX,0x1 LAB_001ad438: MOV DIL,byte ptr [RSI] LEA R8D,[RDI + 0x5f] SHR DIL,0x7 MOVZX EDI,DIL INC RDI CMP R8B,0x3f CMOVC RDI,RCX ADD RAX,RDI ADD RSI,RDI CMP RSI,RDX JC 0x001ad438 POP RBP RET LAB_001ad45f: XOR EAX,EAX RET
long my_numcells_cp932(int8 param_1,byte *param_2,byte *param_3) { long lVar1; long lVar2; if (param_2 < param_3) { lVar1 = 0; do { lVar2 = (ulong)(*param_2 >> 7) + 1; if ((byte)(*param_2 + 0x5f) < 0x3f) { lVar2 = 1; } lVar1 = lVar1 + lVar2; param_2 = param_2 + l...
26,204
minja::ExpressionNode::do_render(std::__cxx11::basic_ostringstream<char, std::char_traits<char>, std::allocator<char>>&, std::shared_ptr<minja::Context> const&) const
monkey531[P]llama/common/minja.hpp
void do_render(std::ostringstream & out, const std::shared_ptr<Context> & context) const override { if (!expr) throw std::runtime_error("ExpressionNode.expr is null"); auto result = expr->evaluate(context); if (result.is_string()) { out << result.get<std::string>(); } else if (result.i...
O2
cpp
minja::ExpressionNode::do_render(std::__cxx11::basic_ostringstream<char, std::char_traits<char>, std::allocator<char>>&, std::shared_ptr<minja::Context> const&) const: pushq %r14 pushq %rbx subq $0x78, %rsp movq %rsi, %rbx movq 0x20(%rdi), %rsi testq %rsi, %rsi je 0x814c8 leaq 0x28(%rsp), %r14 movq %r14, %rdi callq 0x6...
_ZNK5minja14ExpressionNode9do_renderERNSt7__cxx1119basic_ostringstreamIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_7ContextEE: push r14 push rbx sub rsp, 78h mov rbx, rsi mov rsi, [rdi+20h] test rsi, rsi jz loc_814C8 lea r14, [rsp+88h+var_60] mov rdi, r14 call _ZNK5minja10Expressi...
void minja::ExpressionNode::do_render(long long a1, long long a2) { void (***v3)(void); // rsi const char *v4; // rsi std::runtime_error *exception; // r14 _BYTE v6[32]; // [rsp+8h] [rbp-80h] BYREF _BYTE v7[16]; // [rsp+28h] [rbp-60h] BYREF long long v8; // [rsp+38h] [rbp-50h] long long v9; // [rsp+48h] ...
do_render: PUSH R14 PUSH RBX SUB RSP,0x78 MOV RBX,RSI MOV RSI,qword ptr [RDI + 0x20] TEST RSI,RSI JZ 0x001814c8 LEA R14,[RSP + 0x28] MOV RDI,R14 CALL 0x0016e802 MOVZX EAX,byte ptr [R14 + 0x40] CMP EAX,0x4 JZ 0x00181447 CMP EAX,0x3 JNZ 0x0018146f LAB_00181429: LEA RDI,[RSP + 0x8] LEA RSI,[RSP + 0x28] CALL 0x0016f6b4 LAB...
/* minja::ExpressionNode::do_render(std::__cxx11::ostringstream&, std::shared_ptr<minja::Context> const&) const */ void minja::ExpressionNode::do_render(ostringstream *param_1,shared_ptr *param_2) { bool bVar1; runtime_error *this; char *pcVar2; string local_80 [32]; Expression local_60 [16]; long loc...
26,205
ggml_gated_linear_attn
monkey531[P]llama/ggml/src/ggml.c
struct ggml_tensor * ggml_gated_linear_attn( struct ggml_context * ctx, struct ggml_tensor * k, struct ggml_tensor * v, struct ggml_tensor * q, struct ggml_tensor * g, struct ggml_tensor * state, float scale) { GGML_ASSERT(ggml_is_contiguous(k)); GGML...
O0
c
ggml_gated_linear_attn: subq $0x88, %rsp movq %rdi, 0x80(%rsp) movq %rsi, 0x78(%rsp) movq %rdx, 0x70(%rsp) movq %rcx, 0x68(%rsp) movq %r8, 0x60(%rsp) movq %r9, 0x58(%rsp) movss %xmm0, 0x54(%rsp) movq 0x78(%rsp), %rdi callq 0x40fa0 testb $0x1, %al jne 0x52c0d leaq 0x619c4(%rip), %rdi # 0xb45b7 movl $0x124d, %esi ...
ggml_gated_linear_attn: sub rsp, 88h mov [rsp+88h+var_8], rdi mov [rsp+88h+var_10], rsi mov [rsp+88h+var_18], rdx mov [rsp+88h+var_20], rcx mov [rsp+88h+var_28], r8 mov [rsp+88h+var_30], r9 movss [rsp+88h+var_34], xmm0 mov rdi, [rsp+88h+var_10] call _ggml_is_contiguous test al, 1...
long long ggml_gated_linear_attn( long long a1, long long a2, _QWORD *a3, _QWORD *a4, _QWORD *a5, _QWORD *a6, float a7) { long long v8; // [rsp+8h] [rbp-80h] _QWORD v9[4]; // [rsp+10h] [rbp-78h] BYREF long long v10; // [rsp+30h] [rbp-58h] long long v11; /...
ggml_gated_linear_attn: SUB RSP,0x88 MOV qword ptr [RSP + 0x80],RDI MOV qword ptr [RSP + 0x78],RSI MOV qword ptr [RSP + 0x70],RDX MOV qword ptr [RSP + 0x68],RCX MOV qword ptr [RSP + 0x60],R8 MOV qword ptr [RSP + 0x58],R9 MOVSS dword ptr [RSP + 0x54],XMM0 MOV RDI,qword ptr [RSP + 0x78] CALL 0x00140fa0 TEST AL,0x1 JNZ 0x...
long ggml_gated_linear_attn (int4 param_1,int8 param_2,long param_3,long param_4,long param_5, long param_6,long param_7) { ulong uVar1; long lVar2; long local_78; long local_70; int8 local_68; int8 local_60; long local_58; long local_50; long local_48; long local_40;...
26,206
link_to_changed_list
eloqsql/mysys/mf_keycache.c
static void link_to_changed_list(SIMPLE_KEY_CACHE_CB *keycache, BLOCK_LINK *block) { DBUG_ASSERT(block->status & BLOCK_IN_USE); DBUG_ASSERT(!(block->status & BLOCK_CHANGED)); DBUG_ASSERT(block->hash_link && block->hash_link->block == block); unlink_changed(block); link_change...
O0
c
link_to_changed_list: pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) jmp 0xe8f32 jmp 0xe8f34 jmp 0xe8f36 jmp 0xe8f38 jmp 0xe8f3a movq -0x10(%rbp), %rdi callq 0xe68f0 movq -0x10(%rbp), %rdi movq -0x8(%rbp), %rax movq 0x128(%rax), %rsi movq -0x10(%rbp), %rax movq 0x20(%rax), %rax...
link_to_changed_list_0: push rbp mov rbp, rsp sub rsp, 10h mov [rbp+var_8], rdi mov [rbp+var_10], rsi jmp short $+2 loc_E8F32: jmp short $+2 loc_E8F34: jmp short $+2 loc_E8F36: jmp short $+2 loc_E8F38: jmp short $+2 loc_E8F3A: mov rdi, [rbp+var_10] call unlink_changed_0 mov...
long long link_to_changed_list_0(long long a1, long long a2) { long long result; // rax unlink_changed_0(a2); link_changed_0( a2, (long long *)(8LL * ((unsigned int)(*(_DWORD *)(a1 + 60) - 1) & *(_DWORD *)(*(_QWORD *)(a2 + 32) + 24LL)) + *(_QWORD *)(a1 + 296))); *(_DWORD *)(a2 + 80) |= 0...
link_to_changed_list: PUSH RBP MOV RBP,RSP SUB RSP,0x10 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI JMP 0x001e8f32 LAB_001e8f32: JMP 0x001e8f34 LAB_001e8f34: JMP 0x001e8f36 LAB_001e8f36: JMP 0x001e8f38 LAB_001e8f38: JMP 0x001e8f3a LAB_001e8f3a: MOV RDI,qword ptr [RBP + -0x10] CALL 0x001e68f0 MOV RDI,...
void link_to_changed_list(long param_1,long param_2) { unlink_changed(param_2); link_changed(param_2,*(long *)(param_1 + 0x128) + (ulong)(*(uint *)(*(long *)(param_2 + 0x20) + 0x18) & *(int *)(param_1 + 0x3c) - 1U) * 8); *(uint *)(param_2 + 0x50) = *(uint *)(...
26,207
js_generator_finalizer
bluesky950520[P]quickjs/quickjs.c
static void js_generator_finalizer(JSRuntime *rt, JSValue obj) { JSGeneratorData *s = JS_GetOpaque(obj, JS_CLASS_GENERATOR); if (s) { free_generator_stack_rt(rt, s); js_free_rt(rt, s); } }
O1
c
js_generator_finalizer: pushq %r14 pushq %rbx pushq %rax movq %rdi, %rbx movq %rsi, (%rsp) cmpl $-0x1, %edx jne 0x3b385 movq (%rsp), %rax cmpw $0x2f, 0x6(%rax) jne 0x3b385 movq 0x30(%rax), %r14 jmp 0x3b388 xorl %r14d, %r14d testq %r14, %r14 je 0x3b3d3 cmpl $0x4, (%r14) je 0x3b3a6 leaq 0x8(%r14), %rsi movq %rbx, %rdi ca...
js_generator_finalizer: push r14 push rbx push rax mov rbx, rdi mov [rsp+18h+var_18], rsi cmp edx, 0FFFFFFFFh jnz short loc_3B385 mov rax, [rsp+18h+var_18] cmp word ptr [rax+6], 2Fh ; '/' jnz short loc_3B385 mov r14, [rax+30h] jmp short loc_3B388 loc_3B385: xor r14d, r14...
void js_generator_finalizer(long long a1, long long a2, long long a3) { _DWORD *v3; // r14 long long v4; // rax void ( *v5)(_QWORD, _DWORD *); // rcx if ( (_DWORD)a3 == -1 && *(_WORD *)(a2 + 6) == 47 ) v3 = *(_DWORD **)(a2 + 48); else v3 = 0LL; if ( v3 ) { if ( *v3 != 4 ) { async_f...
26,208
js_generator_finalizer
bluesky950520[P]quickjs/quickjs.c
static void js_generator_finalizer(JSRuntime *rt, JSValue obj) { JSGeneratorData *s = JS_GetOpaque(obj, JS_CLASS_GENERATOR); if (s) { free_generator_stack_rt(rt, s); js_free_rt(rt, s); } }
O2
c
js_generator_finalizer: pushq %r14 pushq %rbx pushq %rax cmpl $-0x1, %edx jne 0x341b2 cmpw $0x2f, 0x6(%rsi) jne 0x341b2 movq 0x30(%rsi), %r14 testq %r14, %r14 je 0x341b2 movq %rdi, %rbx movq %r14, %rsi callq 0x34257 movq %rbx, %rdi movq %r14, %rsi addq $0x8, %rsp popq %rbx popq %r14 jmp 0x170cb addq $0x8, %rsp popq %rb...
js_generator_finalizer: push r14 push rbx push rax cmp edx, 0FFFFFFFFh jnz short loc_341B2 cmp word ptr [rsi+6], 2Fh ; '/' jnz short loc_341B2 mov r14, [rsi+30h] test r14, r14 jz short loc_341B2 mov rbx, rdi mov rsi, r14 call free_generator_stack_rt mov rdi, rbx mov ...
long long js_generator_finalizer(long long a1, long long a2, long long a3) { long long v3; // r14 long long result; // rax if ( (_DWORD)a3 == -1 && *(_WORD *)(a2 + 6) == 47 ) { v3 = *(_QWORD *)(a2 + 48); if ( v3 ) { free_generator_stack_rt(a1, *(_QWORD *)(a2 + 48), a3); return js_free_...
js_generator_finalizer: PUSH R14 PUSH RBX PUSH RAX CMP EDX,-0x1 JNZ 0x001341b2 CMP word ptr [RSI + 0x6],0x2f JNZ 0x001341b2 MOV R14,qword ptr [RSI + 0x30] TEST R14,R14 JZ 0x001341b2 MOV RBX,RDI MOV RSI,R14 CALL 0x00134257 MOV RDI,RBX MOV RSI,R14 ADD RSP,0x8 POP RBX POP R14 JMP 0x001170cb LAB_001341b2: ADD RSP,0x8 POP R...
void js_generator_finalizer(int8 param_1,long param_2,int param_3) { long lVar1; if (((param_3 == -1) && (*(short *)(param_2 + 6) == 0x2f)) && (lVar1 = *(long *)(param_2 + 0x30), lVar1 != 0)) { free_generator_stack_rt(param_1,lVar1); js_free_rt(param_1,lVar1); return; } return; }
26,209
GAListingMarkdown::render(GoodASM*)
goodasm/galistingmarkdown.cpp
QString GAListingMarkdown::render(GoodASM *goodasm){ GAInstruction ins=goodasm->at(goodasm->baseaddress); QString src= formatSource("label","code","c1","c2") +formatSource(":--",":--",":--",":--"); //Assembly comes from source, must match data. foreach(auto ins, goodasm->instructions){...
O3
cpp
GAListingMarkdown::render(GoodASM*): pushq %rbp movq %rsp, %rbp subq $0x350, %rsp # imm = 0x350 movq %rdi, -0x338(%rbp) movq %rdi, %rax movq %rax, -0x330(%rbp) movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq -0x10(%rbp), %rax movq %rax, -0x328(%rbp) movq -0x18(%rbp), %rsi movq 0x18(%...
_ZN17GAListingMarkdown6renderEP7GoodASM: push rbp mov rbp, rsp sub rsp, 350h mov [rbp+var_338], rdi mov rax, rdi mov [rbp+var_330], rax mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_18], rdx mov rax, [rbp+var_10] mov [rbp+var_328], rax mov rsi, [rbp+var_18]; unsi...
GAListingMarkdown * GAListingMarkdown::render(GAListingMarkdown *this, GoodASM *a2, unsigned long long a3) { GAInstruction *v4; // [rsp+8h] [rbp-348h] _BYTE v6[24]; // [rsp+30h] [rbp-320h] BYREF _BYTE v7[216]; // [rsp+48h] [rbp-308h] BYREF long long v8; // [rsp+120h] [rbp-230h] _BYTE v9[24]; // [rsp+128h] [rb...
render: PUSH RBP MOV RBP,RSP SUB RSP,0x350 MOV qword ptr [RBP + -0x338],RDI MOV RAX,RDI MOV qword ptr [RBP + -0x330],RAX MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV qword ptr [RBP + -0x18],RDX MOV RAX,qword ptr [RBP + -0x10] MOV qword ptr [RBP + -0x328],RAX MOV RSI,qword ptr [RBP + -0x18] MOV RDX...
/* WARNING: Removing unreachable block (ram,0x0012ff99) */ /* GAListingMarkdown::render(GoodASM*) */ GoodASM * GAListingMarkdown::render(GoodASM *param_1) { byte bVar1; GAInstruction *pGVar2; long in_RDX; long *in_RSI; QString local_328 [24]; GAInstruction local_310 [216]; int8 local_238; QtPrivate l...
26,210
my_fread
eloqsql/mysys/my_fstream.c
size_t my_fread(FILE *stream, uchar *Buffer, size_t Count, myf MyFlags) { size_t readbytes; DBUG_ENTER("my_fread"); DBUG_PRINT("my",("stream: %p Buffer %p Count: %u MyFlags: %lu", stream, Buffer, (uint) Count, MyFlags)); if ((readbytes= fread(Buffer, sizeof(char), Count, stream)) != Count) { DBUG...
O3
c
my_fread: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movq %rcx, %rbx movq %rdx, %r12 movq %rsi, %rax movq %rdi, %r15 movl $0x1, %esi movq %rax, %rdi movq %r15, %rcx callq 0x2a430 movq %rax, %r14 cmpq %r12, %rax jne 0xb19f5 xorl %r12d, %r12d testb $0x6, %bl cmoveq %r14, ...
my_fread: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx push rax mov rbx, rcx mov r12, rdx mov rax, rsi mov r15, rdi mov esi, 1 mov rdi, rax mov rcx, r15 call _fread mov r14, rax cmp rax, r12 jnz short loc_B19F5 xor r12d, r12d ...
long long my_fread(long long a1, long long a2, long long a3, char a4) { const char *v8; // rsi long long v9; // rdi long long v10; // rax long long v11; // r14 long long v12; // r12 unsigned int v13; // r12d unsigned int v14; // eax long long v15; // rdi const char *v16; // r13 unsigned int *v17; /...
my_fread: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX MOV RBX,RCX MOV R12,RDX MOV RAX,RSI MOV R15,RDI MOV ESI,0x1 MOV RDI,RAX MOV RCX,R15 CALL 0x0012a430 MOV R14,RAX CMP RAX,R12 JNZ 0x001b19f5 XOR R12D,R12D TEST BL,0x6 CMOVZ R12,R14 JMP 0x001b1a84 LAB_001b19f5: TEST BL,0x1a JZ 0x001b1a42 ...
size_t my_fread(FILE *param_1,void *param_2,size_t param_3,ulong param_4) { uint uVar1; int iVar2; size_t sVar3; int8 uVar4; int *piVar5; uint *puVar6; int8 uVar7; ulong uVar8; sVar3 = fread(param_2,1,param_3,param_1); if (sVar3 == param_3) { uVar8 = 0; if ((param_4 & 6) == 0) { u...
26,211
ma_read_rnd_pack_record
eloqsql/storage/maria/ma_packrec.c
int _ma_read_rnd_pack_record(MARIA_HA *info, uchar *buf, register MARIA_RECORD_POS filepos, my_bool skip_deleted_blocks) { File file; MARIA_BLOCK_INFO block_info; MARIA_SHARE *share= info->s; DBUG_ENTER("_ma_read_rnd_pack_record"); if (filepos >= info->state->data...
O3
c
ma_read_rnd_pack_record: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0xc8, %rsp movq %fs:0x28, %rax movq %rax, -0x30(%rbp) movq 0x20(%rdi), %rax cmpq %rdx, 0x28(%rax) jbe 0x39da4 movl %ecx, %r13d movq %rdx, %r15 movq %rsi, %rbx movq %rdi, %r14 testb $0x2, 0x61c(%rdi) jne 0x39...
_ma_read_rnd_pack_record: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 0C8h mov rax, fs:28h mov [rbp+var_30], rax mov rax, [rdi+20h] cmp [rax+28h], rdx jbe short loc_39DA4 mov r13d, ecx mov r15, rdx mov rbx, rsi mov r14, rdi te...
long long ma_read_rnd_pack_record(long long a1, long long a2, unsigned long long a3, long long a4, long long a5) { char v5; // r13 long long v7; // rbx long long v8; // r14 unsigned int v9; // r9d long long v10; // rdx long long v11; // rcx long long v12; // r8 long long v14; // rdx long long v15; //...
_ma_read_rnd_pack_record: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0xc8 MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x30],RAX MOV RAX,qword ptr [RDI + 0x20] CMP qword ptr [RAX + 0x28],RDX JBE 0x00139da4 MOV R13D,ECX MOV R15,RDX MOV RBX,RSI MOV R14,RDI TEST byte ptr [RDI + 0x61c],0...
ulong _ma_read_rnd_pack_record(long *param_1,int8 param_2,ulong param_3,char param_4) { char cVar1; int iVar2; int4 *puVar3; uint *puVar4; long lVar5; ulong uVar6; int4 uVar7; long lVar8; long in_FS_OFFSET; int1 local_f0 [72]; long local_a8; long local_a0; int4 local_94; int1 local_90 [24]...
26,212
codegen_generate_variable_def
tsotchke[P]eshkol/src/backend/codegen/definitions.c
bool codegen_generate_variable_def(CodegenContext* context, const AstNode* node) { assert(context != NULL); assert(node != NULL); // Get diagnostics context DiagnosticContext* diagnostics = codegen_context_get_diagnostics(context); // Check node type if ((node->type != AST_DEFINE) && (...
O0
c
codegen_generate_variable_def: pushq %rbp movq %rsp, %rbp subq $0x160, %rsp # imm = 0x160 movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) cmpq $0x0, -0x10(%rbp) je 0x1047c jmp 0x1049b leaq 0x5c3b(%rip), %rdi # 0x160be leaq 0xaf4b(%rip), %rsi # 0x1b3d5 movl $0xcc, %edx leaq 0xb13c(%rip), %rcx # 0...
codegen_generate_variable_def: push rbp mov rbp, rsp sub rsp, 160h mov [rbp+var_10], rdi mov [rbp+var_18], rsi cmp [rbp+var_10], 0 jz short loc_1047C jmp short loc_1049B loc_1047C: lea rdi, aTypeContextNul+5; "context != NULL" lea rsi, aWorkspaceLlm4b_18; "/workspace/llm4binary/g...
char codegen_generate_variable_def(long long a1, long long a2) { const char *v2; // rax char *i; // [rsp+10h] [rbp-150h] const char *v5; // [rsp+18h] [rbp-148h] char v6; // [rsp+27h] [rbp-139h] long long type; // [rsp+28h] [rbp-138h] _QWORD *type_context; // [rsp+30h] [rbp-130h] long long output; // [rsp...
codegen_generate_variable_def: PUSH RBP MOV RBP,RSP SUB RSP,0x160 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI CMP qword ptr [RBP + -0x10],0x0 JZ 0x0011047c JMP 0x0011049b LAB_0011047c: LEA RDI,[0x1160be] LEA RSI,[0x11b3d5] MOV EDX,0xcc LEA RCX,[0x11b5d2] CALL 0x00101120 LAB_0011049b: CMP qword ptr [...
int1 codegen_generate_variable_def(long param_1,uint *param_2) { byte bVar1; FILE *__stream; int8 uVar2; long lVar3; char *__ptr; ulong uVar4; char *local_158; char local_128 [256]; int8 local_28; uint *local_20; long local_18; int1 local_9; local_20 = param_2; local_18 = param_1; if ...
26,213
JS_ToObject
bluesky950520[P]quickjs/quickjs.c
static JSValue JS_ToObject(JSContext *ctx, JSValue val) { int tag = JS_VALUE_GET_NORM_TAG(val); JSValue obj; switch(tag) { default: case JS_TAG_NULL: case JS_TAG_UNDEFINED: return JS_ThrowTypeError(ctx, "Cannot convert undefined or null to object"); case JS_TAG_OBJECT: case JS_T...
O3
c
JS_ToObject: pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x50, %rsp movq %rdi, %r15 leal 0x9(%rdx), %eax cmpl $0x10, %eax ja 0x26932 movq %rdx, %rbx movq %rsi, %r14 leaq 0x7766f(%rip), %rcx # 0x9df6c movslq (%rcx,%rax,4), %rax addq %rcx, %rax jmpq *%rax cmpl $-0x9, %ebx jb 0x2690e incl (%r14) movq ...
JS_ToObject: push r15 push r14 push r13 push r12 push rbx sub rsp, 50h mov r15, rdi lea eax, [rdx+9]; switch 17 cases cmp eax, 10h ja short def_26904; jumptable 0000000000026904 default case, cases -6--2,2-5 mov rbx, rdx mov r14, rsi lea rcx, jpt_26904 movsxd rax, ds:(jp...
long long JS_ToObject( 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) { lon...
JS_ToObject: PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x50 MOV R15,RDI LEA EAX,[RDX + 0x9] CMP EAX,0x10 JA 0x00126932 MOV RBX,RDX MOV R14,RSI LEA RCX,[0x19df6c] MOVSXD RAX,dword ptr [RCX + RAX*0x4] ADD RAX,RCX switchD: JMP RAX caseD_ffffffff: CMP EBX,-0x9 JC 0x0012690e INC dword ptr [R14] LAB_0012690e: MOV ...
int1 [16] JS_ToObject(long param_1,int *param_2,int8 param_3) { uint uVar1; int1 auVar2 [16]; int8 uVar3; int8 uVar5; int1 auVar6 [16]; uint uStack_44; int8 uVar4; auVar2._8_8_ = param_3; auVar2._0_8_ = param_2; auVar6._8_8_ = param_3; auVar6._0_8_ = param_2; uVar1 = (uint)param_3; switc...
26,214
table_mapping::table_mapping()
eloqsql/sql/rpl_tblmap.cc
table_mapping::table_mapping() : m_free(0) { #ifdef MYSQL_CLIENT PSI_memory_key psi_key= PSI_NOT_INSTRUMENTED; #else PSI_memory_key psi_key= key_memory_table_mapping_root; #endif DBUG_ENTER("table_mapping::table_mapping"); /* No "free_element" function for entries passed here, as the entries are allo...
O3
cpp
table_mapping::table_mapping(): pushq %rbp movq %rsp, %rbp pushq %rbx subq $0x28, %rsp movq %rdi, %rbx xorl %eax, %eax movq %rax, 0x40(%rdi) leaq 0x48(%rdi), %rsi movq %rax, 0x18(%rsp) xorps %xmm0, %xmm0 movups %xmm0, 0x8(%rsp) movl $0x0, 0x20(%rsp) movq $0x8, (%rsp) leaq 0x331220(%rip), %rcx # 0x373050 movl $0x20, ...
_ZN13table_mappingC2Ev: push rbp mov rbp, rsp push rbx sub rsp, 28h mov rbx, rdi xor eax, eax mov [rdi+40h], rax lea rsi, [rdi+48h] mov [rsp+30h+var_18], rax xorps xmm0, xmm0 movups [rsp+30h+var_28], xmm0 mov [rsp+30h+var_10], 0 mov [rsp+30h+var_30], 8 lea rcx, my_charse...
void table_mapping::table_mapping(table_mapping *this) { *((_QWORD *)this + 8) = 0LL; my_hash_init2(0, (_DWORD)this + 72, 0, (unsigned int)&my_charset_bin, 32, 0, 8LL, 0LL, 0LL, 0LL, 0); init_alloc_root(0LL, this, 512LL, 0LL, 0LL); }
table_mapping: PUSH RBP MOV RBP,RSP PUSH RBX SUB RSP,0x28 MOV RBX,RDI XOR EAX,EAX MOV qword ptr [RDI + 0x40],RAX LEA RSI,[RDI + 0x48] MOV qword ptr [RSP + 0x18],RAX XORPS XMM0,XMM0 MOVUPS xmmword ptr [RSP + 0x8],XMM0 MOV dword ptr [RSP + 0x20],0x0 MOV qword ptr [RSP],0x8 LEA RCX,[0x473050] MOV R8D,0x20 XOR EDI,EDI XOR ...
/* table_mapping::table_mapping() */ void __thiscall table_mapping::table_mapping(table_mapping *this) { *(int8 *)(this + 0x40) = 0; my_hash_init2(0,this + 0x48,0,&my_charset_bin,0x20,0,8,0,0,0,0); init_alloc_root(0,this,0x200,0,0); return; }
26,215
wsrep::to_c_string(wsrep::client_state::state)
eloqsql/wsrep-lib/include/wsrep/client_state.hpp
static inline const char* to_c_string( enum wsrep::client_state::state state) { switch (state) { case wsrep::client_state::s_none: return "none"; case wsrep::client_state::s_idle: return "idle"; case wsrep::client_state::s_exec: return "exec"; case wsrep::clie...
O0
cpp
wsrep::to_c_string(wsrep::client_state::state): pushq %rbp movq %rsp, %rbp movl %edi, -0xc(%rbp) movl -0xc(%rbp), %eax movq %rax, -0x18(%rbp) subq $0x4, %rax ja 0xd492f9 movq -0x18(%rbp), %rax leaq 0x336ec1(%rip), %rcx # 0x1080170 movslq (%rcx,%rax,4), %rax addq %rcx, %rax jmpq *%rax leaq 0x5d332(%rip), %rax # 0...
_ZN5wsrepL11to_c_stringENS_12client_state5stateE_8: push rbp mov rbp, rsp mov [rbp+var_C], edi mov eax, [rbp+var_C] mov [rbp+var_18], rax sub rax, 4; switch 5 cases ja short def_D492B6; jumptable 0000000000D492B6 default case mov rax, [rbp+var_18] lea rcx, jpt_D492B6 movsxd rax, ds:...
char * wsrep::to_c_string(int a1) { char *v2; // [rsp+10h] [rbp-8h] switch ( a1 ) { case 0: v2 = "none"; break; case 1: v2 = "idle"; break; case 2: v2 = "exec"; break; case 3: v2 = "result"; break; case 4: v2 = "quit"; break; def...
my_scan_weight_euckr_nopad_bin: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV qword ptr [RBP + -0x20],RDX MOV RAX,qword ptr [RBP + -0x18] CMP RAX,qword ptr [RBP + -0x20] JC 0x00d492c0 MOV RAX,qword ptr [RBP + -0x10] MOV dword ptr [RAX],0x20 MOV dword ptr [RBP + -0x4],0x0 JMP 0...
int4 my_scan_weight_euckr_nopad_bin(uint *param_1,byte *param_2,byte *param_3) { int4 local_c; if (param_2 < param_3) { if (*param_2 < 0x80) { *param_1 = (uint)*param_2; local_c = 1; } else if ((((param_3 < param_2 + 2) || (*param_2 < 0x81)) || (*param_2 == 0xff)) || ((((par...
26,216
Trie::DeleteTrie(Trie::TrieNode*)
MikePodsytnik[P]TCRtrie/src/Trie.cpp
void Trie::DeleteTrie(TrieNode* node) { if (!node) return; for (TrieNode* childNode : node->children) { DeleteTrie(childNode); } delete node; }
O1
cpp
Trie::DeleteTrie(Trie::TrieNode*): testq %rsi, %rsi je 0x2ed77 pushq %r15 pushq %r14 pushq %rbx movq %rsi, %rbx movq %rdi, %r14 xorl %r15d, %r15d movq (%rbx,%r15), %rsi movq %r14, %rdi callq 0x2ed1e addq $0x8, %r15 cmpq $0xf0, %r15 jne 0x2ed31 movq 0xf0(%rbx), %rdi testq %rdi, %rdi je 0x2ed65 movq 0x100(%rbx), %rsi sub...
_ZN4Trie10DeleteTrieEPNS_8TrieNodeE: test rsi, rsi jz short locret_2ED77 push r15 push r14 push rbx mov rbx, rsi mov r14, rdi xor r15d, r15d loc_2ED31: mov rsi, [rbx+r15] mov rdi, r14 call _ZN4Trie10DeleteTrieEPNS_8TrieNodeE; Trie::DeleteTrie(Trie::TrieNode *) add r15, 8 cmp ...
void Trie::DeleteTrie(long long a1, _QWORD *a2) { long long i; // r15 void *v3; // rdi if ( a2 ) { for ( i = 0LL; i != 30; ++i ) Trie::DeleteTrie(a1, a2[i]); v3 = (void *)a2[30]; if ( v3 ) operator delete(v3, a2[32] - (_QWORD)v3); operator delete(a2, 0x108uLL); } }
DeleteTrie: TEST RSI,RSI JZ 0x0012ed77 PUSH R15 PUSH R14 PUSH RBX MOV RBX,RSI MOV R14,RDI XOR R15D,R15D LAB_0012ed31: MOV RSI,qword ptr [RBX + R15*0x1] MOV RDI,R14 CALL 0x0012ed1e ADD R15,0x8 CMP R15,0xf0 JNZ 0x0012ed31 MOV RDI,qword ptr [RBX + 0xf0] TEST RDI,RDI JZ 0x0012ed65 MOV RSI,qword ptr [RBX + 0x100] SUB RSI,RD...
/* Trie::DeleteTrie(Trie::TrieNode*) */ void __thiscall Trie::DeleteTrie(Trie *this,TrieNode *param_1) { void *pvVar1; long lVar2; if (param_1 != (TrieNode *)0x0) { lVar2 = 0; do { DeleteTrie(this,*(TrieNode **)(param_1 + lVar2)); lVar2 = lVar2 + 8; } while (lVar2 != 0xf0); pvVar...
26,217
Trie::DeleteTrie(Trie::TrieNode*)
MikePodsytnik[P]TCRtrie/src/Trie.cpp
void Trie::DeleteTrie(TrieNode* node) { if (!node) return; for (TrieNode* childNode : node->children) { DeleteTrie(childNode); } delete node; }
O3
cpp
Trie::DeleteTrie(Trie::TrieNode*): testq %rsi, %rsi je 0x2eb25 pushq %r15 pushq %r14 pushq %rbx movq %rsi, %rbx movq %rdi, %r14 xorl %r15d, %r15d movq (%rbx,%r15), %rsi movq %r14, %rdi callq 0x2eacc addq $0x8, %r15 cmpq $0xf0, %r15 jne 0x2eadf movq 0xf0(%rbx), %rdi testq %rdi, %rdi je 0x2eb13 movq 0x100(%rbx), %rsi sub...
_ZN4Trie10DeleteTrieEPNS_8TrieNodeE: test rsi, rsi jz short locret_2EB25 push r15 push r14 push rbx mov rbx, rsi mov r14, rdi xor r15d, r15d loc_2EADF: mov rsi, [rbx+r15] mov rdi, r14 call _ZN4Trie10DeleteTrieEPNS_8TrieNodeE; Trie::DeleteTrie(Trie::TrieNode *) add r15, 8 cmp ...
void Trie::DeleteTrie(long long a1, _QWORD *a2) { long long i; // r15 void *v3; // rdi if ( a2 ) { for ( i = 0LL; i != 30; ++i ) Trie::DeleteTrie(a1, a2[i]); v3 = (void *)a2[30]; if ( v3 ) operator delete(v3, a2[32] - (_QWORD)v3); operator delete(a2, 0x108uLL); } }
DeleteTrie: TEST RSI,RSI JZ 0x0012eb25 PUSH R15 PUSH R14 PUSH RBX MOV RBX,RSI MOV R14,RDI XOR R15D,R15D LAB_0012eadf: MOV RSI,qword ptr [RBX + R15*0x1] MOV RDI,R14 CALL 0x0012eacc ADD R15,0x8 CMP R15,0xf0 JNZ 0x0012eadf MOV RDI,qword ptr [RBX + 0xf0] TEST RDI,RDI JZ 0x0012eb13 MOV RSI,qword ptr [RBX + 0x100] SUB RSI,RD...
/* Trie::DeleteTrie(Trie::TrieNode*) */ void __thiscall Trie::DeleteTrie(Trie *this,TrieNode *param_1) { void *pvVar1; long lVar2; if (param_1 != (TrieNode *)0x0) { lVar2 = 0; do { DeleteTrie(this,*(TrieNode **)(param_1 + lVar2)); lVar2 = lVar2 + 8; } while (lVar2 != 0xf0); pvVar...
26,218
simple_key_cache_read
eloqsql/mysys/mf_keycache.c
uchar *simple_key_cache_read(SIMPLE_KEY_CACHE_CB *keycache, File file, my_off_t filepos, int level, uchar *buff, uint length, uint block_length __attribute__((unused)), int return_buffer __attribute__((un...
O0
c
simple_key_cache_read: pushq %rbp movq %rsp, %rbp subq $0x70, %rsp movl 0x18(%rbp), %eax movl 0x10(%rbp), %eax movq %rdi, -0x8(%rbp) movl %esi, -0xc(%rbp) movq %rdx, -0x18(%rbp) movl %ecx, -0x1c(%rbp) movq %r8, -0x28(%rbp) movl %r9d, -0x2c(%rbp) movb $0x0, -0x2d(%rbp) movl $0x0, -0x34(%rbp) movq -0x28(%rbp), %rax movq ...
simple_key_cache_read: push rbp mov rbp, rsp sub rsp, 70h mov eax, [rbp+arg_8] mov eax, [rbp+arg_0] mov [rbp+var_8], rdi mov [rbp+var_C], esi mov [rbp+var_18], rdx mov [rbp+var_1C], ecx mov [rbp+var_28], r8 mov [rbp+var_2C], r9d mov [rbp+var_2D], 0 mov [rbp+var_34], 0 ...
long long simple_key_cache_read( _BYTE *a1, unsigned int a2, unsigned long long a3, unsigned int a4, long long a5, unsigned int a6) { _BYTE *v6; // rdi const char *v7; // rsi char v10; // [rsp+1Bh] [rbp-55h] int v11; // [rsp+1Ch] [rbp-54h] BYREF unsigned int v1...
simple_key_cache_read: PUSH RBP MOV RBP,RSP SUB RSP,0x70 MOV EAX,dword ptr [RBP + 0x18] MOV EAX,dword ptr [RBP + 0x10] MOV qword ptr [RBP + -0x8],RDI MOV dword ptr [RBP + -0xc],ESI MOV qword ptr [RBP + -0x18],RDX MOV dword ptr [RBP + -0x1c],ECX MOV qword ptr [RBP + -0x28],R8 MOV dword ptr [RBP + -0x2c],R9D MOV byte ptr...
void * simple_key_cache_read (char *param_1,int4 param_2,ulong param_3,int4 param_4,void *param_5, uint param_6) { int4 *puVar1; long lVar2; bool bVar3; void *local_68; int local_5c; uint local_58; uint local_54; long local_50; void *local_48; uint local_3c; cha...
26,219
coro::task<std::pair<coro::net::tls::send_status, std::span<char const, 18446744073709551615ul>>> coro::net::tls::client::send<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::optional<std::chrono:...
AlayaLite/build_O3/_deps/libcoro-src/include/coro/net/tls/client.hpp
auto send(const buffer_type& buffer, std::optional<std::chrono::milliseconds> timeout = std::nullopt) -> coro::task<std::pair<send_status, std::span<const char>>> { // Make sure there is data to send. if (buffer.empty()) { co_return {send_status::buffer_is_empty, std::spa...
O3
cpp
coro::task<std::pair<coro::net::tls::send_status, std::span<char const, 18446744073709551615ul>>> coro::net::tls::client::send<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::optional<std::chrono:...
_ZN4coro3net3tls6client4sendITkNS_8concepts12const_bufferENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEENS_4taskISt4pairINS1_11send_statusESt4spanIKcLm18446744073709551615EEEEERKT_St8optionalINSt6chrono8durationIlSt5ratioILl1ELl1000EEEEE_resume: push rbp push r15 push r14 push r13 push r12 push ...
long long ZN4coro3net3tls6client4sendITkNS_8concepts12const_bufferENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEENS_4taskISt4pairINS1_11send_statusESt4spanIKcLm18446744073709551615EEEEERKT_St8optionalINSt6chrono8durationIlSt5ratioILl1ELl1000EEEEE_resume( long long a1) { int v1; // r14d long long v2...
_ZN4coro3net3tls6client4sendITkNS_8concepts12const_bufferENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEENS_4taskISt4pairINS1_11send_statusESt4spanIKcLm18446744073709551615EEEEERKT_St8optionalINSt6chrono8durationIlSt5ratioILl1ELl1000EEEEE.resume: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x38...
void _ZN4coro3net3tls6client4sendITkNS_8concepts12const_bufferENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEENS_4taskISt4pairINS1_11send_statusESt4spanIKcLm18446744073709551615EEEEERKT_St8optionalINSt6chrono8durationIlSt5ratioILl1ELl1000EEEEE_resume (int8 *param_1) { pair *ppVar1; pair *ppV...
26,220
my_xml_error_lineno
eloqsql/strings/xml.c
uint my_xml_error_lineno(MY_XML_PARSER *p) { uint res=0; const char *s; for (s=p->beg ; s<p->cur; s++) { if (s[0] == '\n') res++; } return res; }
O0
c
my_xml_error_lineno: pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movl $0x0, -0xc(%rbp) movq -0x8(%rbp), %rax movq 0x128(%rax), %rax movq %rax, -0x18(%rbp) movq -0x18(%rbp), %rax movq -0x8(%rbp), %rcx cmpq 0x130(%rcx), %rax jae 0x14e9a4 movq -0x18(%rbp), %rax movsbl (%rax), %eax cmpl $0xa, %eax jne 0x14e994 movl -0...
my_xml_error_lineno: push rbp mov rbp, rsp mov [rbp+var_8], rdi mov [rbp+var_C], 0 mov rax, [rbp+var_8] mov rax, [rax+128h] mov [rbp+var_18], rax loc_14E96E: mov rax, [rbp+var_18] mov rcx, [rbp+var_8] cmp rax, [rcx+130h] jnb short loc_14E9A4 mov rax, [rbp+var_18] movsx e...
long long my_xml_error_lineno(long long a1) { _BYTE *i; // [rsp+0h] [rbp-18h] unsigned int v3; // [rsp+Ch] [rbp-Ch] v3 = 0; for ( i = *(_BYTE **)(a1 + 296); (unsigned long long)i < *(_QWORD *)(a1 + 304); ++i ) { if ( *i == 10 ) ++v3; } return v3; }
26,221
my_xml_error_lineno
eloqsql/strings/xml.c
uint my_xml_error_lineno(MY_XML_PARSER *p) { uint res=0; const char *s; for (s=p->beg ; s<p->cur; s++) { if (s[0] == '\n') res++; } return res; }
O3
c
my_xml_error_lineno: movq 0x128(%rdi), %rcx movq 0x130(%rdi), %rdx xorl %eax, %eax cmpq %rdx, %rcx jae 0xd77c8 pushq %rbp movq %rsp, %rbp xorl %eax, %eax xorl %esi, %esi cmpb $0xa, (%rcx) sete %sil addl %esi, %eax incq %rcx cmpq %rdx, %rcx jne 0xd77b4 popq %rbp retq nopl (%rax)
my_xml_error_lineno: mov rcx, [rdi+128h] mov rdx, [rdi+130h] xor eax, eax cmp rcx, rdx jnb short locret_D77C8 push rbp mov rbp, rsp xor eax, eax loc_D77B4: xor esi, esi cmp byte ptr [rcx], 0Ah setz sil add eax, esi inc rcx cmp rcx, rdx jnz short loc_D77B4 pop ...
long long my_xml_error_lineno(long long a1) { _BYTE *v1; // rcx _BYTE *v2; // rdx long long result; // rax v1 = *(_BYTE **)(a1 + 296); v2 = *(_BYTE **)(a1 + 304); result = 0LL; if ( v1 < v2 ) { LODWORD(result) = 0; do result = (*v1++ == 10) + (unsigned int)result; while ( v1 != v2 );...
my_xml_error_lineno: MOV RCX,qword ptr [RDI + 0x128] MOV RDX,qword ptr [RDI + 0x130] XOR EAX,EAX CMP RCX,RDX JNC 0x001d77c8 PUSH RBP MOV RBP,RSP XOR EAX,EAX LAB_001d77b4: XOR ESI,ESI CMP byte ptr [RCX],0xa SETZ SIL ADD EAX,ESI INC RCX CMP RCX,RDX JNZ 0x001d77b4 POP RBP LAB_001d77c8: RET
int my_xml_error_lineno(long param_1) { int iVar1; char *pcVar2; pcVar2 = *(char **)(param_1 + 0x128); iVar1 = 0; if (pcVar2 < *(char **)(param_1 + 0x130)) { iVar1 = 0; do { iVar1 = iVar1 + (uint)(*pcVar2 == '\n'); pcVar2 = pcVar2 + 1; } while (pcVar2 != *(char **)(param_1 + 0x130...
26,222
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
int get_codepoint() { // this function only makes sense after reading `\u` JSON_ASSERT(current == 'u'); int codepoint = 0; const auto factors = { 12u, 8u, 4u, 0u }; for (const auto factor : factors) { get(); if (current >= '0' && current <= '...
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_iteratorIPKcS5_IcSA_EEEEEE13get_codepointEv: sub rsp, 68h mov [rsp+68h+var_10], ...
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...
26,223
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
int get_codepoint() { // this function only makes sense after reading `\u` JSON_ASSERT(current == 'u'); int codepoint = 0; const auto factors = { 12u, 8u, 4u, 0u }; for (const auto factor : factors) { get(); if (current >= '0' && current <= '...
O3
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_EEEEE13get_codepointEv: push rbp push r15 push r14 push r12 p...
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...
get_codepoint: PUSH RBP PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB RSP,0x10 MOV R14,RDI MOVAPS XMM0,xmmword ptr [0x001af0d0] MOVAPS xmmword ptr [RSP],XMM0 XOR EBX,EBX PUSH -0x1 POP R15 XOR R12D,R12D LAB_0011ad4b: MOV EBP,dword ptr [RSP + R12*0x1] MOV RDI,R14 CALL 0x0011ac7c MOV EAX,dword ptr [R14 + 0x14] LEA EDX,[RAX + -0...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ /* 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_ab...
26,224
LefDefParser::defiComponentMaskShiftLayer::Destroy()
Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/def/def/defiComponent.cpp
void defiComponentMaskShiftLayer::Destroy() { if (numLayers_) { for (int i = 0; i < numLayers_; i++) { if (layers_[i]) { free(layers_[i]); } } free((char*)(layers_)); } else { if (layersAllocated_) { free((char*)(layers_)); ...
O0
cpp
LefDefParser::defiComponentMaskShiftLayer::Destroy(): subq $0x18, %rsp movq %rdi, 0x10(%rsp) movq 0x10(%rsp), %rax movq %rax, (%rsp) cmpl $0x0, 0x4(%rax) je 0x16d25 movl $0x0, 0xc(%rsp) movq (%rsp), %rcx movl 0xc(%rsp), %eax cmpl 0x4(%rcx), %eax jge 0x16d16 movq (%rsp), %rax movq 0x8(%rax), %rax movslq 0xc(%rsp), %rcx ...
_ZN12LefDefParser27defiComponentMaskShiftLayer7DestroyEv: sub rsp, 18h mov [rsp+18h+var_8], rdi mov rax, [rsp+18h+var_8] mov [rsp+18h+var_18], rax cmp dword ptr [rax+4], 0 jz short loc_16D25 mov [rsp+18h+var_C], 0 loc_16CD0: mov rcx, [rsp+18h+var_18] mov eax, [rsp+18h+var_C] cmp ...
LefDefParser::defiComponentMaskShiftLayer * LefDefParser::defiComponentMaskShiftLayer::Destroy( LefDefParser::defiComponentMaskShiftLayer *this) { LefDefParser::defiComponentMaskShiftLayer *result; // rax int i; // [rsp+Ch] [rbp-Ch] if ( *((_DWORD *)this + 1) ) { for ( i = 0; i < *((_DWORD *)this +...
Destroy: SUB RSP,0x18 MOV qword ptr [RSP + 0x10],RDI MOV RAX,qword ptr [RSP + 0x10] MOV qword ptr [RSP],RAX CMP dword ptr [RAX + 0x4],0x0 JZ 0x00116d25 MOV dword ptr [RSP + 0xc],0x0 LAB_00116cd0: MOV RCX,qword ptr [RSP] MOV EAX,dword ptr [RSP + 0xc] CMP EAX,dword ptr [RCX + 0x4] JGE 0x00116d16 MOV RAX,qword ptr [RSP] M...
/* LefDefParser::defiComponentMaskShiftLayer::Destroy() */ void __thiscall LefDefParser::defiComponentMaskShiftLayer::Destroy(defiComponentMaskShiftLayer *this) { int local_c; if (*(int *)(this + 4) == 0) { if (*(int *)this != 0) { free(*(void **)(this + 8)); } } else { for (local_c = 0;...
26,225
minja::strip(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
monkey531[P]llama/common/minja.hpp
static std::string strip(const std::string & s) { auto start = s.find_first_not_of(" \t\n\r"); if (start == std::string::npos) return ""; auto end = s.find_last_not_of(" \t\n\r"); return s.substr(start, end - start + 1); }
O0
cpp
minja::strip(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&): subq $0x58, %rsp movq %rdi, 0x10(%rsp) movq %rdi, %rax movq %rax, 0x18(%rsp) movq %rdi, 0x50(%rsp) movq %rsi, 0x48(%rsp) movq 0x48(%rsp), %rdi leaq 0x158f9c(%rip), %rsi # 0x1b97a3 xorl %eax, %eax movl %eax, %edx call...
_ZN5minjaL5stripERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: sub rsp, 58h mov [rsp+58h+var_48], rdi mov rax, rdi mov [rsp+58h+var_40], rax mov [rsp+58h+var_8], rdi mov [rsp+58h+var_10], rsi mov rdi, [rsp+58h+var_10] lea rsi, asc_1B97A3; " \t\n\r" xor eax, eax mov edx,...
long long minja::strip(long long a1, long long a2) { long long last_not_of; // [rsp+20h] [rbp-38h] char v4; // [rsp+3Fh] [rbp-19h] BYREF long long first_not_of; // [rsp+40h] [rbp-18h] long long v6; // [rsp+48h] [rbp-10h] long long v7; // [rsp+50h] [rbp-8h] v7 = a1; v6 = a2; first_not_of = std::string:...
strip: SUB RSP,0x58 MOV qword ptr [RSP + 0x10],RDI MOV RAX,RDI MOV qword ptr [RSP + 0x18],RAX MOV qword ptr [RSP + 0x50],RDI MOV qword ptr [RSP + 0x48],RSI MOV RDI,qword ptr [RSP + 0x48] LEA RSI,[0x2b97a3] XOR EAX,EAX MOV EDX,EAX CALL 0x0014fc80 MOV qword ptr [RSP + 0x40],RAX CMP qword ptr [RSP + 0x40],-0x1 JNZ 0x00160...
/* minja::strip(std::__cxx11::string const&) */ minja * __thiscall minja::strip(minja *this,string *param_1) { allocator local_19; long local_18; string *local_10; minja *local_8; local_10 = param_1; local_8 = this; local_18 = std::__cxx11::string::find_first_not_of((char *)param_1,0x2b97a3); if (...
26,226
coro::mutex::unlock()
AlayaLite/build_O3/_deps/libcoro-src/src/mutex.cpp
auto mutex::unlock() -> void { if (m_internal_waiters == nullptr) { void* current = m_state.load(std::memory_order::relaxed); if (current == nullptr) { // If there are no internal waiters and there are no atomic waiters, attempt to set the // mutex as unlocked. ...
O3
cpp
coro::mutex::unlock(): movq 0x8(%rdi), %rax testq %rax, %rax jne 0x4f8d6 movq (%rdi), %rax testq %rax, %rax jne 0x4f8d1 xorl %eax, %eax lock cmpxchgq %rdi, (%rdi) jne 0x4f8d1 retq xorl %eax, %eax xchgq %rax, (%rdi) movq 0x10(%rax), %rcx movq %rcx, 0x8(%rdi) movq 0x8(%rax), %rdi jmpq *(%rdi)
_ZN4coro5mutex6unlockEv: mov rax, [rdi+8] test rax, rax jnz short loc_4F8D6 mov rax, [rdi] test rax, rax jnz short loc_4F8D1 xor eax, eax lock cmpxchg [rdi], rdi jnz short loc_4F8D1 retn loc_4F8D1: xor eax, eax xchg rax, [rdi] loc_4F8D6: mov rcx, [rax+10h] mov [rdi+8], rcx m...
long long coro::mutex::unlock(coro::mutex *this) { long long v1; // rax long long result; // rax v1 = *((_QWORD *)this + 1); if ( v1 ) goto LABEL_5; if ( *(_QWORD *)this || (result = _InterlockedCompareExchange64((volatile signed long long *)this, (signed long long)this, 0LL)) != 0 ) { v1 = _I...
unlock: MOV RAX,qword ptr [RDI + 0x8] TEST RAX,RAX JNZ 0x0014f8d6 MOV RAX,qword ptr [RDI] TEST RAX,RAX JNZ 0x0014f8d1 XOR EAX,EAX CMPXCHG.LOCK qword ptr [RDI],RDI JNZ 0x0014f8d1 RET LAB_0014f8d1: XOR EAX,EAX XCHG qword ptr [RDI],RAX LAB_0014f8d6: MOV RCX,qword ptr [RAX + 0x10] MOV qword ptr [RDI + 0x8],RCX MOV RDI,qwor...
/* coro::mutex::unlock() */ void __thiscall coro::mutex::unlock(mutex *this) { long lVar1; lVar1 = *(long *)(this + 8); if (lVar1 == 0) { if (*(long *)this == 0) { LOCK(); lVar1 = *(long *)this; if (lVar1 == 0) { *(mutex **)this = this; } UNLOCK(); if (lVar1 =...
26,227
OpenSubdiv::v3_6_0::Far::PatchTableBuilder::LegacyGregoryHelper::~LegacyGregoryHelper()
NVIDIA-RTX[P]OSD-Lite/opensubdiv/far/patchTableFactory.cpp
~LegacyGregoryHelper() { }
O3
cpp
OpenSubdiv::v3_6_0::Far::PatchTableBuilder::LegacyGregoryHelper::~LegacyGregoryHelper(): pushq %rbx movq %rdi, %rbx movq 0x20(%rdi), %rdi testq %rdi, %rdi je 0x6faf1 movq 0x30(%rbx), %rsi subq %rdi, %rsi callq 0x3a2b0 movq 0x8(%rbx), %rdi testq %rdi, %rdi je 0x6fb07 movq 0x18(%rbx), %rsi subq %rdi, %rsi popq %rbx jmp 0...
_ZN10OpenSubdiv6v3_6_03Far17PatchTableBuilder19LegacyGregoryHelperD2Ev: push rbx mov rbx, rdi mov rdi, [rdi+20h]; void * test rdi, rdi jz short loc_6FAF1 mov rsi, [rbx+30h] sub rsi, rdi; unsigned __int64 call __ZdlPvm; operator delete(void *,ulong) loc_6FAF1: mov rdi, [rbx+8]; void * t...
void OpenSubdiv::v3_6_0::Far::PatchTableBuilder::LegacyGregoryHelper::~LegacyGregoryHelper( OpenSubdiv::v3_6_0::Far::PatchTableBuilder::LegacyGregoryHelper *this) { void *v2; // rdi void *v3; // rdi v2 = (void *)*((_QWORD *)this + 4); if ( v2 ) operator delete(v2, *((_QWORD *)this + 6) - (_QWORD)v...
~LegacyGregoryHelper: PUSH RBX MOV RBX,RDI MOV RDI,qword ptr [RDI + 0x20] TEST RDI,RDI JZ 0x0016faf1 MOV RSI,qword ptr [RBX + 0x30] SUB RSI,RDI CALL 0x0013a2b0 LAB_0016faf1: MOV RDI,qword ptr [RBX + 0x8] TEST RDI,RDI JZ 0x0016fb07 MOV RSI,qword ptr [RBX + 0x18] SUB RSI,RDI POP RBX JMP 0x0013a2b0 LAB_0016fb07: POP RBX R...
/* OpenSubdiv::v3_6_0::Far::PatchTableBuilder::LegacyGregoryHelper::~LegacyGregoryHelper() */ void __thiscall OpenSubdiv::v3_6_0::Far::PatchTableBuilder::LegacyGregoryHelper::~LegacyGregoryHelper (LegacyGregoryHelper *this) { void *pvVar1; pvVar1 = *(void **)(this + 0x20); if (pvVar1 != (void *)0x...
26,228
coro::net::dns::resolver<coro::io_scheduler>::ares_poll()
AlayaLite/build_O3/_deps/libcoro-src/include/coro/net/dns/resolver.hpp
auto ares_poll() -> void { std::array<ares_socket_t, ARES_GETSOCK_MAXNUM> ares_sockets{}; std::array<poll_op, ARES_GETSOCK_MAXNUM> poll_ops{}; int bitmask = ares_getsock(m_ares_channel, ares_sockets.data(), ARES_GETSOCK_MAXNUM); size_t new_sockets{0}; for (size_t i =...
O3
cpp
coro::net::dns::resolver<coro::io_scheduler>::ares_poll(): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0xf8, %rsp movq %rdi, %rbx xorps %xmm0, %xmm0 leaq 0xb0(%rsp), %rsi movaps %xmm0, 0x30(%rsi) movaps %xmm0, 0x20(%rsi) movaps %xmm0, 0x10(%rsi) movaps %xmm0, (%rsi) movaps %xmm0, 0xa0(%rsp) ...
_ZN4coro3net3dns8resolverINS_12io_schedulerEE9ares_pollEv: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 0F8h mov rbx, rdi xorps xmm0, xmm0 lea rsi, [rsp+128h+var_78] movaps xmmword ptr [rsi+30h], xmm0 movaps xmmword ptr [rsi+20h], xmm0 movaps xmmword ptr [rsi+10h], x...
void coro::net::dns::resolver<coro::io_scheduler>::ares_poll(_QWORD *a1) { _QWORD *v1; // rbx unsigned int v2; // eax long long v3; // r14 long long v4; // rdx long long v5; // rcx _QWORD *v6; // r15 long long v7; // r13 char v8; // dl long long v9; // rbp int v10; // r12d _QWORD *v11; // r15 l...
ares_poll: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0xf8 MOV RBX,RDI XORPS XMM0,XMM0 LEA RSI,[RSP + 0xb0] MOVAPS xmmword ptr [RSI + 0x30],XMM0 MOVAPS xmmword ptr [RSI + 0x20],XMM0 MOVAPS xmmword ptr [RSI + 0x10],XMM0 MOVAPS xmmword ptr [RSI],XMM0 MOVAPS xmmword ptr [RSP + 0xa0],XMM0 MOVAPS xmmword ...
/* coro::net::dns::resolver<coro::io_scheduler>::ares_poll() */ void __thiscall coro::net::dns::resolver<coro::io_scheduler>::ares_poll(resolver<coro::io_scheduler> *this) { io_scheduler *this_00; int4 uVar1; uint uVar2; ulong uVar3; ulong uVar4; ulong extraout_RDX; long lVar5; long lVar6; resolver...
26,229
JS_DupAtom
bluesky950520[P]quickjs/quickjs.c
JSAtom JS_DupAtom(JSContext *ctx, JSAtom v) { JSRuntime *rt; JSAtomStruct *p; if (!__JS_AtomIsConst(v)) { rt = ctx->rt; p = rt->atom_array[v]; p->header.ref_count++; } return v; }
O0
c
JS_DupAtom: subq $0x28, %rsp movq %rdi, 0x20(%rsp) movl %esi, 0x1c(%rsp) movl 0x1c(%rsp), %edi callq 0x28000 cmpl $0x0, %eax jne 0x27feb movq 0x20(%rsp), %rax movq 0x18(%rax), %rax movq %rax, 0x10(%rsp) movq 0x10(%rsp), %rax movq 0x68(%rax), %rax movl 0x1c(%rsp), %ecx movq (%rax,%rcx,8), %rax movq %rax, 0x8(%rsp) movq ...
JS_DupAtom: sub rsp, 28h mov [rsp+28h+var_8], rdi mov [rsp+28h+var_C], esi mov edi, [rsp+28h+var_C] call __JS_AtomIsConst cmp eax, 0 jnz short loc_27FEB mov rax, [rsp+28h+var_8] mov rax, [rax+18h] mov [rsp+28h+var_18], rax mov rax, [rsp+28h+var_18] mov rax, [rax+68h] mov ...
long long JS_DupAtom(long long a1, unsigned int a2) { _DWORD *v2; // rax if ( !(unsigned int)_JS_AtomIsConst(a2) ) { v2 = *(_DWORD **)(*(_QWORD *)(*(_QWORD *)(a1 + 24) + 104LL) + 8LL * a2); ++*v2; } return a2; }
JS_DupAtom: SUB RSP,0x28 MOV qword ptr [RSP + 0x20],RDI MOV dword ptr [RSP + 0x1c],ESI MOV EDI,dword ptr [RSP + 0x1c] CALL 0x00128000 CMP EAX,0x0 JNZ 0x00127feb MOV RAX,qword ptr [RSP + 0x20] MOV RAX,qword ptr [RAX + 0x18] MOV qword ptr [RSP + 0x10],RAX MOV RAX,qword ptr [RSP + 0x10] MOV RAX,qword ptr [RAX + 0x68] MOV ...
uint JS_DupAtom(long param_1,uint param_2) { int *piVar1; int iVar2; iVar2 = __JS_AtomIsConst(param_2); if (iVar2 == 0) { piVar1 = *(int **)(*(long *)(*(long *)(param_1 + 0x18) + 0x68) + (ulong)param_2 * 8); *piVar1 = *piVar1 + 1; } return param_2; }
26,230
JS_DupAtom
bluesky950520[P]quickjs/quickjs.c
JSAtom JS_DupAtom(JSContext *ctx, JSAtom v) { JSRuntime *rt; JSAtomStruct *p; if (!__JS_AtomIsConst(v)) { rt = ctx->rt; p = rt->atom_array[v]; p->header.ref_count++; } return v; }
O1
c
JS_DupAtom: movl %esi, %eax cmpl $0xe0, %esi jl 0x1fdbf movq 0x18(%rdi), %rcx movq 0x68(%rcx), %rcx movl %eax, %edx movq (%rcx,%rdx,8), %rcx incl (%rcx) retq
JS_DupAtom: mov eax, esi cmp esi, 0E0h jl short locret_1FDBF mov rcx, [rdi+18h] mov rcx, [rcx+68h] mov edx, eax mov rcx, [rcx+rdx*8] inc dword ptr [rcx] locret_1FDBF: retn
long long JS_DupAtom(long long a1, int a2) { long long result; // rax _DWORD *v3; // rcx result = (unsigned int)a2; if ( a2 >= 224 ) { v3 = *(_DWORD **)(*(_QWORD *)(*(_QWORD *)(a1 + 24) + 104LL) + 8LL * (unsigned int)a2); ++*v3; } return result; }
26,231
JS_DupAtom
bluesky950520[P]quickjs/quickjs.c
JSAtom JS_DupAtom(JSContext *ctx, JSAtom v) { JSRuntime *rt; JSAtomStruct *p; if (!__JS_AtomIsConst(v)) { rt = ctx->rt; p = rt->atom_array[v]; p->header.ref_count++; } return v; }
O2
c
JS_DupAtom: movl %esi, %eax cmpl $0xe0, %esi jl 0x1a1c6 movq 0x18(%rdi), %rcx movq 0x68(%rcx), %rcx movl %eax, %edx movq (%rcx,%rdx,8), %rcx incl (%rcx) retq
JS_DupAtom: mov eax, esi cmp esi, 0E0h jl short locret_1A1C6 mov rcx, [rdi+18h] mov rcx, [rcx+68h] mov edx, eax mov rcx, [rcx+rdx*8] inc dword ptr [rcx] locret_1A1C6: retn
long long JS_DupAtom(long long a1, int a2) { long long result; // rax _DWORD *v3; // rcx result = (unsigned int)a2; if ( a2 >= 224 ) { v3 = *(_DWORD **)(*(_QWORD *)(*(_QWORD *)(a1 + 24) + 104LL) + 8LL * (unsigned int)a2); ++*v3; } return result; }
JS_DupAtom: MOV EAX,ESI CMP ESI,0xe0 JL 0x0011a1c6 MOV RCX,qword ptr [RDI + 0x18] MOV RCX,qword ptr [RCX + 0x68] MOV EDX,EAX MOV RCX,qword ptr [RCX + RDX*0x8] INC dword ptr [RCX] LAB_0011a1c6: RET
void JS_DupAtom(long param_1,uint param_2) { int *piVar1; if (0xdf < (int)param_2) { piVar1 = *(int **)(*(long *)(*(long *)(param_1 + 0x18) + 0x68) + (ulong)param_2 * 8); *piVar1 = *piVar1 + 1; } return; }
26,232
JS_DupAtom
bluesky950520[P]quickjs/quickjs.c
JSAtom JS_DupAtom(JSContext *ctx, JSAtom v) { JSRuntime *rt; JSAtomStruct *p; if (!__JS_AtomIsConst(v)) { rt = ctx->rt; p = rt->atom_array[v]; p->header.ref_count++; } return v; }
O3
c
JS_DupAtom: movl %esi, %eax cmpl $0xe0, %esi jl 0x2052a movq 0x18(%rdi), %rcx movq 0x68(%rcx), %rcx movl %eax, %edx movq (%rcx,%rdx,8), %rcx incl (%rcx) retq
JS_DupAtom: mov eax, esi cmp esi, 0E0h jl short locret_2052A mov rcx, [rdi+18h] mov rcx, [rcx+68h] mov edx, eax mov rcx, [rcx+rdx*8] inc dword ptr [rcx] locret_2052A: retn
long long JS_DupAtom(long long a1, int a2) { long long result; // rax _DWORD *v3; // rcx result = (unsigned int)a2; if ( a2 >= 224 ) { v3 = *(_DWORD **)(*(_QWORD *)(*(_QWORD *)(a1 + 24) + 104LL) + 8LL * (unsigned int)a2); ++*v3; } return result; }
JS_DupAtom: MOV EAX,ESI CMP ESI,0xe0 JL 0x0012052a MOV RCX,qword ptr [RDI + 0x18] MOV RCX,qword ptr [RCX + 0x68] MOV EDX,EAX MOV RCX,qword ptr [RCX + RDX*0x8] INC dword ptr [RCX] LAB_0012052a: RET
void JS_DupAtom(long param_1,uint param_2) { int *piVar1; if (0xdf < (int)param_2) { piVar1 = *(int **)(*(long *)(*(long *)(param_1 + 0x18) + 0x68) + (ulong)param_2 * 8); *piVar1 = *piVar1 + 1; } return; }
26,233
js_function_proto_int32
bluesky950520[P]quickjs/quickjs.c
static JSValue js_function_proto_int32(JSContext *ctx, JSValue this_val, int magic) { JSFunctionBytecode *b = JS_GetFunctionBytecode(this_val); if (b) { int *field = (int *) ((char *)b + magic); return js_int32(*field)...
O1
c
js_function_proto_int32: movq %rsi, -0x8(%rsp) cmpl $-0x1, %edx jne 0x71cf7 movq -0x8(%rsp), %rdx movzwl 0x6(%rdx), %esi xorl %eax, %eax cmpq $0x38, %rsi ja 0x71cf9 movabsq $0x110000000012000, %rdi # imm = 0x110000000012000 btq %rsi, %rdi jae 0x71cf9 movq 0x30(%rdx), %rax jmp 0x71cf9 xorl %eax, %eax testq %rax, %rax je...
js_function_proto_int32: mov [rsp+var_8], rsi cmp edx, 0FFFFFFFFh jnz short loc_71CF7 mov rdx, [rsp+var_8] movzx esi, word ptr [rdx+6] xor eax, eax cmp rsi, 38h ; '8' ja short loc_71CF9 mov rdi, 110000000012000h bt rdi, rsi jnb short loc_71CF9 mov rax, [rdx+30h] jmp s...
long long js_function_proto_int32(long long a1, long long a2, int a3, int a4) { unsigned long long v4; // rsi long long v5; // rax long long v6; // rdi if ( a3 == -1 ) { v4 = *(unsigned __int16 *)(a2 + 6); v5 = 0LL; if ( v4 <= 0x38 ) { v6 = 0x110000000012000LL; if ( _bittest64(&v...
js_function_proto_int32: MOV qword ptr [RSP + -0x8],RSI CMP EDX,-0x1 JNZ 0x00171cf7 MOV RDX,qword ptr [RSP + -0x8] MOVZX ESI,word ptr [RDX + 0x6] XOR EAX,EAX CMP RSI,0x38 JA 0x00171cf9 MOV RDI,0x110000000012000 BT RDI,RSI JNC 0x00171cf9 MOV RAX,qword ptr [RDX + 0x30] JMP 0x00171cf9 LAB_00171cf7: XOR EAX,EAX LAB_00171cf...
int1 [16] js_function_proto_int32(int8 param_1,long param_2,int param_3,int param_4) { long lVar1; if (param_3 == -1) { lVar1 = 0; if (((ulong)*(ushort *)(param_2 + 6) < 0x39) && ((0x110000000012000U >> ((ulong)*(ushort *)(param_2 + 6) & 0x3f) & 1) != 0)) { lVar1 = *(long *)(param_2 + 0x3...
26,234
js_function_proto_int32
bluesky950520[P]quickjs/quickjs.c
static JSValue js_function_proto_int32(JSContext *ctx, JSValue this_val, int magic) { JSFunctionBytecode *b = JS_GetFunctionBytecode(this_val); if (b) { int *field = (int *) ((char *)b + magic); return js_int32(*field)...
O2
c
js_function_proto_int32: movq %rdx, %rax pushq $0x3 popq %rdx cmpl $-0x1, %eax jne 0x5feb1 movzwl 0x6(%rsi), %edi xorl %eax, %eax cmpq $0x38, %rdi ja 0x5feb3 movabsq $0x110000000012000, %r8 # imm = 0x110000000012000 btq %rdi, %r8 jae 0x5feb3 movq 0x30(%rsi), %rax testq %rax, %rax je 0x5feb1 movslq %ecx, %rcx movl (%rax...
js_function_proto_int32: mov rax, rdx push 3 pop rdx cmp eax, 0FFFFFFFFh jnz short loc_5FEB1 movzx edi, word ptr [rsi+6] xor eax, eax cmp rdi, 38h ; '8' ja short locret_5FEB3 mov r8, 110000000012000h bt r8, rdi jnb short locret_5FEB3 mov rax, [rsi+30h] test rax, rax...
long long js_function_proto_int32(long long a1, long long a2, int a3, int a4) { unsigned long long v4; // rdi long long result; // rax long long v6; // r8 long long v7; // rax if ( a3 != -1 ) return 0LL; v4 = *(unsigned __int16 *)(a2 + 6); result = 0LL; if ( v4 <= 0x38 ) { v6 = 0x11000000001...
js_function_proto_int32: MOV RAX,RDX PUSH 0x3 POP RDX CMP EAX,-0x1 JNZ 0x0015feb1 MOVZX EDI,word ptr [RSI + 0x6] XOR EAX,EAX CMP RDI,0x38 JA 0x0015feb3 MOV R8,0x110000000012000 BT R8,RDI JNC 0x0015feb3 MOV RAX,qword ptr [RSI + 0x30] TEST RAX,RAX JZ 0x0015feb1 MOVSXD RCX,ECX MOV EAX,dword ptr [RAX + RCX*0x1] XOR EDX,EDX...
int1 [16] js_function_proto_int32(int8 param_1,long param_2,int param_3,int param_4) { if ((((param_3 == -1) && ((ulong)*(ushort *)(param_2 + 6) < 0x39)) && ((0x110000000012000U >> ((ulong)*(ushort *)(param_2 + 6) & 0x3f) & 1) != 0)) && (*(long *)(param_2 + 0x30) != 0)) { return ZEXT416(*(uint *)(*(...
26,235
js_function_proto_int32
bluesky950520[P]quickjs/quickjs.c
static JSValue js_function_proto_int32(JSContext *ctx, JSValue this_val, int magic) { JSFunctionBytecode *b = JS_GetFunctionBytecode(this_val); if (b) { int *field = (int *) ((char *)b + magic); return js_int32(*field)...
O3
c
js_function_proto_int32: movq %rdx, %rax movl $0x3, %edx cmpl $-0x1, %eax jne 0x743c6 movzwl 0x6(%rsi), %edi xorl %eax, %eax cmpq $0x38, %rdi ja 0x743c8 movabsq $0x110000000012000, %r8 # imm = 0x110000000012000 btq %rdi, %r8 jae 0x743c8 movq 0x30(%rsi), %rax testq %rax, %rax je 0x743c6 movslq %ecx, %rcx movl (%rax,%rcx...
js_function_proto_int32: mov rax, rdx mov edx, 3 cmp eax, 0FFFFFFFFh jnz short loc_743C6 movzx edi, word ptr [rsi+6] xor eax, eax cmp rdi, 38h ; '8' ja short locret_743C8 mov r8, 110000000012000h bt r8, rdi jnb short locret_743C8 mov rax, [rsi+30h] test rax, rax jz ...
long long js_function_proto_int32(long long a1, long long a2, int a3, int a4) { unsigned long long v4; // rdi long long result; // rax long long v6; // r8 long long v7; // rax if ( a3 != -1 ) return 0LL; v4 = *(unsigned __int16 *)(a2 + 6); result = 0LL; if ( v4 <= 0x38 ) { v6 = 0x11000000001...
js_function_proto_int32: MOV RAX,RDX MOV EDX,0x3 CMP EAX,-0x1 JNZ 0x001743c6 MOVZX EDI,word ptr [RSI + 0x6] XOR EAX,EAX CMP RDI,0x38 JA 0x001743c8 MOV R8,0x110000000012000 BT R8,RDI JNC 0x001743c8 MOV RAX,qword ptr [RSI + 0x30] TEST RAX,RAX JZ 0x001743c6 MOVSXD RCX,ECX MOV EAX,dword ptr [RAX + RCX*0x1] XOR EDX,EDX RET ...
int1 [16] js_function_proto_int32(int8 param_1,long param_2,int param_3,int param_4) { if ((((param_3 == -1) && ((ulong)*(ushort *)(param_2 + 6) < 0x39)) && ((0x110000000012000U >> ((ulong)*(ushort *)(param_2 + 6) & 0x3f) & 1) != 0)) && (*(long *)(param_2 + 0x30) != 0)) { return ZEXT416(*(uint *)(*(...
26,236
mysql_server_init
eloqsql/libmariadb/libmariadb/mariadb_lib.c
int STDCALL mysql_server_init(int argc __attribute__((unused)), char **argv __attribute__((unused)), char **groups __attribute__((unused))) { #ifdef _WIN32 BOOL ret = InitOnceExecuteOnce(&init_once, win_init_once, NULL, NULL); return ret? 0: 1; #else return pthread_once(&init_once, mysql_once_init); #endif }
O3
c
mysql_server_init: pushq %rbp movq %rsp, %rbp leaq 0x37e8f2(%rip), %rdi # 0x3c5a78 leaq 0x4a33(%rip), %rsi # 0x4bbc0 popq %rbp jmp 0x37290
mysql_server_init: push rbp mov rbp, rsp lea rdi, init_once lea rsi, mysql_once_init pop rbp jmp _pthread_once
long long mysql_server_init() { return pthread_once(&init_once, mysql_once_init); }
mysql_server_init: PUSH RBP MOV RBP,RSP LEA RDI,[0x4c5a78] LEA RSI,[0x14bbc0] POP RBP JMP 0x00137290
void mysql_server_init(void) { pthread_once(&init_once,mysql_once_init); return; }
26,237
cmp
eloqsql/libmariadb/libmariadb/ma_dtoa.c
static int cmp(Bigint *a, Bigint *b) { ULong *xa, *xa0, *xb, *xb0; int i, j; i= a->wds; j= b->wds; if (i-= j) return i; xa0= a->p.x; xa= xa0 + j; xb0= b->p.x; xb= xb0 + j; for (;;) { if (*--xa != *--xb) return *xa < *xb ? -1 : 1; if (xa <= xa0) break; } return 0; }
O0
c
cmp: pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq -0x10(%rbp), %rax movl 0x14(%rax), %eax movl %eax, -0x3c(%rbp) movq -0x18(%rbp), %rax movl 0x14(%rax), %eax movl %eax, -0x40(%rbp) movl -0x40(%rbp), %ecx movl -0x3c(%rbp), %eax subl %ecx, %eax movl %eax, -0x3c(%rbp) cmpl $0x0, %eax je 0x...
cmp: push rbp mov rbp, rsp mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov rax, [rbp+var_10] mov eax, [rax+14h] mov [rbp+var_3C], eax mov rax, [rbp+var_18] mov eax, [rax+14h] mov [rbp+var_40], eax mov ecx, [rbp+var_40] mov eax, [rbp+var_3C] sub eax, ecx mov [rbp+va...
long long cmp(long long a1, long long a2) { _DWORD *v2; // rax _DWORD *v3; // rcx unsigned int v4; // eax int v6; // [rsp+0h] [rbp-40h] _DWORD *v7; // [rsp+10h] [rbp-30h] _DWORD *v8; // [rsp+20h] [rbp-20h] v6 = *(_DWORD *)(a2 + 20); if ( *(_DWORD *)(a1 + 20) == v6 ) { v8 = (_DWORD *)(4LL * v6 + ...
cmp: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV RAX,qword ptr [RBP + -0x10] MOV EAX,dword ptr [RAX + 0x14] MOV dword ptr [RBP + -0x3c],EAX MOV RAX,qword ptr [RBP + -0x18] MOV EAX,dword ptr [RAX + 0x14] MOV dword ptr [RBP + -0x40],EAX MOV ECX,dword ptr [RBP + -0x40] MOV EAX,...
int cmp(void *param_1,void *param_2) { int iVar1; uint *puVar2; uint *local_38; uint *local_28; int local_c; iVar1 = *(int *)((long)param_2 + 0x14); local_c = *(int *)((long)param_1 + 0x14) - iVar1; if (local_c == 0) { /* WARNING: Load size is inaccurate */ /...
26,238
wserver_handler_about3
navaro[P]qoraal-tictactoe/src/services/www/html/wabout.c
int32_t wserver_handler_about3(HTTP_USER_T *user, uint32_t method, char* endpoint) { static const char about_start[] = \ "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\r\n" \ "<html><head>\r\n" \ "</head><body>\r\n" \ "<H2>" WSERVER_ABOUT_TEXT " %d <H2><br>" ;...
O3
c
wserver_handler_about3: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax cmpl $0x1, %esi jne 0x1295b movq %rdi, %rbx leaq 0x14ea9(%rip), %rdx # 0x27795 movl $0xc8, %esi xorl %ecx, %ecx xorl %r8d, %r8d callq 0x1d9c2 leaq 0x150ae(%rip), %rsi # 0x279b0 movq %rbx, %rdi xorl %eax, %eax callq 0x...
wserver_handler_about3: push rbp mov rbp, rsp push r15 push r14 push rbx push rax cmp esi, 1 jnz short loc_1295B mov rbx, rdi lea rdx, aTextHtml; "text/html" mov esi, 0C8h xor ecx, ecx xor r8d, r8d call httpserver_chunked_response lea rsi, wserver_handler_about3_abo...
long long wserver_handler_about3(long long a1, int a2) { int v2; // edx int v3; // ecx int v4; // r8d int v5; // r9d int v6; // r15d int appended; // eax int v8; // edx int v9; // r8d int v10; // r9d bool v11; // cf int v12; // ecx if ( a2 != 1 ) return 0xFFFFFFFFLL; httpserver_chunked_r...
wserver_handler_about3: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX PUSH RAX CMP ESI,0x1 JNZ 0x0011295b MOV RBX,RDI LEA RDX,[0x127795] MOV ESI,0xc8 XOR ECX,ECX XOR R8D,R8D CALL 0x0011d9c2 LEA RSI,[0x1279b0] MOV RDI,RBX XOR EAX,EAX CALL 0x0011ddc4 MOV R15D,0x63 LEA R14,[0x127a40] LAB_00112919: MOV RDI,RBX MOV RSI,R1...
int8 wserver_handler_about3(int8 param_1,int param_2) { int iVar1; int8 uVar2; int iVar3; bool bVar4; if (param_2 != 1) { return 0xffffffff; } httpserver_chunked_response(param_1,200,s_text_html_00127795,0,0); httpserver_chunked_append_fmtstr(param_1,wserver_handler_about3_about_start); iVar3...
26,239
CLI::detail::split(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, char)
MikePodsytnik[P]TCRtrie/build_O2/_deps/cli11-src/include/CLI/impl/StringTools_inl.hpp
CLI11_INLINE std::vector<std::string> split(const std::string &s, char delim) { std::vector<std::string> elems; // Check to see if empty string, give consistent result if(s.empty()) { elems.emplace_back(); } else { std::stringstream ss; ss.str(s); std::string item; ...
O2
cpp
CLI::detail::split(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, char): pushq %rbp pushq %r15 pushq %r14 pushq %rbx subq $0x1a8, %rsp # imm = 0x1A8 movq %rdi, %rbx andq $0x0, 0x10(%rdi) xorps %xmm0, %xmm0 movups %xmm0, (%rdi) cmpq $0x0, 0x8(%rsi) je 0xdec6 movl %edx, ...
_ZN3CLI6detail5splitERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEc: push rbp push r15 push r14 push rbx sub rsp, 1A8h mov rbx, rdi and qword ptr [rdi+10h], 0 xorps xmm0, xmm0 movups xmmword ptr [rdi], xmm0 cmp qword ptr [rsi+8], 0 jz short loc_DEC6 mov ebp, edx mov ...
long long CLI::detail::split(long long a1, long long a2, char a3) { _QWORD *v4; // rax _QWORD v6[2]; // [rsp+0h] [rbp-1C8h] BYREF char v7; // [rsp+10h] [rbp-1B8h] BYREF _BYTE v8[24]; // [rsp+20h] [rbp-1A8h] BYREF _BYTE v9[400]; // [rsp+38h] [rbp-190h] BYREF *(_QWORD *)(a1 + 16) = 0LL; *(_OWORD *)a1 = 0L...
split: PUSH RBP PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x1a8 MOV RBX,RDI AND qword ptr [RDI + 0x10],0x0 XORPS XMM0,XMM0 MOVUPS xmmword ptr [RDI],XMM0 CMP qword ptr [RSI + 0x8],0x0 JZ 0x0010dec6 LAB_0010de51: MOV EBP,EDX MOV R14,RSI LEA RDI,[RSP + 0x20] CALL 0x00107320 LEA RDI,[RSP + 0x38] LAB_0010de65: MOV RSI,R14 CALL 0x0...
/* CLI::detail::split(std::__cxx11::string const&, char) */ detail * __thiscall CLI::detail::split(detail *this,string *param_1,char param_2) { istream *piVar1; int1 *local_1c8; int8 local_1c0; int1 local_1b8 [16]; stringstream local_1a8 [24]; string local_190 [368]; *(int8 *)(this + 0x10) = 0; *(...
26,240
mysql_once_init
eloqsql/libmariadb/libmariadb/mariadb_lib.c
static int mysql_once_init() #else static void mysql_once_init() #endif { ma_init(); /* Will init threads */ init_client_errs(); get_default_configuration_dirs(); set_default_charset_by_name(MARIADB_DEFAULT_CHARSET, 0); if (mysql_client_plugin_init()) { #ifdef _WIN32 return 1; #else return; #end...
O3
c
mysql_once_init: pushq %rbp movq %rsp, %rbp pushq %rbx pushq %rax callq 0x4d07c callq 0x612f0 xorl %eax, %eax callq 0x60a76 leaq 0x517c7(%rip), %rdi # 0x9d3a5 xorl %esi, %esi callq 0x60a0a xorl %eax, %eax callq 0x5608c testl %eax, %eax jne 0x4bcb2 leaq 0x379e6d(%rip), %rbx # 0x3c5a68 cmpl $0x0, (%rbx) jne 0x4bc4...
mysql_once_init: push rbp mov rbp, rsp push rbx push rax call ma_init call init_client_errs xor eax, eax call get_default_configuration_dirs lea rdi, aUtf8mb4; "utf8mb4" xor esi, esi call set_default_charset_by_name xor eax, eax call mysql_client_plugin_init test eax, eax ...
long long mysql_once_init(long long a1) { long long result; // rax long long v2; // rax long long v3; // rax long long v4; // rax ma_init(a1); init_client_errs(); get_default_configuration_dirs(); set_default_charset_by_name("utf8mb4", 0LL); result = mysql_client_plugin_init(); if ( !(_DWORD)resul...
mysql_once_init: PUSH RBP MOV RBP,RSP PUSH RBX PUSH RAX CALL 0x0014d07c CALL 0x001612f0 XOR EAX,EAX CALL 0x00160a76 LEA RDI,[0x19d3a5] XOR ESI,ESI CALL 0x00160a0a XOR EAX,EAX CALL 0x0015608c TEST EAX,EAX JNZ 0x0014bcb2 LEA RBX,[0x4c5a68] CMP dword ptr [RBX],0x0 JNZ 0x0014bc46 MOV dword ptr [RBX],0xcea LEA RDI,[0x1a6ea9...
void mysql_once_init(void) { ushort uVar1; int iVar2; servent *psVar3; char *pcVar4; ma_init(); init_client_errs(); get_default_configuration_dirs(); set_default_charset_by_name("utf8mb4",0); iVar2 = mysql_client_plugin_init(); if (iVar2 == 0) { if (mysql_port == 0) { mysql_port = 0xc...
26,241
minja::Parser::parseConstant()
monkey531[P]llama/common/minja.hpp
std::shared_ptr<Value> parseConstant() { auto start = it; consumeSpaces(); if (it == end) return nullptr; if (*it == '"' || *it == '\'') { auto str = parseString(); if (str) return std::make_shared<Value>(*str); } static std::regex prim_tok(R"(true\b|True\b|false\b|Fa...
O3
cpp
minja::Parser::parseConstant(): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq %rsi, %r15 movq %rdi, %rbx leaq 0x20(%rsi), %r14 movq 0x18(%rsi), %r12 movq 0x20(%rsi), %r13 movq %r13, %rbp cmpq %r12, %r13 je 0x8a14b movq %r13, %rbp movsbl (%rbp), %edi callq 0x1a0d0 testl %eax, %e...
_ZN5minja6Parser13parseConstantEv: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov r15, rsi mov rbx, rdi lea r14, [rsi+20h] mov r12, [rsi+18h] mov r13, [rsi+20h] mov rbp, r13 cmp r13, r12 jz short loc_8A14B mov rbp, r13 loc_8A133: movsx ...
minja::Parser * minja::Parser::parseConstant(minja::Parser *this, unsigned __int8 **a2) { unsigned __int8 **v2; // r14 char *v3; // r12 unsigned __int8 *v4; // r13 unsigned __int8 *v5; // rbp int v6; // eax void *exception; // r14 char v9; // [rsp+7h] [rbp-71h] BYREF int v10[2]; // [rsp+8h] [rbp-70h] BY...
parseConstant: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV R15,RSI MOV RBX,RDI LEA R14,[RSI + 0x20] MOV R12,qword ptr [RSI + 0x18] MOV R13,qword ptr [RSI + 0x20] MOV RBP,R13 CMP R13,R12 JZ 0x0018a14b MOV RBP,R13 LAB_0018a133: MOVSX EDI,byte ptr [RBP] CALL 0x0011a0d0 TEST EAX,EAX JZ 0x0018a14b...
/* minja::Parser::parseConstant() */ void minja::Parser::parseConstant(void) { char *pcVar1; char *pcVar2; int iVar3; runtime_error *this; char *pcVar4; __normal_iterator *in_RSI; int8 *in_RDI; string *local_70; long local_68; long local_60 [2]; int8 local_50 [4]; pcVar1 = *(char **)(in_RS...
26,242
ggml_backend_cpu_aarch64_buffer_type_alloc_buffer(ggml_backend_buffer_type*, unsigned long)
Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml-cpu/ggml-cpu-aarch64.cpp
static ggml_backend_buffer_t ggml_backend_cpu_aarch64_buffer_type_alloc_buffer(ggml_backend_buffer_type_t buft, size_t size) { ggml_backend_buffer_t buffer = ggml_backend_buft_alloc_buffer(ggml_backend_cpu_buffer_type(), size); if (buffer == nullptr) { return nullptr; } buffer->buft ...
O0
cpp
ggml_backend_cpu_aarch64_buffer_type_alloc_buffer(ggml_backend_buffer_type*, unsigned long): pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) callq 0xdd90 movq %rax, %rdi movq -0x18(%rbp), %rsi callq 0xd290 movq %rax, -0x20(%rbp) cmpq $0x0, -0x20(%rbp) jne 0x4f1f6 movq $0x0, -0x...
_ZL49ggml_backend_cpu_aarch64_buffer_type_alloc_bufferP24ggml_backend_buffer_typem: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_10], rdi mov [rbp+var_18], rsi call _ggml_backend_cpu_buffer_type mov rdi, rax mov rsi, [rbp+var_18] call _ggml_backend_buft_alloc_buffer mov [rbp+var_...
_QWORD * ggml_backend_cpu_aarch64_buffer_type_alloc_buffer(long long a1, long long a2) { long long v2; // rax _QWORD *v4; // [rsp+0h] [rbp-20h] v2 = ggml_backend_cpu_buffer_type(); v4 = (_QWORD *)ggml_backend_buft_alloc_buffer(v2, a2); if ( !v4 ) return 0LL; v4[9] = a1; v4[2] = ggml_backend_cpu_aarch...
ggml_backend_cpu_aarch64_buffer_type_alloc_buffer: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI CALL 0x0010dd90 MOV RDI,RAX MOV RSI,qword ptr [RBP + -0x18] CALL 0x0010d290 MOV qword ptr [RBP + -0x20],RAX CMP qword ptr [RBP + -0x20],0x0 JNZ 0x0014f1f6 MOV qword ptr [R...
/* ggml_backend_cpu_aarch64_buffer_type_alloc_buffer(ggml_backend_buffer_type*, unsigned long) */ long ggml_backend_cpu_aarch64_buffer_type_alloc_buffer (ggml_backend_buffer_type *param_1,ulong param_2) { int8 uVar1; long local_10; uVar1 = ggml_backend_cpu_buffer_type(); local_10 = ggml_bac...
26,243
ggml_backend_cpu_aarch64_buffer_type_alloc_buffer(ggml_backend_buffer_type*, unsigned long)
Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml-cpu/ggml-cpu-aarch64.cpp
static ggml_backend_buffer_t ggml_backend_cpu_aarch64_buffer_type_alloc_buffer(ggml_backend_buffer_type_t buft, size_t size) { ggml_backend_buffer_t buffer = ggml_backend_buft_alloc_buffer(ggml_backend_cpu_buffer_type(), size); if (buffer == nullptr) { return nullptr; } buffer->buft ...
O3
cpp
ggml_backend_cpu_aarch64_buffer_type_alloc_buffer(ggml_backend_buffer_type*, unsigned long): pushq %r14 pushq %rbx pushq %rax movq %rsi, %r14 movq %rdi, %rbx callq 0x8780 movq %rax, %rdi movq %r14, %rsi callq 0x81b0 testq %rax, %rax je 0x2ded5 movq %rbx, 0x48(%rax) leaq 0x26(%rip), %rcx # 0x2dee3 movq %rcx, 0x10...
_ZL49ggml_backend_cpu_aarch64_buffer_type_alloc_bufferP24ggml_backend_buffer_typem: push r14 push rbx push rax mov r14, rsi mov rbx, rdi call _ggml_backend_cpu_buffer_type mov rdi, rax mov rsi, r14 call _ggml_backend_buft_alloc_buffer test rax, rax jz short loc_2DED5 mov [rax+...
_QWORD * ggml_backend_cpu_aarch64_buffer_type_alloc_buffer(long long a1, long long a2, __m128 _XMM0) { long long v3; // rax _QWORD *result; // rax v3 = ggml_backend_cpu_buffer_type(a1); result = (_QWORD *)ggml_backend_buft_alloc_buffer(v3, a2); if ( result ) { result[9] = a1; result[2] = ggml_backe...
ggml_backend_cpu_aarch64_buffer_type_alloc_buffer: PUSH R14 PUSH RBX PUSH RAX MOV R14,RSI MOV RBX,RDI CALL 0x00108780 MOV RDI,RAX MOV RSI,R14 CALL 0x001081b0 TEST RAX,RAX JZ 0x0012ded5 MOV qword ptr [RAX + 0x48],RBX LEA RCX,[0x12dee3] MOV qword ptr [RAX + 0x10],RCX LEA RCX,[0x12def8] MOV qword ptr [RAX + 0x20],RCX VXOR...
/* ggml_backend_cpu_aarch64_buffer_type_alloc_buffer(ggml_backend_buffer_type*, unsigned long) */ void ggml_backend_cpu_aarch64_buffer_type_alloc_buffer (ggml_backend_buffer_type *param_1,ulong param_2) { int8 uVar1; long lVar2; uVar1 = ggml_backend_cpu_buffer_type(); lVar2 = ggml_backend_b...
26,244
google::protobuf::MethodDescriptor::DebugStringWithOptions[abi:cxx11](google::protobuf::DebugStringOptions const&) const
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/descriptor.cc
std::string MethodDescriptor::DebugStringWithOptions( const DebugStringOptions& options) const { std::string contents; DebugString(0, &contents, options); return contents; }
O3
cpp
google::protobuf::MethodDescriptor::DebugStringWithOptions[abi:cxx11](google::protobuf::DebugStringOptions const&) const: pushq %r15 pushq %r14 pushq %rbx movq %rdx, %rcx movq %rdi, %rbx leaq 0x10(%rdi), %r15 movq %r15, (%rdi) movq $0x0, 0x8(%rdi) movb $0x0, 0x10(%rdi) movq %rsi, %rdi xorl %esi, %esi movq %rbx, %rdx ca...
_ZNK6google8protobuf16MethodDescriptor22DebugStringWithOptionsB5cxx11ERKNS0_18DebugStringOptionsE: push r15; char push r14; int push rbx; void * mov rcx, rdx mov rbx, rdi lea r15, [rdi+10h] mov [rdi], r15 mov qword ptr [rdi+8], 0 mov byte ptr [rdi+10h], 0 mov rdi, rsi; this xor ...
long long google::protobuf::MethodDescriptor::DebugStringWithOptions[abi:cxx11]( long long a1, const google::protobuf::ServiceDescriptor **this, __int16 *a3) { *(_QWORD *)a1 = a1 + 16; *(_QWORD *)(a1 + 8) = 0LL; *(_BYTE *)(a1 + 16) = 0; google::protobuf::MethodDescriptor::DebugString(th...
DebugStringWithOptions[abi:cxx11]: PUSH R15 PUSH R14 PUSH RBX MOV RCX,RDX MOV RBX,RDI LEA R15,[RDI + 0x10] MOV qword ptr [RDI],R15 MOV qword ptr [RDI + 0x8],0x0 MOV byte ptr [RDI + 0x10],0x0 LAB_001c83b6: MOV RDI,RSI XOR ESI,ESI MOV RDX,RBX CALL 0x001c7efc LAB_001c83c3: MOV RAX,RBX POP RBX POP R14 POP R15 RET
/* google::protobuf::MethodDescriptor::DebugStringWithOptions[abi:cxx11](google::protobuf::DebugStringOptions const&) const */ DebugStringOptions * google::protobuf::MethodDescriptor::DebugStringWithOptions_abi_cxx11_(DebugStringOptions *param_1) { DebugStringOptions *in_RDX; MethodDescriptor *in_RSI; *(...
26,245
my_suspend_hook
eloqsql/libmariadb/libmariadb/mariadb_lib.c
static void my_suspend_hook(my_bool suspend, void *data) { struct my_hook_data *hook_data= (struct my_hook_data *)data; if (suspend) { hook_data->orig_pvio= hook_data->orig_mysql->net.pvio; hook_data->orig_mysql->net.pvio= hook_data->new_mysql->net.pvio; } else hook_data->orig_mysql->net.pvio= hoo...
O0
c
my_suspend_hook: pushq %rbp movq %rsp, %rbp movb %dil, %al movb %al, -0x1(%rbp) movq %rsi, -0x10(%rbp) movq -0x10(%rbp), %rax movq %rax, -0x18(%rbp) cmpb $0x0, -0x1(%rbp) je 0x44775 movq -0x18(%rbp), %rax movq (%rax), %rax movq (%rax), %rcx movq -0x18(%rbp), %rax movq %rcx, 0x10(%rax) movq -0x18(%rbp), %rax movq 0x8(%r...
my_suspend_hook: push rbp mov rbp, rsp mov al, dil mov [rbp+var_1], al mov [rbp+var_10], rsi mov rax, [rbp+var_10] mov [rbp+var_18], rax cmp [rbp+var_1], 0 jz short loc_44775 mov rax, [rbp+var_18] mov rax, [rax] mov rcx, [rax] mov rax, [rbp+var_18] mov [rax+10h], ...
_QWORD * my_suspend_hook(char a1, long long a2) { long long v2; // rcx _QWORD *result; // rax if ( a1 ) { *(_QWORD *)(a2 + 16) = **(_QWORD **)a2; v2 = **(_QWORD **)(a2 + 8); } else { v2 = *(_QWORD *)(a2 + 16); } result = *(_QWORD **)a2; **(_QWORD **)a2 = v2; return result; }
my_suspend_hook: PUSH RBP MOV RBP,RSP MOV AL,DIL MOV byte ptr [RBP + -0x1],AL MOV qword ptr [RBP + -0x10],RSI MOV RAX,qword ptr [RBP + -0x10] MOV qword ptr [RBP + -0x18],RAX CMP byte ptr [RBP + -0x1],0x0 JZ 0x00144775 MOV RAX,qword ptr [RBP + -0x18] MOV RAX,qword ptr [RAX] MOV RCX,qword ptr [RAX] MOV RAX,qword ptr [RBP...
void my_suspend_hook(char param_1,int8 *param_2) { if (param_1 == '\0') { *(int8 *)*param_2 = param_2[2]; } else { param_2[2] = *(int8 *)*param_2; *(int8 *)*param_2 = *(int8 *)param_2[1]; } return; }
26,246
my_stat
eloqsql/mysys/my_lib.c
MY_STAT *my_stat(const char *path, MY_STAT *stat_area, myf my_flags) { int m_used; DBUG_ENTER("my_stat"); DBUG_PRINT("my", ("path: '%s' stat_area: %p MyFlags: %lu", path, stat_area, my_flags)); if ((m_used= (stat_area == NULL))) if (!(stat_area= (MY_STAT *) my_malloc(key_memory_MY_STA...
O3
c
my_stat: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movq %rdx, %r15 movq %rsi, %r12 movq %rdi, %rbx movq %rsi, %r14 testq %rsi, %rsi jne 0x2b4c8 leaq 0x33b187(%rip), %rax # 0x366638 movl (%rax), %edi movl $0x90, %esi movq %r15, %rdx callq 0x2b56d movq %rax, %r14 test...
my_stat: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx push rax mov r15, rdx mov r12, rsi mov rbx, rdi mov r14, rsi test rsi, rsi jnz short loc_2B4C8 lea rax, key_memory_MY_STAT mov edi, [rax] mov esi, 90h mov rdx, r15 call my_mallo...
long long my_stat(long long a1, long long a2, long long a3) { char v3; // r15 long long v4; // r14 int v5; // r13d unsigned int *v6; // rax v3 = a3; v4 = a2; if ( a2 || (v4 = my_malloc(key_memory_MY_STAT, 144LL, a3)) != 0 ) { if ( !(unsigned int)stat64(a1, v4) ) return v4; v5 = *(_DWORD ...
my_stat: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX MOV R15,RDX MOV R12,RSI MOV RBX,RDI MOV R14,RSI TEST RSI,RSI JNZ 0x0012b4c8 LEA RAX,[0x466638] MOV EDI,dword ptr [RAX] MOV ESI,0x90 MOV RDX,R15 CALL 0x0012b56d MOV R14,RAX TEST RAX,RAX JZ 0x0012b4f4 LAB_0012b4c8: MOV RDI,RBX MOV RSI,R14...
stat64 * my_stat(char *param_1,stat64 *param_2,ulong param_3) { int iVar1; stat64 *__buf; int *piVar2; int4 *puVar3; __buf = param_2; if ((param_2 != (stat64 *)0x0) || (__buf = (stat64 *)my_malloc(key_memory_MY_STAT,0x90,param_3), __buf != (stat64 *)0x0)) { iVar1 = stat64(param_1,__buf); i...
26,247
nlohmann::json_abi_v3_11_3::ordered_map<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<...
llama.cpp/common/json.hpp
T& operator[](const key_type& key) { return emplace(key, T{}).first->second; }
O3
cpp
nlohmann::json_abi_v3_11_3::ordered_map<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<...
_ZN8nlohmann16json_abi_v3_11_311ordered_mapINS0_10basic_jsonIS1_St6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEEN5minja5ValueESt4lessISD_ESaISt4pairIKSD_SF_EEEixERSJ_: push r15 push r14 push rbx sub rsp, 50h mov rbx, rsi mov r15, rdi lea r14...
long long nlohmann::json_abi_v3_11_3::ordered_map<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>,minja::Value,std::less<nlohmann::json_abi_v3...
operator[]: PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x50 MOV RBX,RSI MOV R15,RDI LEA R14,[RSP + 0x40] MOV qword ptr [R14 + 0x8],0x0 XORPS XMM0,XMM0 MOVAPS xmmword ptr [R14 + -0x40],XMM0 MOVAPS xmmword ptr [R14 + -0x30],XMM0 MOVAPS xmmword ptr [R14 + -0x20],XMM0 MOVAPS xmmword ptr [R14 + -0x10],XMM0 MOV byte ptr [R14],0x0 MO...
/* nlohmann::json_abi_v3_11_3::ordered_map<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> ...
26,248
my_casefold_ujis
eloqsql/strings/ctype-ujis.c
static size_t my_casefold_ujis(CHARSET_INFO *cs, const char *src, size_t srclen, char *dst, size_t dstlen __attribute__((unused)), const uchar * const map, size_t is_upper) { const char *srcend= src + srclen, *dst0= dst; while (src < srcend) { ...
O3
c
my_casefold_ujis: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x18, %rsp movq %r8, -0x40(%rbp) movq %rcx, %rbx movq %rcx, -0x30(%rbp) testq %rdx, %rdx jle 0x4af9f movq %rdx, %r15 movq %rsi, %r12 movq %rdi, %r13 addq %rsi, %r15 xorl %eax, %eax testq %r9, %r9 sete %al shll $0x2...
my_casefold_ujis: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 18h mov [rbp+var_40], r8 mov rbx, rcx mov [rbp+var_30], rcx test rdx, rdx jle loc_4AF9F mov r15, rdx mov r12, rsi mov r13, rdi add r15, rsi xor eax, eax test ...
_BYTE * my_casefold_ujis( long long a1, unsigned __int8 *a2, long long a3, unsigned __int8 *a4, long long a5, long long a6) { unsigned __int8 *v6; // rbx unsigned __int8 *v7; // r12 unsigned long long v8; // r15 long long v9; // rax long long v10; // rcx long ...
my_casefold_ujis: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x18 MOV qword ptr [RBP + -0x40],R8 MOV RBX,RCX MOV qword ptr [RBP + -0x30],RCX TEST RDX,RDX JLE 0x0014af9f MOV R15,RDX MOV R12,RSI MOV R13,RDI ADD R15,RSI XOR EAX,EAX TEST R9,R9 SETZ AL SHL EAX,0x2 MOV qword ptr [RBP + -0x38],R...
long my_casefold_ujis(long param_1,byte *param_2,long param_3,byte *param_4,long param_5, long param_6) { byte *pbVar1; byte bVar2; uint uVar3; int iVar4; long lVar6; byte *pbVar7; byte *pbVar8; ulong uVar5; pbVar7 = param_4; if (0 < param_3) { pbVar8 = param_2 + param_...
26,249
google::protobuf::Reflection::UnsafeArenaReleaseLast(google::protobuf::Message*, google::protobuf::FieldDescriptor const*) const
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/generated_message_reflection.cc
Message* Reflection::UnsafeArenaReleaseLast( Message* message, const FieldDescriptor* field) const { USAGE_CHECK_ALL(UnsafeArenaReleaseLast, REPEATED, MESSAGE); CheckInvalidAccess(schema_, field); if (field->is_extension()) { return static_cast<Message*>( MutableExtensionSet(message)->UnsafeArena...
O0
cpp
google::protobuf::Reflection::UnsafeArenaReleaseLast(google::protobuf::Message*, google::protobuf::FieldDescriptor const*) const: subq $0x38, %rsp movq %rdi, 0x28(%rsp) movq %rsi, 0x20(%rsp) movq %rdx, 0x18(%rsp) movq 0x28(%rsp), %rax movq %rax, 0x10(%rsp) movq 0x18(%rsp), %rdi callq 0x73400 movq 0x10(%rsp), %rcx cmpq ...
_ZNK6google8protobuf10Reflection22UnsafeArenaReleaseLastEPNS0_7MessageEPKNS0_15FieldDescriptorE: sub rsp, 38h mov [rsp+38h+var_10], rdi mov [rsp+38h+var_18], rsi mov [rsp+38h+var_20], rdx mov rax, [rsp+38h+var_10] mov [rsp+38h+var_28], rax mov rdi, [rsp+38h+var_20]; this call _ZNK6google8...
long long google::protobuf::Reflection::UnsafeArenaReleaseLast( google::protobuf::_anonymous_namespace_ **this, google::protobuf::Message *a2, const google::protobuf::FieldDescriptor *a3) { const char *v3; // r8 const char *v4; // r8 const google::protobuf::FieldDescriptor *v5; // rdx i...
26,250
google::protobuf::Reflection::UnsafeArenaReleaseLast(google::protobuf::Message*, google::protobuf::FieldDescriptor const*) const
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/generated_message_reflection.cc
Message* Reflection::UnsafeArenaReleaseLast( Message* message, const FieldDescriptor* field) const { USAGE_CHECK_ALL(UnsafeArenaReleaseLast, REPEATED, MESSAGE); CheckInvalidAccess(schema_, field); if (field->is_extension()) { return static_cast<Message*>( MutableExtensionSet(message)->UnsafeArena...
O3
cpp
google::protobuf::Reflection::UnsafeArenaReleaseLast(google::protobuf::Message*, google::protobuf::FieldDescriptor const*) const: pushq %rbp pushq %r15 pushq %r14 pushq %rbx subq $0x18, %rsp movq %rdx, %r14 movq %rsi, %rbx movq %rdi, %r15 movq (%rdi), %rdi cmpq %rdi, 0x20(%rdx) je 0x660f8 leaq 0x53cf2(%rip), %rdx #...
_ZNK6google8protobuf10Reflection22UnsafeArenaReleaseLastEPNS0_7MessageEPKNS0_15FieldDescriptorE: push rbp push r15 push r14 push rbx sub rsp, 18h mov r14, rdx mov rbx, rsi mov r15, rdi mov rdi, [rdi]; this cmp [rdx+20h], rdi jz short loc_660F8 lea rdx, aUnsafearenarel; "Unsa...
long long google::protobuf::Reflection::UnsafeArenaReleaseLast( google::protobuf::_anonymous_namespace_ **this, google::protobuf::Message *a2, const google::protobuf::FieldDescriptor *a3, long long a4, const char *a5, long long a6) { google::protobuf::Message *v7; // r...
UnsafeArenaReleaseLast: PUSH RBP PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x18 MOV R14,RDX MOV RBX,RSI MOV R15,RDI MOV RDI,qword ptr [RDI] CMP qword ptr [RDX + 0x20],RDI JZ 0x001660f8 LEA RDX,[0x1b9ddb] LEA RCX,[0x1b9cc9] MOV RSI,R14 CALL 0x00165a82 LAB_001660f8: MOV AL,byte ptr [R14 + 0x1] NOT AL TEST AL,0x60 JZ 0x0016611b ...
/* google::protobuf::Reflection::UnsafeArenaReleaseLast(google::protobuf::Message*, google::protobuf::FieldDescriptor const*) const */ int8 __thiscall google::protobuf::Reflection::UnsafeArenaReleaseLast (Reflection *this,Message *param_1,FieldDescriptor *param_2) { int iVar1; int iVar2; char cVar...
26,251
my_wc_mb_8bit
eloqsql/strings/ctype-simple.c
int my_wc_mb_8bit(CHARSET_INFO *cs,my_wc_t wc, uchar *str, uchar *end) { MY_UNI_IDX *idx; if (str >= end) return MY_CS_TOOSMALL; for (idx=cs->tab_from_uni; idx->tab ; idx++) { if (idx->from <= wc && idx->to >= wc) { str[0]= idx->tab[wc - idx->from]; return (!str[0] && wc) ? M...
O3
c
my_wc_mb_8bit: movl $0xffffff9b, %eax # imm = 0xFFFFFF9B cmpq %rcx, %rdx jae 0x378e1 pushq %rbp movq %rsp, %rbp movq 0x70(%rdi), %rcx movq 0x8(%rcx), %rdi xorl %eax, %eax testq %rdi, %rdi je 0x378e0 addq $0x2, %rcx movzwl -0x2(%rcx), %r9d movq %rsi, %r8 subq %r9, %r8 jb 0x378bb movzwl (%rcx), %r9d cmpq %rsi, %r9 ...
my_wc_mb_8bit: mov eax, 0FFFFFF9Bh cmp rdx, rcx jnb short locret_378E1 push rbp mov rbp, rsp mov rcx, [rdi+70h] mov rdi, [rcx+8] xor eax, eax test rdi, rdi jz short loc_378E0 add rcx, 2 loc_378A5: movzx r9d, word ptr [rcx-2] mov r8, rsi sub r8, r9 jb short loc_3...
long long my_wc_mb_8bit(long long a1, unsigned long long a2, _BYTE *a3, unsigned long long a4) { long long result; // rax long long v5; // rcx long long v6; // rdi unsigned __int16 *i; // rcx unsigned long long v8; // r9 char v9; // al result = 4294967195LL; if ( (unsigned long long)a3 < a4 ) { ...
my_wc_mb_8bit: MOV EAX,0xffffff9b CMP RDX,RCX JNC 0x001378e1 PUSH RBP MOV RBP,RSP MOV RCX,qword ptr [RDI + 0x70] MOV RDI,qword ptr [RCX + 0x8] XOR EAX,EAX TEST RDI,RDI JZ 0x001378e0 ADD RCX,0x2 LAB_001378a5: MOVZX R9D,word ptr [RCX + -0x2] MOV R8,RSI SUB R8,R9 JC 0x001378bb MOVZX R9D,word ptr [RCX] CMP R9,RSI JNC 0x001...
ulong my_wc_mb_8bit(long param_1,ulong param_2,char *param_3,char *param_4) { char cVar1; ulong uVar2; ushort *puVar3; long lVar4; uVar2 = 0xffffff9b; if (param_3 < param_4) { lVar4 = *(long *)(*(long *)(param_1 + 0x70) + 8); uVar2 = 0; if (lVar4 != 0) { puVar3 = (ushort *)(*(long *)(...
26,252
mysql_list_fields_start_internal
eloqsql/libmariadb/libmariadb/mariadb_async.c
static void mysql_list_fields_start_internal(void *d) { MK_ASYNC_INTERNAL_BODY( mysql_list_fields, (parms->mysql, parms->table, parms->wild), parms->mysql, MYSQL_RES *, r_ptr) }
O3
c
mysql_list_fields_start_internal: pushq %rbp movq %rsp, %rbp pushq %rbx pushq %rax movq (%rdi), %rax movq 0x8(%rdi), %rsi movq 0x480(%rax), %rcx movq 0x28(%rcx), %rbx movq 0x10(%rdi), %rdx movq %rax, %rdi callq 0x1ddab movq %rax, 0x8(%rbx) movl $0x0, (%rbx) addq $0x8, %rsp popq %rbx popq %rbp retq
mysql_list_fields_start_internal: push rbp mov rbp, rsp push rbx push rax mov rax, [rdi] mov rsi, [rdi+8] mov rcx, [rax+480h] mov rbx, [rcx+28h] mov rdx, [rdi+10h] mov rdi, rax call mysql_list_fields mov [rbx+8], rax mov dword ptr [rbx], 0 add rsp, 8 pop rbx pop ...
long long mysql_list_fields_start_internal(long long a1) { long long v1; // rbx long long result; // rax v1 = *(_QWORD *)(*(_QWORD *)(*(_QWORD *)a1 + 1152LL) + 40LL); result = mysql_list_fields(*(_QWORD *)a1, *(const char **)(a1 + 8), *(const char **)(a1 + 16)); *(_QWORD *)(v1 + 8) = result; *(_DWORD *)v1...
mysql_list_fields_start_internal: PUSH RBP MOV RBP,RSP PUSH RBX PUSH RAX MOV RAX,qword ptr [RDI] MOV RSI,qword ptr [RDI + 0x8] MOV RCX,qword ptr [RAX + 0x480] MOV RBX,qword ptr [RCX + 0x28] MOV RDX,qword ptr [RDI + 0x10] MOV RDI,RAX CALL 0x0011ddab MOV qword ptr [RBX + 0x8],RAX MOV dword ptr [RBX],0x0 ADD RSP,0x8 POP R...
void mysql_list_fields_start_internal(long *param_1) { int4 *puVar1; int8 uVar2; puVar1 = *(int4 **)(*(long *)(*param_1 + 0x480) + 0x28); uVar2 = mysql_list_fields(*param_1,param_1[1],param_1[2]); *(int8 *)(puVar1 + 2) = uVar2; *puVar1 = 0; return; }
26,253
mthd_stmt_read_all_rows
eloqsql/libmariadb/libmariadb/mariadb_stmt.c
int mthd_stmt_read_all_rows(MYSQL_STMT *stmt) { MYSQL_DATA *result= &stmt->result; MYSQL_ROWS *current, **pprevious; ulong packet_len; unsigned char *p; pprevious= &result->data; while ((packet_len = ma_net_safe_read(stmt->mysql)) != packet_error) { p= stmt->mysql->net.read_pos; if (packet_len >...
O3
c
mthd_stmt_read_all_rows: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq %rdi, %rbx movq 0x38(%rdi), %rdi callq 0x19e07 movq %rax, %r15 movl $0xffffffff, %eax # imm = 0xFFFFFFFF cmpq %rax, %r15 je 0x22f02 leaq 0x80(%rbx), %r14 leaq 0x90(%rbx), %rax movq %rax...
mthd_stmt_read_all_rows: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 28h mov rbx, rdi mov rdi, [rdi+38h] call ma_net_safe_read mov r15, rax mov eax, 0FFFFFFFFh cmp r15, rax jz loc_22F02 lea r14, [rbx+80h] lea rax, [rbx+90h] mo...
long long mthd_stmt_read_all_rows(long long a1, long long a2, long long a3, long long a4, unsigned long long a5, int a6) { unsigned long long v7; // r15 char **v8; // r14 _BYTE *v9; // r13 char *v10; // rax char *v11; // r12 void *v12; // rsi unsigned long long v13; // rdx long long v14; // rcx unsig...
mthd_stmt_read_all_rows: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x28 MOV RBX,RDI MOV RDI,qword ptr [RDI + 0x38] CALL 0x00119e07 MOV R15,RAX MOV EAX,0xffffffff CMP R15,RAX JZ 0x00122f02 LEA R14,[RBX + 0x80] LEA RAX,[RBX + 0x90] MOV qword ptr [RBP + -0x38],RAX LAB_00122d19: MOV RAX,qwor...
int8 mthd_stmt_read_all_rows(long param_1) { long *plVar1; ushort uVar2; uint uVar3; long lVar4; ulong uVar5; ulong __n; int8 *puVar6; ulong uVar7; ulong uVar8; char *pcVar9; ulong uVar10; byte *pbVar11; byte bVar12; int8 *puVar13; long lVar14; bool bVar15; char *local_38; __n =...
26,254
nlohmann::json_abi_v3_12_0::basic_json<nlohmann::json_abi_v3_12_0::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_12_0::adl_serializer, std::vector<unsigned char, std::allocator<unsigned c...
shubhamoy[P]dir2txt/include/nlohmann/json.hpp
const_reference operator[](size_type idx) const { // const operator[] only works for arrays if (JSON_HEDLEY_LIKELY(is_array())) { return m_data.m_value.array->operator[](idx); } JSON_THROW(type_error::create(305, detail::concat("cannot use operator[] with a numer...
O3
cpp
nlohmann::json_abi_v3_12_0::basic_json<nlohmann::json_abi_v3_12_0::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_12_0::adl_serializer, std::vector<unsigned char, std::allocator<unsigned c...
_ZNK8nlohmann16json_abi_v3_12_010basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEixEm: push rbp; char push r14; int push rbx; __int64 sub rsp, 30h mov r14, rdi cmp byte ptr [rdi], 2 jnz short loc_2AA59 mov rax...
operator[]: PUSH RBP PUSH R14 PUSH RBX SUB RSP,0x30 MOV R14,RDI CMP byte ptr [RDI],0x2 JNZ 0x0012aa59 MOV RAX,qword ptr [R14 + 0x8] SHL RSI,0x4 ADD RSI,qword ptr [RAX] MOV RAX,RSI ADD RSP,0x30 POP RBX POP R14 POP RBP RET LAB_0012aa59: MOV EDI,0x20 CALL 0x001081d0 MOV RBX,RAX MOV RDI,R14 CALL 0x0012ad44 LEA RDX,[RSP + 0...
/* nlohmann::json_abi_v3_12_0::basic_json<nlohmann::json_abi_v3_12_0::ordered_map, std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_12_0::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char> >, void>::operator[](unsigned long) cons...
26,255
delete_dir_entry
eloqsql/storage/maria/ma_blockrec.c
static int delete_dir_entry(MARIA_SHARE *share, uchar *buff, uint record_number, uint *empty_space_res) { uint block_size= share->block_size; uint number_of_records= (uint) buff[DIR_COUNT_OFFSET]; uint length, empty_space; uchar *dir; DBUG_ENTER("delete_...
O3
c
delete_dir_entry: movzbl 0x8(%rsi), %r11d movl $0xffffffff, %eax # imm = 0xFFFFFFFF cmpl %edx, %r11d jbe 0x4c583 leal -0xd(%rdi), %r8d shrl $0x2, %r8d cmpl %edx, %r8d jb 0x4c583 pushq %rbp movq %rsp, %rbp pushq %r14 pushq %rbx movzwl 0xa(%rsi), %r8d movl %edi, %r9d addq %rsi, %r9 leal (,%rdx,4), %ebx movq %r9, %r...
delete_dir_entry: movzx r11d, byte ptr [rsi+8] mov eax, 0FFFFFFFFh cmp r11d, edx jbe locret_4C583 lea r8d, [rdi-0Dh] shr r8d, 2 cmp r8d, edx jb locret_4C583 push rbp mov rbp, rsp push r14 push rbx movzx r8d, word ptr [rsi+0Ah] mov r9d, edi add r9, rsi lea ebx, d...
long long delete_dir_entry(unsigned int a1, long long a2, unsigned int a3, unsigned int *a4) { unsigned int v4; // r11d long long result; // rax int v6; // r8d long long v7; // r9 long long v8; // rbx long long v9; // r10 int v10; // eax long long v11; // rbx unsigned __int8 v12; // r11 long long v...
delete_dir_entry: MOVZX R11D,byte ptr [RSI + 0x8] MOV EAX,0xffffffff CMP R11D,EDX JBE 0x0014c583 LEA R8D,[RDI + -0xd] SHR R8D,0x2 CMP R8D,EDX JC 0x0014c583 PUSH RBP MOV RBP,RSP PUSH R14 PUSH RBX MOVZX R8D,word ptr [RSI + 0xa] MOV R9D,EDI ADD R9,RSI LEA EBX,[RDX*0x4] MOV RAX,R9 SUB RAX,RBX MOV R10,-0x8 SUB R10,RBX MOVZX...
int8 delete_dir_entry(uint param_1,long param_2,uint param_3,uint *param_4) { byte bVar1; ushort uVar2; int8 uVar3; ulong uVar4; long lVar5; uint uVar6; long lVar7; long lVar8; byte bVar9; if (*(byte *)(param_2 + 8) <= param_3) { return 0xffffffff; } if (param_1 - 0xd >> 2 < param_3) { ...
26,256
my_coll_rule_parse
eloqsql/strings/ctype-uca.c
static int my_coll_rule_parse(MY_COLL_RULES *rules, const char *str, const char *str_end) { MY_COLL_RULE_PARSER p; my_coll_parser_init(&p, rules, str, str_end); if (!my_coll_parser_exec(&p)) { my_coll_lexem_print_error(my_coll_parser_curr(&p), rules->loader...
O0
c
my_coll_rule_parse: pushq %rbp movq %rsp, %rbp subq $0x1b0, %rsp # imm = 0x1B0 movq %fs:0x28, %rax movq %rax, -0x8(%rbp) movq %rdi, -0x190(%rbp) movq %rsi, -0x198(%rbp) movq %rdx, -0x1a0(%rbp) movq -0x190(%rbp), %rsi movq -0x198(%rbp), %rdx movq -0x1a0(%rbp), %rcx leaq -0x180(%rbp), %rdi callq 0x9e380 leaq -...
my_coll_rule_parse: push rbp mov rbp, rsp sub rsp, 1B0h mov rax, fs:28h mov [rbp+var_8], rax mov [rbp+var_190], rdi mov [rbp+var_198], rsi mov [rbp+var_1A0], rdx mov rsi, [rbp+var_190] mov rdx, [rbp+var_198] mov rcx, [rbp+var_1A0] lea rdi, [rbp+var_180] call my_coll_par...
long long my_coll_rule_parse(long long a1, long long a2, long long a3) { long long v3; // rax _BYTE v6[248]; // [rsp+30h] [rbp-180h] BYREF _QWORD v7[17]; // [rsp+128h] [rbp-88h] BYREF v7[16] = __readfsqword(0x28u); my_coll_parser_init(v6, a1, a2, a3); if ( (unsigned int)my_coll_parser_exec(v6) ) { r...
my_coll_rule_parse: PUSH RBP MOV RBP,RSP SUB RSP,0x1b0 MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x8],RAX MOV qword ptr [RBP + -0x190],RDI MOV qword ptr [RBP + -0x198],RSI MOV qword ptr [RBP + -0x1a0],RDX MOV RSI,qword ptr [RBP + -0x190] MOV RDX,qword ptr [RBP + -0x198] MOV RCX,qword ptr [RBP + -0x1a0] LEA RDI,...
bool my_coll_rule_parse(long param_1,int8 param_2,int8 param_3) { int iVar1; int8 uVar2; long in_FS_OFFSET; int1 local_188 [248]; int1 auStack_90 [128]; long local_10; local_10 = *(long *)(in_FS_OFFSET + 0x28); my_coll_parser_init(local_188,param_1,param_2,param_3); iVar1 = my_coll_parser_exec(lo...
26,257
js_std_unsetenv
bluesky950520[P]quickjs/quickjs-libc.c
static JSValue js_std_unsetenv(JSContext *ctx, JSValue this_val, int argc, JSValue *argv) { const char *name; name = JS_ToCString(ctx, argv[0]); if (!name) return JS_EXCEPTION; unsetenv(name); JS_FreeCString(ctx, name); return JS_UNDEFINED; }
O0
c
js_std_unsetenv: subq $0x48, %rsp movq %rsi, 0x28(%rsp) movq %rdx, 0x30(%rsp) movq %rdi, 0x20(%rsp) movl %ecx, 0x1c(%rsp) movq %r8, 0x10(%rsp) movq 0x20(%rsp), %rdi movq 0x10(%rsp), %rax movq (%rax), %rsi movq 0x8(%rax), %rdx callq 0x1aad0 movq %rax, 0x8(%rsp) cmpq $0x0, 0x8(%rsp) jne 0x1b4c2 movl $0x0, 0x38(%rsp) movq...
js_std_unsetenv: sub rsp, 48h mov [rsp+48h+var_20], rsi mov [rsp+48h+var_18], rdx mov [rsp+48h+var_28], rdi mov [rsp+48h+var_2C], ecx mov [rsp+48h+var_38], r8 mov rdi, [rsp+48h+var_28] mov rax, [rsp+48h+var_38] mov rsi, [rax] mov rdx, [rax+8] call JS_ToCString_0 mov [rsp+4...
long long js_std_unsetenv(long long a1, long long a2, long long a3, long long a4, long long *a5, long long a6) { long long v7; // [rsp+8h] [rbp-40h] long long v8; // [rsp+38h] [rbp-10h] v7 = JS_ToCString_0(a1, *a5, a5[1], a4, (long long)a5, a6); if ( v7 ) { unsetenv(v7); JS_FreeCString(a1, v7); } ...
js_std_unsetenv: SUB RSP,0x48 MOV qword ptr [RSP + 0x28],RSI MOV qword ptr [RSP + 0x30],RDX MOV qword ptr [RSP + 0x20],RDI MOV dword ptr [RSP + 0x1c],ECX MOV qword ptr [RSP + 0x10],R8 MOV RDI,qword ptr [RSP + 0x20] MOV RAX,qword ptr [RSP + 0x10] MOV RSI,qword ptr [RAX] MOV RDX,qword ptr [RAX + 0x8] CALL 0x0011aad0 MOV ...
int1 [16] js_std_unsetenv(int8 param_1) { int1 auVar1 [16]; char *__name; int8 *in_R8; int4 uStack_c; int8 local_8; __name = (char *)JS_ToCString(param_1,*in_R8,in_R8[1]); if (__name == (char *)0x0) { local_8 = 6; } else { unsetenv(__name); JS_FreeCString(param_1,__name); local_8...
26,258
js_std_unsetenv
bluesky950520[P]quickjs/quickjs-libc.c
static JSValue js_std_unsetenv(JSContext *ctx, JSValue this_val, int argc, JSValue *argv) { const char *name; name = JS_ToCString(ctx, argv[0]); if (!name) return JS_EXCEPTION; unsetenv(name); JS_FreeCString(ctx, name); return JS_UNDEFINED; }
O1
c
js_std_unsetenv: pushq %r14 pushq %rbx pushq %rax movq %rdi, %rbx movq (%r8), %rdx movq 0x8(%r8), %rcx xorl %esi, %esi xorl %r8d, %r8d callq 0x24c53 testq %rax, %rax je 0x1b216 movq %rax, %r14 movq %rax, %rdi callq 0xe8a0 movq %rbx, %rdi movq %r14, %rsi callq 0x24f39 movl $0x3, %edx jmp 0x1b21b movl $0x6, %edx xorl %ea...
js_std_unsetenv: push r14 push rbx push rax mov rbx, rdi mov rdx, [r8] mov rcx, [r8+8] xor esi, esi xor r8d, r8d call JS_ToCStringLen2 test rax, rax jz short loc_1B216 mov r14, rax mov rdi, rax call _unsetenv mov rdi, rbx mov rsi, r14 call JS_FreeCString mov...
long long js_std_unsetenv(long long a1, long long a2, long long a3, long long a4, _QWORD *a5) { long long v5; // rax long long v6; // r14 v5 = JS_ToCStringLen2(a1, 0LL, *a5, a5[1], 0LL); if ( v5 ) { v6 = v5; unsetenv(v5); JS_FreeCString(a1, v6); } return 0LL; }
js_std_unsetenv: PUSH R14 PUSH RBX PUSH RAX MOV RBX,RDI MOV RDX,qword ptr [R8] MOV RCX,qword ptr [R8 + 0x8] XOR ESI,ESI XOR R8D,R8D CALL 0x00124c53 TEST RAX,RAX JZ 0x0011b216 MOV R14,RAX MOV RDI,RAX CALL 0x0010e8a0 MOV RDI,RBX MOV RSI,R14 CALL 0x00124f39 MOV EDX,0x3 JMP 0x0011b21b LAB_0011b216: MOV EDX,0x6 LAB_0011b21b...
int1 [16] js_std_unsetenv(int8 param_1) { int1 auVar1 [16]; char *__name; ulong uVar2; int8 *in_R8; __name = (char *)JS_ToCStringLen2(param_1,0,*in_R8,in_R8[1],0); if (__name == (char *)0x0) { uVar2 = 6; } else { unsetenv(__name); JS_FreeCString(param_1,__name); uVar2 = 3; } au...
26,259
my_sleep
eloqsql/mysys/my_sleep.c
void my_sleep(ulong m_seconds) { #if defined(_WIN32) Sleep(m_seconds/1000+1); /* Sleep() has millisecond arg */ #elif defined(HAVE_SELECT) struct timeval t; t.tv_sec= m_seconds / 1000000L; t.tv_usec= m_seconds % 1000000L; select(0,0,0,0,&t); /* sleep */ #else uint sec= (uint) ((m_seconds + 999999L)...
O0
c
my_sleep: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax movl $0xf4240, %ecx # imm = 0xF4240 xorl %edx, %edx divq %rcx movq %rax, -0x18(%rbp) movq -0x8(%rbp), %rax movl $0xf4240, %ecx # imm = 0xF4240 xorl %edx, %edx divq %rcx movq %rdx, -0x10(%rbp) xorl %edi, %...
my_sleep: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_8], rdi mov rax, [rbp+var_8] mov ecx, 0F4240h xor edx, edx div rcx mov [rbp+var_18], rax mov rax, [rbp+var_8] mov ecx, 0F4240h xor edx, edx div rcx mov [rbp+var_10], rdx xor edi, edi xor eax, eax mov...
long long my_sleep(unsigned long long a1) { _QWORD v2[3]; // [rsp+8h] [rbp-18h] BYREF v2[2] = a1; v2[0] = a1 / 0xF4240; v2[1] = a1 % 0xF4240; return select(0LL, 0LL, 0LL, 0LL, v2); }
my_sleep: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x8],RDI MOV RAX,qword ptr [RBP + -0x8] MOV ECX,0xf4240 XOR EDX,EDX DIV RCX MOV qword ptr [RBP + -0x18],RAX MOV RAX,qword ptr [RBP + -0x8] MOV ECX,0xf4240 XOR EDX,EDX DIV RCX MOV qword ptr [RBP + -0x10],RDX XOR EDI,EDI XOR EAX,EAX MOV ECX,EAX LEA R8,[RBP...
void my_sleep(ulong param_1) { timeval local_20; ulong local_10; local_20.tv_sec = param_1 / 1000000; local_20.tv_usec = param_1 % 1000000; local_10 = param_1; select(0,(fd_set *)0x0,(fd_set *)0x0,(fd_set *)0x0,&local_20); return; }
26,260
js_proxy_delete_property
bluesky950520[P]quickjs/quickjs.c
static int js_proxy_delete_property(JSContext *ctx, JSValue obj, JSAtom atom) { JSProxyData *s; JSValue method, ret, atom_val; int res, res2, is_extensible; JSValue args[2]; s = get_proxy_method(ctx, &method, obj, JS_ATOM_deleteProperty); if (!s) retu...
O1
c
js_proxy_delete_property: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x88, %rsp movl %ecx, %r15d movq %rdx, %rcx movq %rsi, %rdx movq %rdi, %rbx leaq 0x18(%rsp), %rsi movl $0x65, %r8d callq 0x3d3e0 movl $0xffffffff, %ebp # imm = 0xFFFFFFFF testq %rax, %rax je 0x4e9a6 movq %rax, %r14 m...
js_proxy_delete_property: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 88h mov r15d, ecx mov rcx, rdx mov rdx, rsi mov rbx, rdi lea rsi, [rsp+0B8h+var_A0] mov r8d, 65h ; 'e' call get_proxy_method mov ebp, 0FFFFFFFFh test rax, rax jz loc_4E9A...
long long js_proxy_delete_property( long long a1, long long a2, long long a3, unsigned int a4, __m128 a5, __m128 a6, __m128 a7, __m128 a8, __m128 a9, __m128 a10, __m128 a11, __m128 a12, long long a13, long l...
js_proxy_delete_property: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x88 MOV R15D,ECX MOV RCX,RDX MOV RDX,RSI MOV RBX,RDI LEA RSI,[RSP + 0x18] MOV R8D,0x65 CALL 0x0013d3e0 MOV EBP,0xffffffff TEST RAX,RAX JZ 0x0014e9a6 MOV R14,RAX MOV R12,qword ptr [RSP + 0x20] CMP R12D,0x3 JNZ 0x0014e8c7 MOV RSI,qwo...
ulong js_proxy_delete_property (long param_1,int8 param_2,int8 param_3,int4 param_4) { short sVar1; uint uVar2; int iVar3; int8 *puVar4; ulong uVar5; int8 uVar6; int8 uVar7; int1 auVar8 [16]; int8 local_a0; int8 local_98; byte local_90 [56]; int4 local_58; int4 uStack_54; i...
26,261
js_proxy_delete_property
bluesky950520[P]quickjs/quickjs.c
static int js_proxy_delete_property(JSContext *ctx, JSValue obj, JSAtom atom) { JSProxyData *s; JSValue method, ret, atom_val; int res, res2, is_extensible; JSValue args[2]; s = get_proxy_method(ctx, &method, obj, JS_ATOM_deleteProperty); if (!s) retu...
O2
c
js_proxy_delete_property: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x88, %rsp movl %ecx, %ebp movq %rdx, %rcx movq %rsi, %rdx movq %rdi, %r14 leaq 0x18(%rsp), %rsi pushq $0x65 popq %r8 callq 0x35d01 movq %rax, %r15 pushq $-0x1 popq %rax testq %r15, %r15 je 0x436bc movq 0x20(%rsp), %r12 cm...
js_proxy_delete_property: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 88h mov ebp, ecx mov rcx, rdx mov rdx, rsi mov r14, rdi lea rsi, [rsp+0B8h+var_A0] push 65h ; 'e' pop r8 call get_proxy_method mov r15, rax push 0FFFFFFFFFFFFFFFFh pop ...
long long js_proxy_delete_property( long long a1, long long a2, int a3, unsigned int a4, __m128 a5, __m128 a6, __m128 a7, __m128 a8, double a9, double a10, __m128 a11, __m128 a12) { long long *proxy_method; // r15 doubl...
js_proxy_delete_property: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x88 MOV EBP,ECX MOV RCX,RDX MOV RDX,RSI MOV R14,RDI LEA RSI,[RSP + 0x18] PUSH 0x65 POP R8 CALL 0x00135d01 MOV R15,RAX PUSH -0x1 POP RAX TEST R15,R15 JZ 0x001436bc MOV R12,qword ptr [RSP + 0x20] CMP R12D,0x3 JNZ 0x00143642 MOV RSI,q...
ulong js_proxy_delete_property (int8 param_1,int8 param_2,int8 param_3,int4 param_4) { uint uVar1; int iVar2; int8 *puVar3; ulong uVar4; int8 uVar5; int8 uVar6; int1 auVar7 [16]; int8 local_a0; int8 local_98; byte local_90 [56]; int4 local_58; int4 uStack_54; int4 uStack_50; ...
26,262
nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<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::all...
monkey531[P]llama/common/./json.hpp
~iteration_proxy_value() = default;
O1
cpp
nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<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::all...
_ZN8nlohmann16json_abi_v3_11_36detail21iteration_proxy_valueINS1_9iter_implIKNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEEEEED2Ev: push rbx mov rbx, rdi mov rdi, [rdi+50h]; void * lea rax, [rbx+60h] cmp rdi, r...
void nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<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<unsign...
~iteration_proxy_value: PUSH RBX MOV RBX,RDI MOV RDI,qword ptr [RDI + 0x50] LEA RAX,[RBX + 0x60] CMP RDI,RAX JZ 0x00170bac MOV RSI,qword ptr [RAX] INC RSI CALL 0x001186a0 LAB_00170bac: MOV RDI,qword ptr [RBX + 0x30] ADD RBX,0x40 CMP RDI,RBX JZ 0x00170bc5 MOV RSI,qword ptr [RBX] INC RSI POP RBX JMP 0x001186a0 LAB_00170b...
/* nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<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_serializ...
26,263
google::protobuf::Reflection::SetRepeatedString(google::protobuf::Message*, google::protobuf::FieldDescriptor const*, int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>) const
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/generated_message_reflection.cc
void Reflection::SetRepeatedString(Message* message, const FieldDescriptor* field, int index, std::string value) const { USAGE_CHECK_ALL(SetRepeatedString, REPEATED, STRING); if (field->is_extension()) { MutableExtensionSet(message)->SetRepea...
O3
cpp
google::protobuf::Reflection::SetRepeatedString(google::protobuf::Message*, google::protobuf::FieldDescriptor const*, int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>) const: pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x30, %rsp movq %r8, %r14 movl %ecx, %ebx movq %r...
_ZNK6google8protobuf10Reflection17SetRepeatedStringEPNS0_7MessageEPKNS0_15FieldDescriptorEiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: push r15 push r14 push r13 push r12 push rbx sub rsp, 30h mov r14, r8 mov ebx, ecx mov r12, rdx mov r15, rsi mov r13, rdi mov rdi, [...
void google::protobuf::Reflection::SetRepeatedString( long long a1, long long a2, long long a3, int a4, long long a5, int a6) { google::protobuf::_anonymous_namespace_ *v10; // rdi long long v11; // rdi unsigned int FieldOffset; // eax int v13; // r15d int v14;...
SetRepeatedString: PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x30 MOV R14,R8 MOV EBX,ECX MOV R12,RDX MOV R15,RSI MOV R13,RDI MOV RDI,qword ptr [RDI] CMP qword ptr [RDX + 0x20],RDI JZ 0x00192ba0 LEA RDX,[0x2688d6] LEA RCX,[0x268599] MOV RSI,R12 CALL 0x0018ee9e LAB_00192ba0: MOV AL,byte ptr [R12 + 0x1] NOT AL ...
/* google::protobuf::Reflection::SetRepeatedString(google::protobuf::Message*, google::protobuf::FieldDescriptor const*, int, std::__cxx11::string) const */ void __thiscall google::protobuf::Reflection::SetRepeatedString (Reflection *this,long param_1,FieldDescriptor *param_2,int param_3,string *param_5)...
26,264
ggml_gemv_iq4_nl_4x4_q8_0(int, float*, unsigned long, void const*, void const*, int, int)
ngxson[P]ggml-easy/ggml/src/ggml-cpu/ggml-cpu-aarch64.cpp
static void ggml_gemv_iq4_nl_4x4_q8_0(int n, float * GGML_RESTRICT s, size_t bs, const void * GGML_RESTRICT vx, const void * GGML_RESTRICT vy, int nr, int nc) { const int qk = QK8_0; const int nb = n / qk; const int ncols_interleaved = 4; const int blocklen = 4; assert (n % qk == 0); assert (nc...
O0
cpp
ggml_gemv_iq4_nl_4x4_q8_0(int, float*, unsigned long, void const*, void const*, int, int): subq $0xa8, %rsp movl 0xb0(%rsp), %eax movl %edi, 0xa4(%rsp) movq %rsi, 0x98(%rsp) movq %rdx, 0x90(%rsp) movq %rcx, 0x88(%rsp) movq %r8, 0x80(%rsp) movl %r9d, 0x7c(%rsp) movl $0x20, 0x78(%rsp) movl 0xa4(%rsp), %eax movl $0x20, %e...
_ZL25ggml_gemv_iq4_nl_4x4_q8_0iPfmPKvS1_ii: sub rsp, 0A8h mov eax, [rsp+0A8h+arg_0] mov [rsp+0A8h+var_4], edi mov [rsp+0A8h+var_10], rsi mov [rsp+0A8h+var_18], rdx mov [rsp+0A8h+var_20], rcx mov [rsp+0A8h+var_28], r8 mov [rsp+0A8h+var_2C], r9d mov [rsp+0A8h+var_30], 20h ; ' ' mov ...
long long ggml_gemv_iq4_nl_4x4_q8_0( int a1, float *a2, long long a3, char *a4, _WORD *a5, int a6, __m128 _XMM0, int a8) { long long result; // rax int jj; // [rsp+10h] [rbp-98h] int ii; // [rsp+1Ch] [rbp-8Ch] int n; // [rsp+20h] [rbp-88h] int m...
ggml_gemv_iq4_nl_4x4_q8_0: SUB RSP,0xa8 MOV EAX,dword ptr [RSP + 0xb0] MOV dword ptr [RSP + 0xa4],EDI MOV qword ptr [RSP + 0x98],RSI MOV qword ptr [RSP + 0x90],RDX MOV qword ptr [RSP + 0x88],RCX MOV qword ptr [RSP + 0x80],R8 MOV dword ptr [RSP + 0x7c],R9D MOV dword ptr [RSP + 0x78],0x20 MOV EAX,dword ptr [RSP + 0xa4] M...
/* ggml_gemv_iq4_nl_4x4_q8_0(int, float*, unsigned long, void const*, void const*, int, int) */ void ggml_gemv_iq4_nl_4x4_q8_0 (int param_1,float *param_2,ulong param_3,void *param_4,void *param_5,int param_6, int param_7) { int1 auVar1 [16]; void *pvVar2; int iVar3; float fVar4...
26,265
flux::parser::OperatorDecl::clone() const
kvthweatt[P]FluxLang/src/parser/ast.cpp
std::unique_ptr<Decl> OperatorDecl::clone() const { std::vector<OperatorDecl::Parameter> clonedParameters; for (const auto& param : parameters) { clonedParameters.emplace_back( param.name, static_cast<std::unique_ptr<TypeExpr>>(param.type->clone())); } return st...
O2
cpp
flux::parser::OperatorDecl::clone() const: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x38, %rsp movq %rsi, %r14 movq %rdi, %rbx xorps %xmm0, %xmm0 leaq 0x20(%rsp), %r15 andq $0x0, 0x10(%r15) movaps %xmm0, (%r15) movq 0x38(%rsi), %r12 movq 0x40(%rsi), %rbp leaq 0x8(%rsp), %r13 cmpq %rbp, %r...
_ZNK4flux6parser12OperatorDecl5cloneEv: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 38h mov r14, rsi mov rbx, rdi xorps xmm0, xmm0 lea r15, [rsp+68h+var_48] and qword ptr [r15+10h], 0 movaps xmmword ptr [r15], xmm0 mov r12, [rsi+38h] mov rbp, [rsi+40h]...
flux::parser::OperatorDecl * flux::parser::OperatorDecl::clone(flux::parser::OperatorDecl *this, long long a2) { long long v2; // r12 long long v3; // rbp long long v4; // rax long long v6; // [rsp+8h] [rbp-60h] BYREF long long v7; // [rsp+10h] [rbp-58h] BYREF long long v8; // [rsp+18h] [rbp-50h] BYREF __...
clone: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x38 MOV R14,RSI MOV RBX,RDI XORPS XMM0,XMM0 LEA R15,[RSP + 0x20] AND qword ptr [R15 + 0x10],0x0 MOVAPS xmmword ptr [R15],XMM0 MOV R12,qword ptr [RSI + 0x38] MOV RBP,qword ptr [RSI + 0x40] LEA R13,[RSP + 0x8] LAB_0010d09e: CMP R12,RBP JZ 0x0010d0d5 MO...
/* flux::parser::OperatorDecl::clone() const */ void flux::parser::OperatorDecl::clone(void) { basic_string_view *pbVar1; long *plVar2; long in_RSI; int8 *in_RDI; basic_string_view *pbVar3; long *local_60; long *local_58; long *local_50; int8 local_48; int8 uStack_40; int8 local_38; local_...
26,266
flux::parser::OperatorDecl::clone() const
kvthweatt[P]FluxLang/src/parser/ast.cpp
std::unique_ptr<Decl> OperatorDecl::clone() const { std::vector<OperatorDecl::Parameter> clonedParameters; for (const auto& param : parameters) { clonedParameters.emplace_back( param.name, static_cast<std::unique_ptr<TypeExpr>>(param.type->clone())); } return st...
O3
cpp
flux::parser::OperatorDecl::clone() const: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq %rsi, %r14 movq %rdi, %rbx xorps %xmm0, %xmm0 movaps %xmm0, 0x10(%rsp) movq $0x0, 0x20(%rsp) movq 0x38(%rsi), %r15 movq 0x40(%rsi), %rbp cmpq %rbp, %r15 je 0xf20e leaq 0x30(%rsp), %r12 leaq...
_ZNK4flux6parser12OperatorDecl5cloneEv: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov r14, rsi mov rbx, rdi xorps xmm0, xmm0 movaps [rsp+78h+var_68], xmm0 mov [rsp+78h+var_58], 0 mov r15, [rsi+38h] mov rbp, [rsi+40h] cmp r15, rbp jz short lo...
flux::parser::OperatorDecl * flux::parser::OperatorDecl::clone(flux::parser::OperatorDecl *this, long long a2) { long long v2; // r15 long long i; // rbp long long v4; // r15 long long v5; // rax long long v6; // rcx long long v7; // rdx __int128 v8; // xmm0 long long v9; // r8 long long v10; // r9 ...
clone: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV R14,RSI MOV RBX,RDI XORPS XMM0,XMM0 MOVAPS xmmword ptr [RSP + 0x10],XMM0 MOV qword ptr [RSP + 0x20],0x0 MOV R15,qword ptr [RSI + 0x38] MOV RBP,qword ptr [RSI + 0x40] CMP R15,RBP JZ 0x0010f20e LEA R12,[RSP + 0x30] LEA R13,[RSP + 0x10] LAB_0010...
/* flux::parser::OperatorDecl::clone() const */ void flux::parser::OperatorDecl::clone(void) { int1 uVar1; basic_string_view *pbVar2; int8 uVar3; int8 uVar4; int8 uVar5; int8 uVar6; int8 uVar7; long *plVar8; long *plVar9; int8 uVar10; int8 uVar11; int8 uVar12; int8 *puVar13; long in_RSI; ...
26,267
test_fetch_short
eloqsql/libmariadb/unittest/libmariadb/fetch.c
static int test_fetch_short(MYSQL *mysql) { int rc; rc= mysql_query(mysql, "DROP TABLE IF EXISTS test_bind_fetch"); check_mysql_rc(rc, mysql); rc= mysql_query(mysql, "CREATE TABLE test_bind_fetch(c1 smallint unsigned, \ c2 smallint, \ ...
O0
c
test_fetch_short: pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rdi, -0x10(%rbp) movq -0x10(%rbp), %rdi leaq 0x3866b(%rip), %rsi # 0x51332 callq 0x22e30 movl %eax, -0x14(%rbp) cmpl $0x0, -0x14(%rbp) je 0x18d21 movl -0x14(%rbp), %eax movl %eax, -0x24(%rbp) movq -0x10(%rbp), %rdi callq 0x267b0 movq %rax, -0x20(%r...
test_fetch_short: push rbp mov rbp, rsp sub rsp, 40h mov [rbp+var_10], rdi mov rdi, [rbp+var_10] lea rsi, aDropTableIfExi_3; "DROP TABLE IF EXISTS test_bind_fetch" call mysql_query mov [rbp+var_14], eax cmp [rbp+var_14], 0 jz short loc_18D21 mov eax, [rbp+var_14] mov [rbp+...
long long test_fetch_short(long long a1) { int v1; // eax int v2; // eax int v4; // [rsp+10h] [rbp-30h] int v5; // [rsp+20h] [rbp-20h] int v6; // [rsp+2Ch] [rbp-14h] int v7; // [rsp+2Ch] [rbp-14h] unsigned int v8; // [rsp+2Ch] [rbp-14h] v6 = mysql_query(a1, "DROP TABLE IF EXISTS test_bind_fetch"); i...
test_fetch_short: PUSH RBP MOV RBP,RSP SUB RSP,0x40 MOV qword ptr [RBP + -0x10],RDI MOV RDI,qword ptr [RBP + -0x10] LEA RSI,[0x151332] CALL 0x00122e30 MOV dword ptr [RBP + -0x14],EAX CMP dword ptr [RBP + -0x14],0x0 JZ 0x00118d21 MOV EAX,dword ptr [RBP + -0x14] MOV dword ptr [RBP + -0x24],EAX MOV RDI,qword ptr [RBP + -0...
int4 test_fetch_short(int8 param_1) { int iVar1; int4 uVar2; int8 uVar3; int4 local_c; iVar1 = mysql_query(param_1,"DROP TABLE IF EXISTS test_bind_fetch"); if (iVar1 == 0) { iVar1 = mysql_query(param_1, "CREATE TABLE test_bind_fetch(c1 smallint unsigned, ...
26,268
decode_pos
eloqsql/storage/myisam/mi_packrec.c
static uint decode_pos(MI_BIT_BUFF *bit_buff, MI_DECODE_TREE *decode_tree) { uint16 *pos=decode_tree->table; for (;;) { if (get_bit(bit_buff)) pos++; if (*pos & IS_CHAR) return (uint) (*pos & ~IS_CHAR); pos+= *pos; } }
O0
c
decode_pos: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x10(%rbp), %rax movq (%rax), %rax movq %rax, -0x18(%rbp) movq -0x8(%rbp), %rax cmpl $0x0, 0x4(%rax) je 0xbd7ea movq -0x8(%rbp), %rax movl (%rax), %eax movq -0x8(%rbp), %rdx movl 0x4(%rdx), %ecx addl $-0x1, %ecx m...
decode_pos_0: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov rax, [rbp+var_10] mov rax, [rax] mov [rbp+var_18], rax loc_BD7BB: mov rax, [rbp+var_8] cmp dword ptr [rax+4], 0 jz short loc_BD7EA mov rax, [rbp+var_8] mov eax, [rax] mov ...
long long decode_pos_0(int *a1, _WORD **a2) { int v2; // eax int v3; // ecx _WORD *i; // [rsp+8h] [rbp-18h] for ( i = *a2; ; i += (unsigned __int16)*i ) { if ( !a1[1] ) { fill_buffer_0((long long)a1); a1[1] = 31; if ( *a1 >= 0 ) goto LABEL_7; LABEL_6: ++i; goto ...
decode_pos: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX] MOV qword ptr [RBP + -0x18],RAX LAB_001bd7bb: MOV RAX,qword ptr [RBP + -0x8] CMP dword ptr [RAX + 0x4],0x0 JZ 0x001bd7ea MOV RAX,qword ptr [RBP + -0x8] MOV...
ushort decode_pos(uint *param_1,int8 *param_2) { uint uVar1; ushort *local_20; local_20 = (ushort *)*param_2; while( true ) { if (param_1[1] == 0) { fill_buffer(param_1); param_1[1] = 0x1f; uVar1 = *param_1 & 0x80000000; } else { uVar1 = param_1[1]; param_1[1] = uV...
26,269
ggml_view_4d
llama.cpp/ggml/src/ggml.c
struct ggml_tensor * ggml_view_4d( struct ggml_context * ctx, struct ggml_tensor * a, int64_t ne0, int64_t ne1, int64_t ne2, int64_t ne3, size_t nb1, size_t nb2, ...
O3
c
ggml_view_4d: pushq %rbx subq $0x20, %rsp movq 0x40(%rsp), %rbx movq 0x48(%rsp), %rax movq %rsp, %r10 movq %rdx, (%r10) movq %rcx, 0x8(%r10) movq %r8, 0x10(%r10) movq %r9, 0x18(%r10) movl $0x4, %edx movq %r10, %rcx movq %rax, %r8 callq 0x1be7d movaps 0x30(%rsp), %xmm0 movups %xmm0, 0x38(%rax) movq %rbx, 0x48(%rax) addq...
ggml_view_4d: push rbx sub rsp, 20h mov rbx, [rsp+28h+arg_10] mov rax, [rsp+28h+arg_18] mov r10, rsp mov [r10], rdx mov [r10+8], rcx mov [r10+10h], r8 mov [r10+18h], r9 mov edx, 4 mov rcx, r10 mov r8, rax call ggml_view_impl movaps xmm0, [rsp+28h+arg_0] movups xmmword...
long long ggml_view_4d( long long a1, unsigned int *a2, long long a3, long long a4, long long a5, long long a6, __int128 a7, long long a8, long long a9) { long long result; // rax _QWORD v10[5]; // [rsp+0h] [rbp-28h] BYREF v10[0] = a3; v1...
ggml_view_4d: PUSH RBX SUB RSP,0x20 MOV RBX,qword ptr [RSP + 0x40] MOV RAX,qword ptr [RSP + 0x48] MOV R10,RSP MOV qword ptr [R10],RDX MOV qword ptr [R10 + 0x8],RCX MOV qword ptr [R10 + 0x10],R8 MOV qword ptr [R10 + 0x18],R9 MOV EDX,0x4 MOV RCX,R10 MOV R8,RAX CALL 0x0011be7d MOVAPS XMM0,xmmword ptr [RSP + 0x30] MOVUPS x...
void ggml_view_4d(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) { long lVar1; int8 local_28; int8 local_20; int8 local_18; int8 local_10; local_28 = param_3; local_20 = param_4; ...
26,270
get_argument
eloqsql/mysys/my_default.c
static char *get_argument(const char *keyword, size_t kwlen, char *ptr, char *name, uint line) { char *end; /* Skip over "include / includedir keyword" and following whitespace */ for (ptr+= kwlen - 1; my_isspace(&my_charset_latin1, ptr[0]); ptr++) {} /* Trim tra...
O0
c
get_argument: pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq %rcx, -0x28(%rbp) movl %r8d, -0x2c(%rbp) movq -0x18(%rbp), %rax subq $0x1, %rax addq -0x20(%rbp), %rax movq %rax, -0x20(%rbp) leaq 0x265cbd(%rip), %rax # 0x2d7cf0 movq 0x40(%rax), %rax ...
get_argument: push rbp mov rbp, rsp sub rsp, 40h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov [rbp+var_28], rcx mov [rbp+var_2C], r8d mov rax, [rbp+var_18] sub rax, 1 add rax, [rbp+var_20] mov [rbp+var_20], rax loc_7202C: lea rax, my_charset_la...
unsigned __int8 * get_argument(const char *a1, long long a2, long long a3, const char *a4, int a5) { unsigned __int8 *j; // [rsp+8h] [rbp-38h] unsigned __int8 *i; // [rsp+20h] [rbp-20h] for ( i = (unsigned __int8 *)(a3 + a2 - 1); (*(_BYTE *)(*((_QWORD *)&my_charset_latin1 + 8) + *i + 1LL) & 8) != 0; ++i ) ; ...
get_argument: PUSH RBP MOV RBP,RSP SUB RSP,0x40 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 dword ptr [RBP + -0x2c],R8D MOV RAX,qword ptr [RBP + -0x18] SUB RAX,0x1 ADD RAX,qword ptr [RBP + -0x20] MOV qword ptr [RBP + -0x20],RAX LAB_...
byte * get_argument(int8 param_1,long param_2,long param_3,int8 param_4,uint param_5) { byte *pbVar1; byte *pbVar2; size_t sVar3; byte *local_40; byte *local_28; byte *local_10; local_28 = (byte *)(param_2 + -1 + param_3); while ((PTR_ctype_latin1_003d7d30[(ulong)*local_28 + 1] & 8) != 0) { loc...
26,271
Item_outer_ref::check_inner_refs_processor(void*)
eloqsql/sql/item.cc
bool Item_outer_ref::check_inner_refs_processor(void *arg) { List_iterator_fast<Item_outer_ref> *it= ((List_iterator_fast<Item_outer_ref> *) arg); Item_outer_ref *tmp_ref; while ((tmp_ref= (*it)++)) { if (tmp_ref == this) { tmp_ref->found_in_group_by= 1; break; } } (*it).rewind()...
O0
cpp
Item_outer_ref::check_inner_refs_processor(void*): pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rax movq %rax, -0x28(%rbp) movq -0x10(%rbp), %rax movq %rax, -0x18(%rbp) movq -0x18(%rbp), %rdi xorl %esi, %esi callq 0x9ce1a0 movq %rax, -0x20(%rbp) cmpq $0x0, %...
_ZN14Item_outer_ref26check_inner_refs_processorEPv: push rbp mov rbp, rsp sub rsp, 30h mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov rax, [rbp+var_8] mov [rbp+var_28], rax mov rax, [rbp+var_10] mov [rbp+var_18], rax loc_D36F00: mov rdi, [rbp+var_18] xor esi, esi call _ZN18...
long long Item_outer_ref::check_inner_refs_processor(Item_outer_ref *this, base_list_iterator *a2) { Item_outer_ref *v3; // [rsp+10h] [rbp-20h] while ( 1 ) { v3 = (Item_outer_ref *)List_iterator_fast<Item_outer_ref>::operator++(a2); if ( !v3 ) break; if ( v3 == this ) { *((_BYTE *)v3...
commit_inplace_alter_table: PUSH RBP MOV RBP,RSP 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 RAX,qword ptr [RBP + -0x18] MOV qword ptr [RAX + 0x70],0x0 XOR EAX,EAX AND AL,0x1 POP RBP RET
/* handler::commit_inplace_alter_table(TABLE*, Alter_inplace_info*, bool) */ int8 handler::commit_inplace_alter_table(TABLE *param_1,Alter_inplace_info *param_2,bool param_3) { int7 in_register_00000011; *(int8 *)(CONCAT71(in_register_00000011,param_3) + 0x70) = 0; return 0; }
26,272
SceneTitle::checkButtonStart()
GhostEscape/src/scene_title.cpp
void SceneTitle::checkButtonStart() { if (button_start_->getIsTrigger()){ auto scene = new SceneMain(); game_.safeChangeScene(scene); } }
O3
cpp
SceneTitle::checkButtonStart(): pushq %rbp movq %rsp, %rbp pushq %r14 pushq %rbx movq %rdi, %rbx movq 0xa8(%rdi), %rdi callq 0xaac6 testb %al, %al je 0xe9fe movl $0xe0, %edi callq 0x53b0 movq %rax, %r14 movl $0xe0, %edx movq %rax, %rdi xorl %esi, %esi callq 0x5230 leaq 0x673b(%rip), %rax # 0x150b0 addq $0x10, %rax...
_ZN10SceneTitle16checkButtonStartEv: push rbp mov rbp, rsp push r14 push rbx mov rbx, rdi mov rdi, [rdi+0A8h]; this call _ZN9HUDButton12getIsTriggerEv; HUDButton::getIsTrigger(void) test al, al jz loc_E9FE mov edi, 0E0h; unsigned __int64 call __Znwm; operator new(ulong) mov r1...
char SceneTitle::checkButtonStart(HUDButton **this) { HUDButton *v2; // rax long long v3; // rdi LOBYTE(v2) = HUDButton::getIsTrigger(this[21]); if ( (_BYTE)v2 ) { v3 = operator new(0xE0uLL); memset(v3, 0LL, 224LL); *(_QWORD *)v3 = &`vtable for'Object + 2; *(_QWORD *)(v3 + 16) = Game::GetIns...
checkButtonStart: PUSH RBP MOV RBP,RSP PUSH R14 PUSH RBX MOV RBX,RDI MOV RDI,qword ptr [RDI + 0xa8] CALL 0x0010aac6 TEST AL,AL JZ 0x0010e9fe MOV EDI,0xe0 CALL 0x001053b0 MOV R14,RAX MOV EDX,0xe0 MOV RDI,RAX XOR ESI,ESI CALL 0x00105230 LEA RAX,[0x1150b0] ADD RAX,0x10 MOV qword ptr [R14],RAX LAB_0010e97c: CALL 0x001066dc...
/* SceneTitle::checkButtonStart() */ void __thiscall SceneTitle::checkButtonStart(SceneTitle *this) { char cVar1; int8 *__s; int8 uVar2; cVar1 = HUDButton::getIsTrigger(*(HUDButton **)(this + 0xa8)); if (cVar1 != '\0') { __s = (int8 *)operator_new(0xe0); memset(__s,0,0xe0); *__s = &PTR__Obje...
26,273
ftparser_call_deinitializer
eloqsql/storage/myisam/ft_parser.c
void ftparser_call_deinitializer(MI_INFO *info) { uint i, j, keys= info->s->state.header.keys; free_root(&info->ft_memroot, MYF(0)); if (! info->ftparser_param) return; for (i= 0; i < keys; i++) { MI_KEYDEF *keyinfo= &info->s->keyinfo[i]; for (j=0; j < MAX_PARAM_NR; j++) { MYSQL_FTPARSER...
O3
c
ftparser_call_deinitializer: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movq %rdi, %rbx movq (%rdi), %rax movb 0x12(%rax), %r14b addq $0x90, %rdi xorl %esi, %esi callq 0x58b6b cmpq $0x0, 0xd0(%rbx) setne %al testb %r14b, %r14b setne %cl andb %al, %cl cmpb $0x1, %cl jne ...
ftparser_call_deinitializer: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx push rax mov rbx, rdi mov rax, [rdi] mov r14b, [rax+12h] add rdi, 90h xor esi, esi call free_root cmp qword ptr [rbx+0D0h], 0 setnz al test r14b, r14b setnz cl and ...
char ftparser_call_deinitializer(_QWORD *a1) { unsigned __int8 v1; // r14 int v2; // eax long long v3; // r12 long long v4; // r13 char v5; // r15 unsigned long long v6; // r14 void ( *v7)(unsigned long long); // rax bool v8; // zf long long v10; // [rsp+0h] [rbp-30h] v1 = *(_BYTE *)(*a1 + 18LL); ...
ftparser_call_deinitializer: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX MOV RBX,RDI MOV RAX,qword ptr [RDI] MOV R14B,byte ptr [RAX + 0x12] ADD RDI,0x90 XOR ESI,ESI CALL 0x00158b6b CMP qword ptr [RBX + 0xd0],0x0 SETNZ AL TEST R14B,R14B SETNZ CL AND CL,AL CMP CL,0x1 JNZ 0x00149c15 MOVZX EA...
void ftparser_call_deinitializer(long *param_1) { byte bVar1; code *pcVar2; bool bVar3; int iVar4; ulong uVar5; long lVar6; long lVar7; bool bVar8; bVar1 = *(byte *)(*param_1 + 0x12); free_root(param_1 + 0x12,0); if (bVar1 != 0 && param_1[0x1a] != 0) { uVar5 = 0; do { lVar6 = uV...
26,274
google::protobuf::TextFormat::PrintUnknownFields(google::protobuf::UnknownFieldSet const&, google::protobuf::io::ZeroCopyOutputStream*)
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/text_format.cc
bool TextFormat::PrintUnknownFields( const UnknownFieldSet& unknown_fields, io::ZeroCopyOutputStream* output) { return Printer().PrintUnknownFields(unknown_fields, output); }
O3
cpp
google::protobuf::TextFormat::PrintUnknownFields(google::protobuf::UnknownFieldSet const&, google::protobuf::io::ZeroCopyOutputStream*): pushq %r15 pushq %r14 pushq %rbx subq $0x90, %rsp movq %rsi, %rbx movq %rdi, %r14 leaq 0x8(%rsp), %r15 movq %r15, %rdi callq 0x7d7cc movq %r15, %rdi movq %r14, %rsi movq %rbx, %rdx ca...
_ZN6google8protobuf10TextFormat18PrintUnknownFieldsERKNS0_15UnknownFieldSetEPNS0_2io20ZeroCopyOutputStreamE: push r15 push r14 push rbx sub rsp, 90h mov rbx, rsi mov r14, rdi lea r15, [rsp+0A8h+var_A0] mov rdi, r15; this call _ZN6google8protobuf10TextFormat7PrinterC2Ev; google::protobuf:...
long long google::protobuf::TextFormat::PrintUnknownFields( google::protobuf::TextFormat *this, const google::protobuf::UnknownFieldSet *a2, google::protobuf::io::ZeroCopyOutputStream *a3) { unsigned int v3; // ebx _BYTE v5[24]; // [rsp+8h] [rbp-A0h] BYREF long long v6; // [rsp+20h] [rbp-...
PrintUnknownFields: PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x90 MOV RBX,RSI MOV R14,RDI LEA R15,[RSP + 0x8] MOV RDI,R15 CALL 0x0017d7cc LAB_0017fc3b: MOV RDI,R15 MOV RSI,R14 MOV RDX,RBX CALL 0x0017dafe LAB_0017fc49: MOV EBX,EAX LEA RDI,[RSP + 0x58] CALL 0x001402b0 LEA R14,[RSP + 0x28] MOV RDI,R14 CALL 0x00140312 MOV RDI,qw...
/* google::protobuf::TextFormat::PrintUnknownFields(google::protobuf::UnknownFieldSet const&, google::protobuf::io::ZeroCopyOutputStream*) */ int4 google::protobuf::TextFormat::PrintUnknownFields (UnknownFieldSet *param_1,ZeroCopyOutputStream *param_2) { int4 uVar1; Printer local_a0 [24]; long *lo...
26,275
mi_seq_search
eloqsql/storage/myisam/mi_search.c
int _mi_seq_search(MI_INFO *info, register MI_KEYDEF *keyinfo, uchar *page, uchar *key, uint key_len, uint comp_flag, uchar **ret_pos, uchar *buff, my_bool *last_key) { int UNINIT_VAR(flag); uint nod_flag,UNINIT_VAR(length),not_used[2]; uchar t_buff[HA_MAX_KEY_BUFF],*end; D...
O0
c
mi_seq_search: pushq %rbp movq %rsp, %rbp subq $0x520, %rsp # imm = 0x520 movq 0x20(%rbp), %rax movq 0x18(%rbp), %rax movq 0x10(%rbp), %rax movq %fs:0x28, %rax movq %rax, -0x8(%rbp) movq %rdi, -0x4d0(%rbp) movq %rsi, -0x4d8(%rbp) movq %rdx, -0x4e0(%rbp) movq %rcx, -0x4e8(%rbp) movl %r8d, -0x4ec(%rbp) movl %r...
_mi_seq_search: push rbp mov rbp, rsp sub rsp, 520h mov rax, [rbp+arg_10] mov rax, [rbp+arg_8] mov rax, [rbp+arg_0] mov rax, fs:28h mov [rbp+var_8], rax mov [rbp+var_4D0], rdi mov [rbp+var_4D8], rsi mov [rbp+var_4E0], rdx mov [rbp+var_4E8], rcx mov [rbp+var_4EC], r8d m...
long long mi_seq_search( long long a1, long long a2, unsigned __int16 *a3, long long a4, unsigned int a5, unsigned int a6, unsigned __int16 **a7, long long a8, bool *a9) { const char *v9; // rsi unsigned int v11; // [rsp+Ch] [rbp-514h] unsig...
_mi_seq_search: PUSH RBP MOV RBP,RSP SUB RSP,0x520 MOV RAX,qword ptr [RBP + 0x20] MOV RAX,qword ptr [RBP + 0x18] MOV RAX,qword ptr [RBP + 0x10] MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x8],RAX MOV qword ptr [RBP + -0x4d0],RDI MOV qword ptr [RBP + -0x4d8],RSI MOV qword ptr [RBP + -0x4e0],RDX MOV qword ptr [RBP...
int _mi_seq_search(long *param_1,long param_2,byte *param_3,int8 param_4,int4 param_5, int4 param_6,int8 *param_7,void *param_8,int8 param_9) { byte *pbVar1; int4 *puVar2; long in_FS_OFFSET; int local_51c; int1 local_50c [8]; uint local_504; int local_500; int local_4fc; int4 local...
26,276
my_strnxfrm_czech
eloqsql/strings/ctype-czech.c
static size_t my_strnxfrm_czech(CHARSET_INFO *cs __attribute__((unused)), uchar *dest, size_t len, uint nweights_arg __attribute__((unused)), const uchar *src, size_t srclen, uint flags) { int value; const uchar *p, * store; int pass = 0; size_t totlen = 0;...
O3
c
my_strnxfrm_czech: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x38, %rsp movq %r8, %r15 movq %rdx, %rbx movq %rsi, -0x48(%rbp) movl 0x10(%rbp), %eax movl %eax, %r11d orl $0xf, %r11d testb $0xf, %al cmovnel %eax, %r11d movslq %r9d, %rdx movl $0x1, %eax subq %r8, %rax movq %ra...
my_strnxfrm_czech: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 38h mov r15, r8 mov rbx, rdx mov [rbp+var_48], rsi mov eax, [rbp+arg_0] mov r11d, eax or r11d, 0Fh test al, 0Fh cmovnz r11d, eax movsxd rdx, r9d mov eax, 1 sub r...
unsigned long long my_strnxfrm_czech( long long a1, long long a2, unsigned long long a3, long long a4, unsigned __int8 *a5, int a6, int a7) { unsigned __int8 *v7; // r15 int v9; // r11d long long v10; // rdx int v11; // ecx unsigned __int8 *v12; // r14 ...
my_strnxfrm_czech: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x38 MOV R15,R8 MOV RBX,RDX MOV qword ptr [RBP + -0x48],RSI MOV EAX,dword ptr [RBP + 0x10] MOV R11D,EAX OR R11D,0xf TEST AL,0xf CMOVNZ R11D,EAX MOVSXD RDX,R9D MOV EAX,0x1 SUB RAX,R8 MOV qword ptr [RBP + -0x50],RAX XOR ECX,ECX L...
ulong my_strnxfrm_czech(int8 param_1,long param_2,ulong param_3,int8 param_4, byte *param_5,int param_6,uint param_7) { uint uVar1; byte *pbVar2; byte *pbVar3; byte bVar4; char cVar5; long lVar6; byte *pbVar7; byte bVar8; int iVar9; long lVar10; byte *pbVar11; byte *pbVa...
26,277
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 0x95825 jmp 0x95827 jmp 0x95829 jmp 0x9582b jmp 0x9582d movq -0x10(%rbp), %rcx movl 0x60(%rcx), %eax addl $-0x1, %eax movl %eax, 0x60(%rcx) cmpl $0x0, %eax jne 0x95984 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_95825: jmp short $+2 loc_95827: jmp short $+2 loc_95829: jmp short $+2 loc_9582B: jmp short $+2 loc_9582D: 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 0x00195825 LAB_00195825: JMP 0x00195827 LAB_00195827: JMP 0x00195829 LAB_00195829: JMP 0x0019582b LAB_0019582b: JMP 0x0019582d LAB_0019582d: 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; } ...
26,278
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));...
O3
c
unreg_request: decl 0x60(%rsi) je 0x6cca5 retq pushq %rbp movq %rsp, %rbp pushq %r14 pushq %rbx movq %rsi, %r14 movq %rdi, %rbx movl 0x80(%rsi), %eax testl %eax, %eax je 0x6ccca decl %eax movl %eax, 0x80(%r14) sete %al jmp 0x6cccc movb $0x1, %al testl %edx, %edx sete %cl xorb $0x1, %al orb %cl, %al jne 0x6cd24 movq 0x6...
unreg_request: dec dword ptr [rsi+60h] jz short loc_6CCA5 retn loc_6CCA5: push rbp mov rbp, rsp push r14 push rbx mov r14, rsi mov rbx, rdi mov eax, [rsi+80h] test eax, eax jz short loc_6CCCA dec eax mov [r14+80h], eax setz al jmp short loc_6CCCC loc_6CCCA: mov ...
void unreg_request(_QWORD *a1, long long a2, int a3) { int v4; // eax int v5; // eax bool v6; // al unsigned long long v7; // rax long long v8; // rax long long v9; // rax long long v10; // rax long long v11; // r14 if ( (*(_DWORD *)(a2 + 96))-- == 1 ) { v4 = *(_DWORD *)(a2 + 128); if ( v4...
unreg_request: DEC dword ptr [RSI + 0x60] JZ 0x0016cca5 RET LAB_0016cca5: PUSH RBP MOV RBP,RSP PUSH R14 PUSH RBX MOV R14,RSI MOV RBX,RDI MOV EAX,dword ptr [RSI + 0x80] TEST EAX,EAX JZ 0x0016ccca DEC EAX MOV dword ptr [R14 + 0x80],EAX SETZ AL JMP 0x0016cccc LAB_0016ccca: MOV AL,0x1 LAB_0016cccc: TEST EDX,EDX SETZ CL XOR...
void unreg_request(long param_1,long *param_2,int param_3) { long *plVar1; long lVar2; int iVar3; long lVar4; bool bVar5; plVar1 = param_2 + 0xc; *(int *)plVar1 = (int)*plVar1 + -1; if ((int)*plVar1 != 0) { return; } if ((int)param_2[0x10] == 0) { bVar5 = true; } else { iVar3 = ...
26,279
aimrt::logger::LoggerRef::GetLogLevel() const
aimrt_mujoco_sim/_deps/aimrt-src/src/interface/aimrt_core_plugin_interface/../aimrt_module_cpp_interface/logger/logger.h
uint32_t GetLogLevel() const { AIMRT_ASSERT(base_ptr_, "Reference is null."); return static_cast<uint32_t>(base_ptr_->get_log_level(base_ptr_->impl)); }
O3
c
aimrt::logger::LoggerRef::GetLogLevel() const: pushq %r15 pushq %r14 pushq %rbx subq $0x30, %rsp movq (%rdi), %rax testq %rax, %rax je 0xb4152 movq 0x10(%rax), %rdi addq $0x30, %rsp popq %rbx popq %r14 popq %r15 jmpq *(%rax) movl $0x28, %edi callq 0x91050 movq %rax, %rbx leaq 0x1789ec(%rip), %rsi # 0x22cb52 movq %rs...
_ZNK5aimrt6logger9LoggerRef11GetLogLevelEv: push r15 push r14 push rbx sub rsp, 30h mov rax, [rdi] test rax, rax jz short loc_B4152 mov rdi, [rax+10h] add rsp, 30h pop rbx pop r14 pop r15 jmp qword ptr [rax] loc_B4152: mov edi, 28h ; '('; thrown_size call ___cxa_a...
long long aimrt::logger::LoggerRef::GetLogLevel(aimrt::logger::LoggerRef *this) { char *exception; // rbx int v3; // r9d void *v4; // [rsp+0h] [rbp-48h] BYREF long long v5; // [rsp+8h] [rbp-40h] __int128 v6; // [rsp+10h] [rbp-38h] BYREF int v7; // [rsp+20h] [rbp-28h] BYREF if ( !*(_QWORD *)this ) { ...
GetLogLevel: PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x30 MOV RAX,qword ptr [RDI] TEST RAX,RAX JZ 0x001b4152 MOV RDI,qword ptr [RAX + 0x10] ADD RSP,0x30 POP RBX POP R14 POP R15 JMP qword ptr [RAX] LAB_001b4152: MOV EDI,0x28 CALL 0x00191050 MOV RBX,RAX LAB_001b415f: LEA RSI,[0x32cb52] MOV RDI,RSP LEA R8,[RSP + 0x20] MOV EDX,...
/* aimrt::logger::LoggerRef::GetLogLevel() const */ void __thiscall aimrt::logger::LoggerRef::GetLogLevel(LoggerRef *this) { int8 *puVar1; uint *local_48; int8 local_40; uint local_38; int4 uStack_34; int4 uStack_30; int4 uStack_2c; int1 local_28 [16]; puVar1 = *(int8 **)this; if (puVar1 != (i...
26,280
pow5mult
eloqsql/strings/dtoa.c
static Bigint *pow5mult(Bigint *b, int k, Stack_alloc *alloc) { Bigint *b1, *p5, *p51=NULL; int i; static int p05[3]= { 5, 25, 125 }; my_bool overflow= FALSE; if ((i= k & 3)) b= multadd(b, p05[i-1], 0, alloc); if (!(k>>= 2)) return b; p5= p5_a; for (;;) { if (k & 1) { b1= mult(...
O0
c
pow5mult: pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rdi, -0x10(%rbp) movl %esi, -0x14(%rbp) movq %rdx, -0x20(%rbp) movq $0x0, -0x38(%rbp) movb $0x0, -0x3d(%rbp) movl -0x14(%rbp), %eax andl $0x3, %eax movl %eax, -0x3c(%rbp) cmpl $0x0, %eax je 0x750a3 movq -0x10(%rbp), %rdi movl -0x3c(%rbp), %eax subl $0x1, %eax ...
pow5mult: push rbp mov rbp, rsp sub rsp, 40h mov [rbp+var_10], rdi mov [rbp+var_14], esi mov [rbp+var_20], rdx mov [rbp+var_38], 0 mov [rbp+var_3D], 0 mov eax, [rbp+var_14] and eax, 3 mov [rbp+var_3C], eax cmp eax, 0 jz short loc_750A3 mov rdi, [rbp+var_10] mov ...
long long pow5mult(long long a1, int a2, long long a3) { char v4; // [rsp+3h] [rbp-3Dh] _BYTE v5[12]; // [rsp+4h] [rbp-3Ch] _UNKNOWN **v6; // [rsp+10h] [rbp-30h] long long v7; // [rsp+18h] [rbp-28h] int v9; // [rsp+2Ch] [rbp-14h] long long v10; // [rsp+30h] [rbp-10h] v10 = a1; *(_DWORD *)&v5[8] = 0; ...
pow5mult: PUSH RBP MOV RBP,RSP SUB RSP,0x40 MOV qword ptr [RBP + -0x10],RDI MOV dword ptr [RBP + -0x14],ESI MOV qword ptr [RBP + -0x20],RDX MOV qword ptr [RBP + -0x38],0x0 MOV byte ptr [RBP + -0x3d],0x0 MOV EAX,dword ptr [RBP + -0x14] AND EAX,0x3 MOV dword ptr [RBP + -0x3c],EAX CMP EAX,0x0 JZ 0x001750a3 MOV RDI,qword p...
int8 pow5mult(int8 param_1,uint param_2,int8 param_3) { bool bVar1; int8 uVar2; int1 *local_40; int1 *local_38; uint local_1c; int8 local_18; int8 local_10; local_40 = (int1 *)0x0; bVar1 = false; local_18 = param_1; if ((param_2 & 3) != 0) { local_18 = multadd(param_1,*(int4 *)(pow5mult_p...
26,281
js_bound_function_finalizer
bluesky950520[P]quickjs/quickjs.c
static void js_bound_function_finalizer(JSRuntime *rt, JSValue val) { JSObject *p = JS_VALUE_GET_OBJ(val); JSBoundFunction *bf = p->u.bound_function; int i; JS_FreeValueRT(rt, bf->func_obj); JS_FreeValueRT(rt, bf->this_val); for(i = 0; i < bf->argc; i++) { JS_FreeValueRT(rt, bf->argv[i]...
O1
c
js_bound_function_finalizer: pushq %r15 pushq %r14 pushq %r12 pushq %rbx pushq %rax movq %rdi, %r14 movq 0x30(%rsi), %rbx movq (%rbx), %rsi movq 0x8(%rbx), %rdx callq 0x1d8c6 movq 0x10(%rbx), %rsi movq 0x18(%rbx), %rdx movq %r14, %rdi callq 0x1d8c6 cmpl $0x0, 0x20(%rbx) jle 0x3a9e8 leaq 0x30(%rbx), %r15 xorl %r12d, %r1...
js_bound_function_finalizer: push r15 push r14 push r12 push rbx push rax mov r14, rdi mov rbx, [rsi+30h] mov rsi, [rbx] mov rdx, [rbx+8] call JS_FreeValueRT mov rsi, [rbx+10h] mov rdx, [rbx+18h] mov rdi, r14 call JS_FreeValueRT cmp dword ptr [rbx+20h], 0 jle sho...
long long js_bound_function_finalizer(long long a1, long long a2) { long long v2; // rbx long long *v3; // r15 long long v4; // r12 long long v5; // rax long long ( *v6)(_QWORD, long long); // rcx v2 = *(_QWORD *)(a2 + 48); JS_FreeValueRT(a1, *(_DWORD **)v2, *(_QWORD *)(v2 + 8)); JS_FreeValueRT(a1, *(...
26,282
js_bound_function_finalizer
bluesky950520[P]quickjs/quickjs.c
static void js_bound_function_finalizer(JSRuntime *rt, JSValue val) { JSObject *p = JS_VALUE_GET_OBJ(val); JSBoundFunction *bf = p->u.bound_function; int i; JS_FreeValueRT(rt, bf->func_obj); JS_FreeValueRT(rt, bf->this_val); for(i = 0; i < bf->argc; i++) { JS_FreeValueRT(rt, bf->argv[i]...
O2
c
js_bound_function_finalizer: pushq %r15 pushq %r14 pushq %r12 pushq %rbx pushq %rax movq %rdi, %r14 movq 0x30(%rsi), %rbx movq (%rbx), %rsi movq 0x8(%rbx), %rdx callq 0x18031 movq 0x10(%rbx), %rsi movq 0x18(%rbx), %rdx movq %r14, %rdi callq 0x18031 leaq 0x30(%rbx), %r15 xorl %r12d, %r12d movslq 0x20(%rbx), %rax cmpq %r...
js_bound_function_finalizer: push r15 push r14 push r12 push rbx push rax mov r14, rdi mov rbx, [rsi+30h] mov rsi, [rbx] mov rdx, [rbx+8] call JS_FreeValueRT mov rsi, [rbx+10h] mov rdx, [rbx+18h] mov rdi, r14 call JS_FreeValueRT lea r15, [rbx+30h] xor r12d, r12d ...
long long js_bound_function_finalizer(long long a1, long long a2) { long long v2; // rbx _QWORD *v3; // r15 long long i; // r12 v2 = *(_QWORD *)(a2 + 48); JS_FreeValueRT(a1, *(unsigned int **)v2, *(_QWORD *)(v2 + 8)); JS_FreeValueRT(a1, *(unsigned int **)(v2 + 16), *(_QWORD *)(v2 + 24)); v3 = (_QWORD *)...
js_bound_function_finalizer: PUSH R15 PUSH R14 PUSH R12 PUSH RBX PUSH RAX MOV R14,RDI MOV RBX,qword ptr [RSI + 0x30] MOV RSI,qword ptr [RBX] MOV RDX,qword ptr [RBX + 0x8] CALL 0x00118031 MOV RSI,qword ptr [RBX + 0x10] MOV RDX,qword ptr [RBX + 0x18] MOV RDI,R14 CALL 0x00118031 LEA R15,[RBX + 0x30] XOR R12D,R12D LAB_0013...
void js_bound_function_finalizer(int8 param_1,long param_2) { int8 *puVar1; long lVar2; int8 *puVar3; puVar1 = *(int8 **)(param_2 + 0x30); JS_FreeValueRT(param_1,*puVar1,puVar1[1]); JS_FreeValueRT(param_1,puVar1[2],puVar1[3]); puVar3 = puVar1 + 6; for (lVar2 = 0; lVar2 < *(int *)(puVar1 + 4); lVar2...
26,283
write_full_pages
eloqsql/storage/maria/ma_blockrec.c
static my_bool write_full_pages(MARIA_HA *info, LSN lsn, MARIA_BITMAP_BLOCK *block, uchar *data, ulong length) { pgcache_page_no_t page; MARIA_SHARE *share= info->s; uint block_size= share->block_size; uint data_size...
O0
c
write_full_pages: pushq %rbp movq %rsp, %rbp subq $0xc0, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq %rcx, -0x28(%rbp) movq %r8, -0x30(%rbp) movq -0x10(%rbp), %rax movq (%rax), %rax movq %rax, -0x40(%rbp) movq -0x40(%rbp), %rax movl 0x7bc(%rax), %eax movl %eax, -0x44(%rbp) movq -0x40(...
write_full_pages: push rbp mov rbp, rsp sub rsp, 0C0h 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 rax, [rbp+var_10] mov rax, [rax] mov [rbp+var_40], rax mov rax, [rbp+var_40] mov eax, [rax+7BCh] mov ...
char write_full_pages(long long a1, long long a2, long long a3, long long a4, long long a5, int a6) { unsigned int v6; // eax long long v7; // rcx unsigned int v9; // [rsp+40h] [rbp-80h] unsigned long long v10; // [rsp+58h] [rbp-68h] int v11; // [rsp+68h] [rbp-58h] unsigned int v12; // [rsp+6Ch] [rbp-54h] ...
write_full_pages: PUSH RBP MOV RBP,RSP SUB RSP,0xc0 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 RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX] MOV qword ptr [RBP + -0x40],RAX MOV RAX,qword ptr [RB...
int1 write_full_pages(long *param_1,int8 param_2,long *param_3,void *param_4,ulong param_5) { uint uVar1; long lVar2; int1 *puVar3; char cVar4; uint uVar5; uint uVar6; long *plVar7; ulong uVar8; bool bVar9; ulong local_88; ulong local_70; int local_60; uint local_5c; long local_40; ulong...
26,284
minja::Value::operator>(minja::Value const&) const
monkey531[P]llama/common/minja.hpp
bool operator>(const Value & other) const { if (is_null()) throw std::runtime_error("Undefined value or reference"); if (is_number() && other.is_number()) return get<double>() > other.get<double>(); if (is_string() && other.is_string()) return get<std::string>() > other.get<std::string>(); throw s...
O2
cpp
minja::Value::operator>(minja::Value const&) const: pushq %rbp pushq %r15 pushq %r14 pushq %rbx subq $0xa8, %rsp movq %rsi, %r14 movq %rdi, %r15 callq 0x63fea testb %al, %al jne 0x714af movb 0x40(%r15), %al leal -0x5(%rax), %ecx cmpb $0x2, %cl ja 0x7144b movb 0x40(%r14), %al addb $-0x5, %al cmpb $0x2, %al ja 0x714df mo...
_ZNK5minja5ValuegtERKS0_: push rbp push r15 push r14 push rbx sub rsp, 0A8h mov r14, rsi mov r15, rdi call _ZNK5minja5Value7is_nullEv; minja::Value::is_null(void) test al, al jnz loc_714AF mov al, [r15+40h] lea ecx, [rax-5] cmp cl, 2 ja short loc_7144B mov al, [r14...
long long minja::Value::operator>(minja::Value *a1, minja::Value *a2) { unsigned int v2; // ebx char v3; // al std::runtime_error *exception; // rbx void *v6; // rbx _BYTE v7[32]; // [rsp+8h] [rbp-C0h] BYREF _QWORD v8[4]; // [rsp+28h] [rbp-A0h] BYREF _QWORD v9[4]; // [rsp+48h] [rbp-80h] BYREF _BYTE v10...
operator>: PUSH RBP PUSH R15 PUSH R14 PUSH RBX SUB RSP,0xa8 MOV R14,RSI MOV R15,RDI CALL 0x00163fea TEST AL,AL JNZ 0x001714af MOV AL,byte ptr [R15 + 0x40] LEA ECX,[RAX + -0x5] CMP CL,0x2 JA 0x0017144b MOV AL,byte ptr [R14 + 0x40] ADD AL,0xfb CMP AL,0x2 JA 0x001714df MOV RDI,R15 CALL 0x0016391c MOVSD qword ptr [RSP],XMM...
/* minja::Value::TEMPNAMEPLACEHOLDERVALUE(minja::Value const&) const */ ulong __thiscall minja::Value::operator>(Value *this,Value *param_1) { char cVar1; bool bVar2; int7 extraout_var; runtime_error *prVar3; int8 unaff_RBX; ulong uVar4; double dVar5; double dVar6; string local_c0 [32]; string lo...
26,285
minja::Value::operator>(minja::Value const&) const
monkey531[P]llama/common/minja.hpp
bool operator>(const Value & other) const { if (is_null()) throw std::runtime_error("Undefined value or reference"); if (is_number() && other.is_number()) return get<double>() > other.get<double>(); if (is_string() && other.is_string()) return get<std::string>() > other.get<std::string>(); throw s...
O3
cpp
minja::Value::operator>(minja::Value const&) const: pushq %rbp pushq %r15 pushq %r14 pushq %rbx subq $0xa8, %rsp movq %rsi, %r14 movq %rdi, %r15 cmpq $0x0, 0x20(%rdi) movb 0x40(%rdi), %al jne 0x9804f cmpq $0x0, 0x10(%r15) jne 0x9804f testb %al, %al jne 0x9804f cmpq $0x0, 0x30(%r15) je 0x98153 leal -0x5(%rax), %ecx cmpb...
_ZNK5minja5ValuegtERKS0_: push rbp push r15 push r14 push rbx sub rsp, 0A8h mov r14, rsi mov r15, rdi cmp qword ptr [rdi+20h], 0 mov al, [rdi+40h] jnz short loc_9804F cmp qword ptr [r15+10h], 0 jnz short loc_9804F test al, al jnz short loc_9804F cmp qword ptr [r15+...
long long minja::Value::operator>(long long a1, long long a2) { unsigned int v2; // ebp char v3; // al unsigned long long v4; // r14 __int128 *v5; // rbx unsigned long long v6; // r15 unsigned long long v7; // rdx long long v8; // rax long long v9; // r14 std::runtime_error *exception; // rbx void ...
operator>: PUSH RBP PUSH R15 PUSH R14 PUSH RBX SUB RSP,0xa8 MOV R14,RSI MOV R15,RDI CMP qword ptr [RDI + 0x20],0x0 MOV AL,byte ptr [RDI + 0x40] JNZ 0x0019804f CMP qword ptr [R15 + 0x10],0x0 JNZ 0x0019804f TEST AL,AL JNZ 0x0019804f CMP qword ptr [R15 + 0x30],0x0 JZ 0x00198153 LAB_0019804f: LEA ECX,[RAX + -0x5] CMP CL,0x...
/* minja::Value::TEMPNAMEPLACEHOLDERVALUE(minja::Value const&) const */ ulong __thiscall minja::Value::operator>(Value *this,Value *param_1) { Value VVar1; double dVar2; uint uVar3; ulong uVar4; runtime_error *prVar5; long *plVar6; long *plVar7; int8 unaff_RBP; int7 uVar8; long *local_c8; ulong...
26,286
common_arg::get_value_from_env(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>&)
llama.cpp/common/arg.cpp
bool common_arg::get_value_from_env(std::string & output) { if (env == nullptr) return false; char * value = std::getenv(env); if (value) { output = value; return true; } return false; }
O3
cpp
common_arg::get_value_from_env(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>&): movq 0x88(%rdi), %rdi testq %rdi, %rdi je 0x2eb22 pushq %r15 pushq %r14 pushq %rbx movq %rsi, %rbx callq 0x21da0 testq %rax, %rax je 0x2eb25 movq %rax, %r14 movq 0x8(%rbx), %r15 movq %rax, %rdi callq 0x216d0...
_ZN10common_arg18get_value_from_envERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: mov rdi, [rdi+88h] test rdi, rdi jz short loc_2EB22 push r15 push r14 push rbx mov rbx, rsi call _getenv test rax, rax jz short loc_2EB25 mov r14, rax mov r15, [rbx+8] mov rdi, rax ...
char common_arg::get_value_from_env(long long a1, long long a2) { long long v2; // rax long long v3; // r14 long long v4; // r15 long long v5; // rax if ( !*(_QWORD *)(a1 + 136) ) return 0; v2 = getenv(); if ( !v2 ) return 0; v3 = v2; v4 = *(_QWORD *)(a2 + 8); v5 = strlen(v2); std::strin...
get_value_from_env: MOV RDI,qword ptr [RDI + 0x88] TEST RDI,RDI JZ 0x0012eb22 PUSH R15 PUSH R14 PUSH RBX MOV RBX,RSI CALL 0x00121da0 TEST RAX,RAX JZ 0x0012eb25 MOV R14,RAX MOV R15,qword ptr [RBX + 0x8] MOV RDI,RAX CALL 0x001216d0 MOV RDI,RBX XOR ESI,ESI MOV RDX,R15 MOV RCX,R14 MOV R8,RAX CALL 0x001218d0 MOV AL,0x1 JMP ...
/* common_arg::get_value_from_env(std::__cxx11::string&) */ bool __thiscall common_arg::get_value_from_env(common_arg *this,string *param_1) { char *pcVar1; char *__s; if (*(char **)(this + 0x88) == (char *)0x0) { return false; } __s = getenv(*(char **)(this + 0x88)); if (__s != (char *)0x0) { ...
26,287
my_b_write
eloqsql/include/my_sys.h
static inline int my_b_write(IO_CACHE *info, const uchar *Buffer, size_t Count) { MEM_CHECK_DEFINED(Buffer, Count); if (info->write_pos + Count <= info->write_end) { if (Count) { memcpy(info->write_pos, Buffer, Count); info->write_pos+= Count; } return 0; } return _my_b_write(info,...
O0
c
my_b_write: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq -0x10(%rbp), %rax movq 0x40(%rax), %rax addq -0x20(%rbp), %rax movq -0x10(%rbp), %rcx cmpq 0x48(%rcx), %rax ja 0x7deff cmpq $0x0, -0x20(%rbp) je 0x7def6 movq -0x10(%rbp), %rax movq 0x40(%rax...
my_b_write_0: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov rax, [rbp+var_10] mov rax, [rax+40h] add rax, [rbp+var_20] mov rcx, [rbp+var_10] cmp rax, [rcx+48h] ja short loc_7DEFF cmp [rbp+var_20], 0 jz sh...
long long my_b_write_0(long long a1, long long a2, long long a3) { if ( (unsigned long long)(a3 + *(_QWORD *)(a1 + 64)) > *(_QWORD *)(a1 + 72) ) { return (unsigned int)my_b_write(a1, a2, a3); } else { if ( a3 ) { memcpy(*(_QWORD *)(a1 + 64), a2, a3); *(_QWORD *)(a1 + 64) += a3; } ...
my_b_write: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV qword ptr [RBP + -0x20],RDX MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX + 0x40] ADD RAX,qword ptr [RBP + -0x20] MOV RCX,qword ptr [RBP + -0x10] CMP RAX,qword ptr [RCX + 0x48] JA 0x0017deff CMP qw...
int4 my_b_write(long param_1,void *param_2,size_t param_3) { int4 local_c; if (*(ulong *)(param_1 + 0x48) < *(long *)(param_1 + 0x40) + param_3) { local_c = _my_b_write(param_1,param_2,param_3); } else { if (param_3 != 0) { memcpy(*(void **)(param_1 + 0x40),param_2,param_3); *(size_t *)...
26,288
ma_trnman_end_trans_hook
eloqsql/storage/maria/ma_state.c
my_bool _ma_trnman_end_trans_hook(TRN *trn, my_bool commit, my_bool active_transactions) { my_bool error= 0; MARIA_USED_TABLES *tables, *next; DBUG_ENTER("_ma_trnman_end_trans_hook"); DBUG_PRINT("enter", ("trn: %p used_tables: %p", trn, trn->used_tables)); for (tables= (MAR...
O3
c
ma_trnman_end_trans_hook: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x18, %rsp movl %edx, -0x30(%rbp) leaq 0x58(%rdi), %rax movq %rax, -0x40(%rbp) movq %rdi, -0x38(%rbp) movq 0x58(%rdi), %r15 testq %r15, %r15 je 0x3896c movl %esi, %r14d movl $0x0, -0x2c(%rbp) movq %r15, %r1...
_ma_trnman_end_trans_hook: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 18h mov [rbp+var_30], edx lea rax, [rdi+58h] mov [rbp+var_40], rax mov [rbp+var_38], rdi mov r15, [rdi+58h] test r15, r15 jz loc_3896C mov r14d, esi mov [r...
long long ma_trnman_end_trans_hook(long long a1, char a2, char a3) { _QWORD *v3; // r15 _QWORD *v4; // r12 long long v5; // rbx long long v6; // rax long long v7; // rdi char v8; // al long long v9; // rax long long v10; // rdi long long v11; // rax __int128 v12; // xmm0 __int128 v13; // xmm1 l...
_ma_trnman_end_trans_hook: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x18 MOV dword ptr [RBP + -0x30],EDX LEA RAX,[RDI + 0x58] MOV qword ptr [RBP + -0x40],RAX MOV qword ptr [RBP + -0x38],RDI MOV R15,qword ptr [RDI + 0x58] TEST R15,R15 JZ 0x0013896c MOV R14D,ESI MOV dword ptr [RBP + -0x2c...
int4 _ma_trnman_end_trans_hook(long param_1,char param_2,char param_3) { pthread_mutex_t *__mutex; int *piVar1; long *plVar2; long lVar3; long lVar4; int4 uVar5; int4 uVar6; int4 uVar7; int4 uVar8; long lVar9; long lVar10; long lVar11; char cVar12; int iVar13; long *plVar14; int8 uVar1...
26,289
google::protobuf::StringValue::SharedCtor(google::protobuf::Arena*, bool)
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/wrappers.pb.cc
inline void StringValue::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_.value_){} , /*decltype(_impl_._cached_size_)*/{} }; _impl_.value_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING _impl_.val...
O0
cpp
google::protobuf::StringValue::SharedCtor(google::protobuf::Arena*, bool): subq $0x38, %rsp movb %dl, %al movq %rdi, 0x30(%rsp) movq %rsi, 0x28(%rsp) andb $0x1, %al movb %al, 0x27(%rsp) movq 0x30(%rsp), %rdi movq %rdi, 0x18(%rsp) addq $0x10, %rdi movq %rdi, 0x8(%rsp) xorl %esi, %esi movl $0x8, %edx callq 0x8db70 movq 0...
_ZN6google8protobuf11StringValue10SharedCtorEPNS0_5ArenaEb: sub rsp, 38h mov al, dl mov [rsp+38h+var_8], rdi mov [rsp+38h+var_10], rsi and al, 1 mov [rsp+38h+var_11], al mov rdi, [rsp+38h+var_8] mov [rsp+38h+var_20], rdi add rdi, 10h mov [rsp+38h+var_30], rdi xor esi, esi mov...
google::protobuf::internal::ArenaStringPtr * google::protobuf::StringValue::SharedCtor( google::protobuf::StringValue *this, google::protobuf::Arena *a2) { memset((char *)this + 16, 0LL, 8LL); memset((char *)this + 24, 0LL, 4LL); google::protobuf::internal::CachedSize::CachedSize((google::protobuf...
operator*: MOV qword ptr [RSP + -0x8],RDI MOV RAX,qword ptr [RSP + -0x8] MOV RAX,qword ptr [RAX] RET
/* __gnu_cxx::__normal_iterator<aimrt_mujoco_sim::mujoco_sim_module::publisher::TouchSensorPublisherBase::Options::State*, std::vector<aimrt_mujoco_sim::mujoco_sim_module::publisher::TouchSensorPublisherBase::Options::State, std::allocator<aimrt_mujoco_sim::mujoco_sim_module::publisher::TouchSensorPublisherBase:...
26,290
my_utf8mb3_uni_no_range
eloqsql/strings/ctype-utf8.c
static int my_utf8mb3_uni_no_range(CHARSET_INFO *cs __attribute__((unused)), my_wc_t * pwc, const uchar *s) { uchar c; c= s[0]; if (c < 0x80) { *pwc = c; return 1; } if (c < 0xc2) return MY_CS_ILSEQ; if (c < 0xe0) { if (!((s[1] ^ 0x80) < 0x40)) ...
O3
c
my_utf8mb3_uni_no_range: pushq %rbp movq %rsp, %rbp movzbl (%rsi), %ecx testb %cl, %cl js 0xcc301 movl $0x1, %eax movq %rcx, (%rdi) jmp 0xcc308 xorl %eax, %eax cmpb $-0x3e, %cl jae 0xcc30a popq %rbp retq cmpb $-0x21, %cl ja 0xcc32d movzbl 0x1(%rsi), %edx xorl $0x80, %edx cmpb $0x3f, %dl ja 0xcc308 andl $0x1f, %ecx shll...
my_utf8mb3_uni_no_range: push rbp mov rbp, rsp movzx ecx, byte ptr [rsi] test cl, cl js short loc_CC301 mov eax, 1 loc_CC2FC: mov [rdi], rcx jmp short loc_CC308 loc_CC301: xor eax, eax cmp cl, 0C2h jnb short loc_CC30A loc_CC308: pop rbp retn loc_CC30A: cmp cl, 0DFh ja ...
long long my_utf8mb3_uni_no_range(unsigned long long *a1, unsigned __int8 *a2) { unsigned long long v2; // rcx long long result; // rax char v4; // dl char v5; // si v2 = *a2; if ( (v2 & 0x80u) == 0LL ) { result = 1LL; LABEL_3: *a1 = v2; return result; } result = 0LL; if ( (unsigned __...
my_utf8mb3_uni_no_range: PUSH RBP MOV RBP,RSP MOVZX ECX,byte ptr [RSI] TEST CL,CL JS 0x001cc301 MOV EAX,0x1 LAB_001cc2fc: MOV qword ptr [RDI],RCX JMP 0x001cc308 LAB_001cc301: XOR EAX,EAX CMP CL,0xc2 JNC 0x001cc30a LAB_001cc308: POP RBP RET LAB_001cc30a: CMP CL,0xdf JA 0x001cc32d MOVZX EDX,byte ptr [RSI + 0x1] XOR EDX,0...
int8 my_utf8mb3_uni_no_range(ulong *param_1,byte *param_2) { byte bVar1; byte bVar2; int8 uVar3; ulong uVar4; bVar1 = *param_2; uVar4 = (ulong)bVar1; if ((char)bVar1 < '\0') { if (bVar1 < 0xc2) { return 0; } if (bVar1 < 0xe0) { if (0x3f < (byte)(param_2[1] ^ 0x80)) { r...
26,291
TinyAutoEncoder::map_by_name(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, ggml_tensor*, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<...
7CodeWizard[P]stablediffusion/tae.hpp
void map_by_name(std::map<std::string, ggml_tensor*>& tensors) { decoder.map_by_name(tensors, "decoder.layers."); encoder.map_by_name(tensors, "encoder.layers."); }
O0
cpp
TinyAutoEncoder::map_by_name(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, ggml_tensor*, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<...
_ZN15TinyAutoEncoder11map_by_nameERSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEP11ggml_tensorSt4lessIS6_ESaISt4pairIKS6_S8_EEE: sub rsp, 0A8h mov [rsp+0A8h+var_8], rdi mov [rsp+0A8h+var_10], rsi mov rax, [rsp+0A8h+var_8] mov [rsp+0A8h+var_90], rax add rax, 330h mov [rsp+0A8h+v...
long long TinyAutoEncoder::map_by_name(long long a1, long long a2) { long long v3; // [rsp+8h] [rbp-A0h] char v4; // [rsp+3Fh] [rbp-69h] BYREF _BYTE v5[55]; // [rsp+40h] [rbp-68h] BYREF char v6; // [rsp+77h] [rbp-31h] BYREF _BYTE v7[32]; // [rsp+78h] [rbp-30h] BYREF long long v8; // [rsp+98h] [rbp-10h] l...
map_by_name: SUB RSP,0xa8 MOV qword ptr [RSP + 0xa0],RDI MOV qword ptr [RSP + 0x98],RSI MOV RAX,qword ptr [RSP + 0xa0] MOV qword ptr [RSP + 0x18],RAX ADD RAX,0x330 MOV qword ptr [RSP + 0x20],RAX MOV RAX,qword ptr [RSP + 0x98] MOV qword ptr [RSP + 0x28],RAX LEA RDI,[RSP + 0x77] MOV qword ptr [RSP + 0x30],RDI CALL 0x0010...
/* TinyAutoEncoder::map_by_name(std::map<std::__cxx11::string, ggml_tensor*, std::less<std::__cxx11::string >, std::allocator<std::pair<std::__cxx11::string const, ggml_tensor*> > >&) */ void __thiscall TinyAutoEncoder::map_by_name(TinyAutoEncoder *this,map *param_1) { map *pmVar1; allocator local_69; st...
26,292
TinyAutoEncoder::map_by_name(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, ggml_tensor*, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<...
7CodeWizard[P]stablediffusion/tae.hpp
void map_by_name(std::map<std::string, ggml_tensor*>& tensors) { decoder.map_by_name(tensors, "decoder.layers."); encoder.map_by_name(tensors, "encoder.layers."); }
O1
cpp
TinyAutoEncoder::map_by_name(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, ggml_tensor*, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<...
_ZN15TinyAutoEncoder11map_by_nameERSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEP11ggml_tensorSt4lessIS6_ESaISt4pairIKS6_S8_EEE: push r15; __int64 push r14; int push r12; int push rbx; int sub rsp, 48h mov rbx, rsi mov r14, rdi lea r12, [rsp+68h+var_30] mov [r12-10h], r12 l...
26,293
TinyAutoEncoder::map_by_name(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, ggml_tensor*, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<...
7CodeWizard[P]stablediffusion/tae.hpp
void map_by_name(std::map<std::string, ggml_tensor*>& tensors) { decoder.map_by_name(tensors, "decoder.layers."); encoder.map_by_name(tensors, "encoder.layers."); }
O3
cpp
TinyAutoEncoder::map_by_name(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, ggml_tensor*, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<...
_ZN15TinyAutoEncoder11map_by_nameERSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEP11ggml_tensorSt4lessIS6_ESaISt4pairIKS6_S8_EEE: push r15; __int64 push r14; int push r12; int push rbx; int sub rsp, 48h mov rbx, rsi mov r14, rdi lea r12, [rsp+68h+var_30] mov [r12-10h], r12 l...
26,294
bchange
eloqsql/strings/bchange.c
void bchange(register uchar *dst, size_t old_length, register const uchar *src, size_t new_length, size_t tot_length) { size_t rest=tot_length-old_length; if (old_length < new_length) bmove_upp(dst+rest+new_length,dst+tot_length,rest); else bmove(dst+new_length,dst+old_length,rest); memcpy(dst,src...
O0
c
bchange: 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 %r8, -0x28(%rbp) movq -0x28(%rbp), %rax subq -0x10(%rbp), %rax movq %rax, -0x30(%rbp) movq -0x10(%rbp), %rax cmpq -0x20(%rbp), %rax jae 0x69791 movq -0x8(%rbp), %rdi addq ...
bchange: 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 [rbp+var_28], r8 mov rax, [rbp+var_28] sub rax, [rbp+var_10] mov [rbp+var_30], rax mov rax, [rbp+var_10] cmp rax, [rbp+var_20] jnb ...
long long bchange(long long a1, unsigned long long a2, long long a3, unsigned long long a4, long long a5) { long long v6; // [rsp+0h] [rbp-30h] v6 = a5 - a2; if ( a2 >= a4 ) memmove(a4 + a1, a2 + a1, v6); else bmove_upp(a4 + v6 + a1, a5 + a1, v6); return memcpy(a1, a3, a4); }
bchange: 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 qword ptr [RBP + -0x28],R8 MOV RAX,qword ptr [RBP + -0x28] SUB RAX,qword ptr [RBP + -0x10] MOV qword ptr [RBP + -0x30],RAX MOV RAX,qword ptr [RBP ...
void bchange(void *param_1,ulong param_2,void *param_3,ulong param_4,long param_5) { size_t __n; __n = param_5 - param_2; if (param_2 < param_4) { bmove_upp((long)param_1 + param_4 + __n,(long)param_1 + param_5,__n); } else { memmove((void *)((long)param_1 + param_4),(void *)((long)param_1 + para...
26,295
ft_parse_internal
eloqsql/storage/myisam/ft_parser.c
static int ft_parse_internal(MYSQL_FTPARSER_PARAM *param, const char *doc_arg, int doc_len) { uchar *doc= (uchar*) doc_arg; uchar *end= doc + doc_len; MY_FT_PARSER_PARAM *ft_param=param->mysql_ftparam; TREE *wtree= ft_param->wtree; FT_WORD w; DBUG_ENTER("ft_parse_internal"); ...
O3
c
ft_parse_internal: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq %rdi, %rbx leaq -0x48(%rbp), %r14 movq %rsi, (%r14) movslq %edx, %r15 addq %rsi, %r15 movq 0x18(%rdi), %rax movq (%rax), %r12 leaq -0x40(%rbp), %r13 movq 0x230(%r12), %rdi movq %r14, %rsi movq %r15...
ft_parse_internal: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 28h mov rbx, rdi lea r14, [rbp+var_48] mov [r14], rsi movsxd r15, edx add r15, rsi mov rax, [rdi+18h] mov r12, [rax] lea r13, [rbp+var_40] loc_7370D: mov rdi, [r12+23...
long long ft_parse_internal(long long a1, _BYTE *a2, int a3) { unsigned long long v3; // r15 long long v4; // r12 _BYTE *v6; // [rsp+8h] [rbp-48h] BYREF long long v7; // [rsp+10h] [rbp-40h] BYREF unsigned int v8; // [rsp+20h] [rbp-30h] v6 = a2; v3 = (unsigned long long)&a2[a3]; v4 = **(_QWORD **)(a1 +...
ft_parse_internal: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x28 MOV RBX,RDI LEA R14,[RBP + -0x48] MOV qword ptr [R14],RSI MOVSXD R15,EDX ADD R15,RSI MOV RAX,qword ptr [RDI + 0x18] MOV R12,qword ptr [RAX] LEA R13,[RBP + -0x40] LAB_0017370d: MOV RDI,qword ptr [R12 + 0x230] MOV RSI,R14 MO...
int8 ft_parse_internal(long param_1,long param_2,int param_3) { long lVar1; char cVar2; int iVar3; long local_50; int8 local_48 [2]; int4 local_38; lVar1 = **(long **)(param_1 + 0x18); local_50 = param_2; do { cVar2 = ft_simple_get_word(*(int8 *)(lVar1 + 0x230),&local_50,param_3 + param_2,loc...
26,296
google::protobuf::compiler::objectivec::RepeatedPrimitiveFieldGenerator::RepeatedPrimitiveFieldGenerator(google::protobuf::FieldDescriptor const*)
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc
RepeatedPrimitiveFieldGenerator::RepeatedPrimitiveFieldGenerator( const FieldDescriptor* descriptor) : RepeatedFieldGenerator(descriptor) { SetPrimitiveVariables(descriptor, &variables_); std::string base_name = PrimitiveArrayTypeName(descriptor); if (base_name.length()) { variables_["array_storage_t...
O0
cpp
google::protobuf::compiler::objectivec::RepeatedPrimitiveFieldGenerator::RepeatedPrimitiveFieldGenerator(google::protobuf::FieldDescriptor const*): subq $0x1e8, %rsp # imm = 0x1E8 movq %rdi, 0x1e0(%rsp) movq %rsi, 0x1d8(%rsp) movq 0x1e0(%rsp), %rdi movq %rdi, 0x78(%rsp) movq 0x1d8(%rsp), %rsi callq 0x1d3170 ...
_ZN6google8protobuf8compiler10objectivec31RepeatedPrimitiveFieldGeneratorC2EPKNS0_15FieldDescriptorE: sub rsp, 1E8h mov [rsp+1E8h+var_8], rdi mov [rsp+1E8h+var_10], rsi mov rdi, [rsp+1E8h+var_8]; this mov [rsp+1E8h+var_170], rdi mov rsi, [rsp+1E8h+var_10]; google::protobuf::FieldDescriptor * cal...
void google::protobuf::compiler::objectivec::RepeatedPrimitiveFieldGenerator::RepeatedPrimitiveFieldGenerator( google::protobuf::compiler::objectivec::RepeatedPrimitiveFieldGenerator *this, const google::protobuf::FieldDescriptor *a2) { long long v2; // [rsp+8h] [rbp-1E0h] long long v3; // [rsp+20h...
26,297
google::protobuf::compiler::objectivec::RepeatedPrimitiveFieldGenerator::RepeatedPrimitiveFieldGenerator(google::protobuf::FieldDescriptor const*)
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc
RepeatedPrimitiveFieldGenerator::RepeatedPrimitiveFieldGenerator( const FieldDescriptor* descriptor) : RepeatedFieldGenerator(descriptor) { SetPrimitiveVariables(descriptor, &variables_); std::string base_name = PrimitiveArrayTypeName(descriptor); if (base_name.length()) { variables_["array_storage_t...
O3
cpp
google::protobuf::compiler::objectivec::RepeatedPrimitiveFieldGenerator::RepeatedPrimitiveFieldGenerator(google::protobuf::FieldDescriptor const*): pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0xc0, %rsp movq %rsi, %r15 movq %rdi, %rbx callq 0xef3de leaq 0x188f66(%rip), %rax # 0x27ab30 movq %rax, (%r...
_ZN6google8protobuf8compiler10objectivec31RepeatedPrimitiveFieldGeneratorC2EPKNS0_15FieldDescriptorE: push r15 push r14 push r13 push r12 push rbx sub rsp, 0C0h mov r15, rsi mov rbx, rdi call _ZN6google8protobuf8compiler10objectivec22RepeatedFieldGeneratorC2EPKNS0_15FieldDescriptorE; googl...
void google::protobuf::compiler::objectivec::RepeatedPrimitiveFieldGenerator::RepeatedPrimitiveFieldGenerator( google::protobuf::compiler::objectivec::RepeatedPrimitiveFieldGenerator *this, const google::protobuf::FieldDescriptor *a2) { long long v3; // rdi unsigned int ObjectiveCType; // eax cha...
RepeatedPrimitiveFieldGenerator: PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0xc0 MOV R15,RSI MOV RBX,RDI CALL 0x001ef3de LEA RAX,[0x37ab30] MOV qword ptr [RBX],RAX LEA R14,[RBX + 0x10] LAB_001f1bd1: MOV RDI,R15 MOV RSI,R14 CALL 0x001f1714 MOV RDI,qword ptr [R15 + 0x18] TEST RDI,RDI JZ 0x001f1c01 LEA RAX,[0x23...
/* google::protobuf::compiler::objectivec::RepeatedPrimitiveFieldGenerator::RepeatedPrimitiveFieldGenerator(google::protobuf::FieldDescriptor const*) */ void __thiscall google::protobuf::compiler::objectivec::RepeatedPrimitiveFieldGenerator:: RepeatedPrimitiveFieldGenerator(RepeatedPrimitiveFieldGenerator *this,Fi...
26,298
js_create_iterator_helper
bluesky950520[P]quickjs/quickjs.c
static JSValue js_create_iterator_helper(JSContext *ctx, JSValue this_val, int argc, JSValue *argv, int magic) { JSValue func, obj, method; int64_t count; JSIteratorHelperData *it; if (check_iterator(ctx, this_val) < 0) return JS_EXCEPTION; func = JS...
O1
c
js_create_iterator_helper: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq %rdx, %r14 movq %rdi, %rbx cmpl $-0x1, %r14d jne 0x71fc8 movl %r9d, %ebp movq $0x0, 0x10(%rsp) cmpl $0x8, %r9d ja 0x721d6 movq %rsi, %r15 movl $0x54, %eax btl %ebp, %eax jae 0x71fe4 movq (%r8), %r12 movq 0...
js_create_iterator_helper: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov r14, rdx mov rbx, rdi cmp r14d, 0FFFFFFFFh jnz loc_71FC8 mov ebp, r9d mov [rsp+78h+var_68], 0 cmp r9d, 8 ja loc_721D6 mov r15, rsi mov eax, 54h ; 'T' bt e...
unsigned long long js_create_iterator_helper( long long a1, _DWORD *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, ...
js_create_iterator_helper: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV R14,RDX MOV RBX,RDI CMP R14D,-0x1 JNZ 0x00171fc8 MOV EBP,R9D MOV qword ptr [RSP + 0x10],0x0 CMP R9D,0x8 JA 0x001721d6 MOV R15,RSI MOV EAX,0x54 BT EAX,EBP JNC 0x00171fe4 MOV R12,qword ptr [R8] MOV R13,qword ptr [R8 + 0x8] M...
int1 [16] js_create_iterator_helper (long param_1,int *param_2,int8 param_3,int8 param_4,ulong *param_5, uint param_6) { int iVar1; int8 *puVar2; ulong uVar3; int8 uVar4; int *piVar5; int8 uVar6; ulong uVar7; int1 auVar8 [12]; int1 auVar9 [16]; ulong local_70; long local_68;...
26,299
js_create_iterator_helper
bluesky950520[P]quickjs/quickjs.c
static JSValue js_create_iterator_helper(JSContext *ctx, JSValue this_val, int argc, JSValue *argv, int magic) { JSValue func, obj, method; int64_t count; JSIteratorHelperData *it; if (check_iterator(ctx, this_val) < 0) return JS_EXCEPTION; func = JS...
O2
c
js_create_iterator_helper: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movl %r9d, %ebp movq %r8, %r13 movq %rdx, %r15 movq %rsi, %r12 movq %rdi, %r14 movq %rdx, %rsi callq 0x60e07 pushq $0x6 popq %rbx testl %eax, %eax js 0x601c6 andq $0x0, 0x38(%rsp) cmpl $0x8, %ebp ja 0x602c1 pus...
js_create_iterator_helper: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov ebp, r9d mov r13, r8 mov r15, rdx mov r12, rsi mov r14, rdi mov rsi, rdx call check_iterator push 6 pop rbx test eax, eax js loc_601C6 and [rsp+78h+var_40...
unsigned long long js_create_iterator_helper( const char *a1, _DWORD *a2, long long a3, __m128 a4, __m128 a5, __m128 a6, __m128 a7, double a8, double a9, __m128 a10, __m128 a11, long long a12, long long *a13, ...
js_create_iterator_helper: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV EBP,R9D MOV R13,R8 MOV R15,RDX MOV R12,RSI MOV R14,RDI MOV RSI,RDX CALL 0x00160e07 PUSH 0x6 POP RBX TEST EAX,EAX JS 0x001601c6 AND qword ptr [RSP + 0x38],0x0 CMP EBP,0x8 JA 0x001602c1 PUSH 0x54 POP RAX BT EAX,EBP MOV qword...
int1 [16] js_create_iterator_helper (int8 param_1,int *param_2,int8 param_3,int8 param_4,ulong *param_5, uint param_6) { int iVar1; int8 *puVar2; ulong uVar3; int8 uVar4; int *piVar5; int8 uVar6; ulong uVar7; int8 uVar8; long lVar9; ulong uVar10; int1 auVar11 [16]; int1 au...