idx
int64
0
2.11M
name
stringlengths
1
118k
code
stringlengths
6
516k
asm
stringlengths
21
4.64M
file
stringlengths
39
143
opt
stringclasses
1 value
path
stringlengths
20
133
14,200
Catch::Context::getRunner()
IRunner* getRunner() override { return m_runner; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax movq 0x20(%rax), %rax popq %rbp retq nopw %cs:(%rax,%rax) nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,201
Catch::Context::getConfig() const
IConfigPtr const& getConfig() const override { return m_config; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax addq $0x10, %rax popq %rbp retq nopw %cs:(%rax,%rax) nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,202
Catch::Context::setResultCapture(Catch::IResultCapture*)
void setResultCapture( IResultCapture* resultCapture ) override { m_resultCapture = resultCapture; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rax movq -0x10(%rbp), %rcx movq %rcx, 0x28(%rax) popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,203
Catch::Context::setRunner(Catch::IRunner*)
void setRunner( IRunner* runner ) override { m_runner = runner; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rax movq -0x10(%rbp), %rcx movq %rcx, 0x20(%rax) popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,204
Catch::Context::setConfig(std::shared_ptr<Catch::IConfig const> const&)
void setConfig( IConfigPtr const& config ) override { m_config = config; }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi addq $0x10, %rdi callq 0x163610 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,205
Catch::IStreamingReporter::~IStreamingReporter()
virtual ~IStreamingReporter() = default;
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,206
Catch::IStreamingReporter::~IStreamingReporter()
virtual ~IStreamingReporter() = default;
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) ud2 nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,207
Catch::IStreamingReporter::reportInvalidArguments(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
virtual void reportInvalidArguments(std::string const&) {}
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,208
Catch::TestCaseTracking::TrackerBase::hasStarted() const
bool hasStarted() const override { return m_runState != NotStarted; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax cmpl $0x0, 0x60(%rax) setne %al andb $0x1, %al popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,209
Catch::Generators::GeneratorTracker::close()
void close() override { TrackerBase::close(); // If a generator has a child (it is followed by a section) // and none of its children have started, then we must wait // until later to start consuming its values. // This catches cases where `GENERATE` is placed between two // `SECTION`s. // **The check for m_children.empty cannot be removed**. // doing so would break `GENERATE` _not_ followed by `SECTION`s. const bool should_wait_for_child = [&]() { // No children -> nobody to wait for if ( m_children.empty() ) { return false; } // If at least one child started executing, don't wait if ( std::find_if( m_children.begin(), m_children.end(), []( TestCaseTracking::ITrackerPtr tracker ) { return tracker->hasStarted(); } ) != m_children.end() ) { return false; } // No children have started. We need to check if they _can_ // start, and thus we should wait for them, or they cannot // start (due to filters), and we shouldn't wait for them auto* parent = m_parent; // This is safe: there is always at least one section // tracker in a test case tracking tree while ( !parent->isSectionTracker() ) { parent = &( parent->parent() ); } assert( parent && "Missing root (test case) level section" ); auto const& parentSection = static_cast<SectionTracker&>( *parent ); auto const& filters = parentSection.getFilters(); // No filters -> no restrictions on running sections if ( filters.empty() ) { return true; } for ( auto const& child : m_children ) { if ( child->isSectionTracker() && std::find( filters.begin(), filters.end(), static_cast<SectionTracker&>( *child ) .trimmedName() ) != filters.end() ) { return true; } } return false; }(); // This check is a bit tricky, because m_generator->next() // has a side-effect, where it consumes generator's current // value, but we do not want to invoke the side-effect if // this generator is still waiting for any child to start. if ( should_wait_for_child || ( m_runState == CompletedSuccessfully && m_generator->next() ) ) { m_children.clear(); m_runState = Executing; } }
pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x20(%rbp) callq 0x3a210 movq -0x20(%rbp), %rax movq %rax, -0x18(%rbp) leaq -0x18(%rbp), %rdi callq 0x1638e0 andb $0x1, %al movb %al, -0x9(%rbp) testb $0x1, -0x9(%rbp) jne 0xdd34b movq -0x20(%rbp), %rax cmpl $0x4, 0x60(%rax) jne 0xdd363 movq -0x20(%rbp), %rdi addq $0x70, %rdi callq 0x163b30 movq %rax, %rdi movq (%rdi), %rax callq *0x10(%rax) testb $0x1, %al jne 0xdd34b jmp 0xdd363 movq -0x20(%rbp), %rdi addq $0x48, %rdi callq 0x163b50 movq -0x20(%rbp), %rax movl $0x1, 0x60(%rax) addq $0x20, %rsp popq %rbp retq nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,210
Catch::Generators::GeneratorTracker::isGeneratorTracker() const
bool isGeneratorTracker() const override { return true; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movb $0x1, %al andb $0x1, %al popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,211
Catch::Generators::GeneratorTracker::hasGenerator() const
auto hasGenerator() const -> bool override { return !!m_generator; }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi addq $0x70, %rdi callq 0x164090 xorb $-0x1, %al xorb $-0x1, %al andb $0x1, %al addq $0x10, %rsp popq %rbp retq nopw %cs:(%rax,%rax) nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,212
Catch::Generators::GeneratorTracker::getGenerator() const
auto getGenerator() const -> GeneratorBasePtr const& override { return m_generator; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax addq $0x70, %rax popq %rbp retq nopw %cs:(%rax,%rax) nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,213
Catch::Generators::GeneratorTracker::setGenerator(std::unique_ptr<Catch::Generators::GeneratorUntypedBase, std::default_delete<Catch::Generators::GeneratorUntypedBase>>&&)
void setGenerator( GeneratorBasePtr&& generator ) override { m_generator = std::move( generator ); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi addq $0x70, %rdi callq 0x1640c0 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,214
non-virtual thunk to Catch::Generators::GeneratorTracker::hasGenerator() const
void close() override { TrackerBase::close(); // If a generator has a child (it is followed by a section) // and none of its children have started, then we must wait // until later to start consuming its values. // This catches cases where `GENERATE` is placed between two // `SECTION`s. // **The check for m_children.empty cannot be removed**. // doing so would break `GENERATE` _not_ followed by `SECTION`s. const bool should_wait_for_child = [&]() { // No children -> nobody to wait for if ( m_children.empty() ) { return false; } // If at least one child started executing, don't wait if ( std::find_if( m_children.begin(), m_children.end(), []( TestCaseTracking::ITrackerPtr tracker ) { return tracker->hasStarted(); } ) != m_children.end() ) { return false; } // No children have started. We need to check if they _can_ // start, and thus we should wait for them, or they cannot // start (due to filters), and we shouldn't wait for them auto* parent = m_parent; // This is safe: there is always at least one section // tracker in a test case tracking tree while ( !parent->isSectionTracker() ) { parent = &( parent->parent() ); } assert( parent && "Missing root (test case) level section" ); auto const& parentSection = static_cast<SectionTracker&>( *parent ); auto const& filters = parentSection.getFilters(); // No filters -> no restrictions on running sections if ( filters.empty() ) { return true; } for ( auto const& child : m_children ) { if ( child->isSectionTracker() && std::find( filters.begin(), filters.end(), static_cast<SectionTracker&>( *child ) .trimmedName() ) != filters.end() ) { return true; } } return false; }(); // This check is a bit tricky, because m_generator->next() // has a side-effect, where it consumes generator's current // value, but we do not want to invoke the side-effect if // this generator is still waiting for any child to start. if ( should_wait_for_child || ( m_runState == CompletedSuccessfully && m_generator->next() ) ) { m_children.clear(); m_runState = Executing; } }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi addq $-0x68, %rdi popq %rbp jmp 0xdd380 nopw %cs:(%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,215
non-virtual thunk to Catch::Generators::GeneratorTracker::getGenerator() const
void setGenerator( GeneratorBasePtr&& generator ) override { m_generator = std::move( generator ); }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi addq $-0x68, %rdi popq %rbp jmp 0xdd3b0 nopw %cs:(%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,216
non-virtual thunk to Catch::Generators::GeneratorTracker::setGenerator(std::unique_ptr<Catch::Generators::GeneratorUntypedBase, std::default_delete<Catch::Generators::GeneratorUntypedBase>>&&)
void setGenerator( GeneratorBasePtr&& generator ) override { m_generator = std::move( generator ); }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi addq $-0x68, %rdi movq -0x10(%rbp), %rsi popq %rbp jmp 0xdd3d0 nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,217
Catch::TestRegistry::~TestRegistry()
virtual ~TestRegistry() = default;
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x10(%rbp) leaq 0x186dfd(%rip), %rax # 0x264278 addq $0x10, %rax movq %rax, (%rdi) addq $0x48, %rdi callq 0x1ff28 movq -0x10(%rbp), %rdi addq $0x28, %rdi callq 0xd37f0 movq -0x10(%rbp), %rdi addq $0x8, %rdi callq 0xd37f0 movq -0x10(%rbp), %rdi callq 0x2ca10 addq $0x10, %rsp popq %rbp retq nopw %cs:(%rax,%rax) nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,218
Catch::TestRegistry::~TestRegistry()
virtual ~TestRegistry() = default;
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x10(%rbp) callq 0xdd460 movq -0x10(%rbp), %rdi callq 0x1f6f0 addq $0x10, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,219
Catch::WildcardPattern::~WildcardPattern()
virtual ~WildcardPattern() = default;
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi leaq 0x185e59(%rip), %rax # 0x263430 addq $0x10, %rax movq %rax, (%rdi) addq $0x10, %rdi callq 0x1ff08 addq $0x10, %rsp popq %rbp retq nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,220
Catch::WildcardPattern::~WildcardPattern()
virtual ~WildcardPattern() = default;
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x10(%rbp) callq 0xdd5c0 movq -0x10(%rbp), %rdi callq 0x1f6f0 addq $0x10, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,221
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::getPreferences() const
ReporterPreferences getPreferences() const override { return m_reporterPrefs; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) movq -0x10(%rbp), %rax movw 0x160(%rax), %ax movw %ax, -0x2(%rbp) movw -0x2(%rbp), %ax popq %rbp retq nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,222
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::noMatchingTestCases(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
void noMatchingTestCases(std::string const&) override {}
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,223
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::reportInvalidArguments(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
void reportInvalidArguments(std::string const&) override {}
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,224
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::testRunStarting(Catch::TestRunInfo const&)
void testRunStarting(TestRunInfo const& _testRunInfo) override { currentTestRunInfo = _testRunInfo; }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi addq $0x20, %rdi callq 0x1ac560 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,225
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::testGroupStarting(Catch::GroupInfo const&)
void testGroupStarting(GroupInfo const& _groupInfo) override { currentGroupInfo = _groupInfo; }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi addq $0x50, %rdi callq 0x1b44c0 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,226
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::testCaseStarting(Catch::TestCaseInfo const&)
void testCaseStarting(TestCaseInfo const& _testInfo) override { currentTestCaseInfo = _testInfo; }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi addq $0x90, %rdi callq 0x1b4540 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,227
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::sectionStarting(Catch::SectionInfo const&)
void sectionStarting(SectionInfo const& _sectionInfo) override { m_sectionStack.push_back(_sectionInfo); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi addq $0x148, %rdi # imm = 0x148 movq -0x10(%rbp), %rsi callq 0x1abd50 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,228
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::sectionEnded(Catch::SectionStats const&)
void sectionEnded(SectionStats const& /* _sectionStats */) override { m_sectionStack.pop_back(); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi addq $0x148, %rdi # imm = 0x148 callq 0xfb0a0 addq $0x10, %rsp popq %rbp retq nopw %cs:(%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,229
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::testCaseEnded(Catch::TestCaseStats const&)
void testCaseEnded(TestCaseStats const& /* _testCaseStats */) override { currentTestCaseInfo.reset(); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi addq $0x90, %rdi callq 0x1aa420 addq $0x10, %rsp popq %rbp retq nopw %cs:(%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,230
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::testGroupEnded(Catch::TestGroupStats const&)
void testGroupEnded(TestGroupStats const& /* _testGroupStats */) override { currentGroupInfo.reset(); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi addq $0x50, %rdi callq 0x1aa450 addq $0x10, %rsp popq %rbp retq nopw %cs:(%rax,%rax) nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,231
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::testRunEnded(Catch::TestRunStats const&)
void testRunEnded(TestRunStats const& /* _testRunStats */) override { currentTestCaseInfo.reset(); currentGroupInfo.reset(); currentTestRunInfo.reset(); }
pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x18(%rbp) addq $0x90, %rdi callq 0x1aa420 movq -0x18(%rbp), %rdi addq $0x50, %rdi callq 0x1aa450 movq -0x18(%rbp), %rdi addq $0x20, %rdi callq 0x1aa480 addq $0x20, %rsp popq %rbp retq nopw %cs:(%rax,%rax) nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,232
Catch::StreamingReporterBase<Catch::TestEventListenerBase>::skipTest(Catch::TestCaseInfo const&)
void skipTest(TestCaseInfo const&) override { // Don't do anything with this by default. // It can optionally be overridden in the derived class. }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,233
Catch::StreamingReporterBase<Catch::CompactReporter>::getPreferences() const
ReporterPreferences getPreferences() const override { return m_reporterPrefs; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) movq -0x10(%rbp), %rax movw 0x160(%rax), %ax movw %ax, -0x2(%rbp) movw -0x2(%rbp), %ax popq %rbp retq nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,234
Catch::StreamingReporterBase<Catch::CompactReporter>::reportInvalidArguments(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
void reportInvalidArguments(std::string const&) override {}
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,235
Catch::StreamingReporterBase<Catch::CompactReporter>::testRunStarting(Catch::TestRunInfo const&)
void testRunStarting(TestRunInfo const& _testRunInfo) override { currentTestRunInfo = _testRunInfo; }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi addq $0x20, %rdi callq 0x1ac560 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,236
Catch::StreamingReporterBase<Catch::CompactReporter>::testGroupStarting(Catch::GroupInfo const&)
void testGroupStarting(GroupInfo const& _groupInfo) override { currentGroupInfo = _groupInfo; }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi addq $0x50, %rdi callq 0x1b44c0 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,237
Catch::StreamingReporterBase<Catch::CompactReporter>::testCaseStarting(Catch::TestCaseInfo const&)
void testCaseStarting(TestCaseInfo const& _testInfo) override { currentTestCaseInfo = _testInfo; }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi addq $0x90, %rdi callq 0x1b4540 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,238
Catch::StreamingReporterBase<Catch::CompactReporter>::sectionStarting(Catch::SectionInfo const&)
void sectionStarting(SectionInfo const& _sectionInfo) override { m_sectionStack.push_back(_sectionInfo); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi addq $0x148, %rdi # imm = 0x148 movq -0x10(%rbp), %rsi callq 0x1abd50 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,239
Catch::StreamingReporterBase<Catch::CompactReporter>::testCaseEnded(Catch::TestCaseStats const&)
void testCaseEnded(TestCaseStats const& /* _testCaseStats */) override { currentTestCaseInfo.reset(); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi addq $0x90, %rdi callq 0x1aa420 addq $0x10, %rsp popq %rbp retq nopw %cs:(%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,240
Catch::StreamingReporterBase<Catch::CompactReporter>::testGroupEnded(Catch::TestGroupStats const&)
void testGroupEnded(TestGroupStats const& /* _testGroupStats */) override { currentGroupInfo.reset(); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi addq $0x50, %rdi callq 0x1aa450 addq $0x10, %rsp popq %rbp retq nopw %cs:(%rax,%rax) nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,241
Catch::StreamingReporterBase<Catch::CompactReporter>::skipTest(Catch::TestCaseInfo const&)
void skipTest(TestCaseInfo const&) override { // Don't do anything with this by default. // It can optionally be overridden in the derived class. }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,242
Catch::StreamingReporterBase<Catch::ConsoleReporter>::getPreferences() const
ReporterPreferences getPreferences() const override { return m_reporterPrefs; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) movq -0x10(%rbp), %rax movw 0x160(%rax), %ax movw %ax, -0x2(%rbp) movw -0x2(%rbp), %ax popq %rbp retq nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,243
Catch::StreamingReporterBase<Catch::ConsoleReporter>::testGroupStarting(Catch::GroupInfo const&)
void testGroupStarting(GroupInfo const& _groupInfo) override { currentGroupInfo = _groupInfo; }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi addq $0x50, %rdi callq 0x1b44c0 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,244
Catch::StreamingReporterBase<Catch::ConsoleReporter>::testCaseStarting(Catch::TestCaseInfo const&)
void testCaseStarting(TestCaseInfo const& _testInfo) override { currentTestCaseInfo = _testInfo; }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi addq $0x90, %rdi callq 0x1b4540 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,245
Catch::StreamingReporterBase<Catch::ConsoleReporter>::skipTest(Catch::TestCaseInfo const&)
void skipTest(TestCaseInfo const&) override { // Don't do anything with this by default. // It can optionally be overridden in the derived class. }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,246
Catch::CumulativeReporterBase<Catch::JunitReporter>::getPreferences() const
ReporterPreferences getPreferences() const override { return m_reporterPrefs; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) movq -0x10(%rbp), %rax movw 0xd0(%rax), %ax movw %ax, -0x2(%rbp) movw -0x2(%rbp), %ax popq %rbp retq nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,247
Catch::CumulativeReporterBase<Catch::JunitReporter>::sectionStarting(Catch::SectionInfo const&)
void sectionStarting( SectionInfo const& sectionInfo ) override { SectionStats incompleteStats( sectionInfo, Counts(), 0, false ); std::shared_ptr<SectionNode> node; if( m_sectionStack.empty() ) { if( !m_rootSection ) m_rootSection = std::make_shared<SectionNode>( incompleteStats ); node = m_rootSection; } else { SectionNode& parentNode = *m_sectionStack.back(); auto it = std::find_if( parentNode.childSections.begin(), parentNode.childSections.end(), BySectionInfo( sectionInfo ) ); if( it == parentNode.childSections.end() ) { node = std::make_shared<SectionNode>( incompleteStats ); parentNode.childSections.push_back( node ); } else node = *it; } m_sectionStack.push_back( node ); m_deepestSection = std::move(node); }
pushq %rbp movq %rsp, %rbp subq $0x140, %rsp # imm = 0x140 movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rax movq %rax, -0x120(%rbp) movq -0x10(%rbp), %rax movq %rax, -0x128(%rbp) leaq -0xa8(%rbp), %rdi xorl %esi, %esi movl $0x18, %edx callq 0x1f410 leaq -0xa8(%rbp), %rdi callq 0xd5dc0 movq -0x128(%rbp), %rsi leaq -0x90(%rbp), %rdi leaq -0xa8(%rbp), %rdx xorps %xmm0, %xmm0 xorl %ecx, %ecx callq 0x2c500 leaq -0xb8(%rbp), %rdi callq 0x1ae2e0 movq -0x120(%rbp), %rdi addq $0xb8, %rdi callq 0x1ae770 testb $0x1, %al jne 0xddc4f jmp 0xddcf1 movq -0x120(%rbp), %rdi addq $0x98, %rdi callq 0x1af460 testb $0x1, %al jne 0xddcd2 leaq -0xc8(%rbp), %rdi leaq -0x90(%rbp), %rsi callq 0x1b5760 jmp 0xddc7b movq -0x120(%rbp), %rdi addq $0x98, %rdi leaq -0xc8(%rbp), %rsi callq 0x1b57d0 leaq -0xc8(%rbp), %rdi callq 0xfb2e0 jmp 0xddcd2 movq %rax, %rcx movl %edx, %eax movq %rcx, -0xd0(%rbp) movl %eax, -0xd4(%rbp) leaq -0xb8(%rbp), %rdi callq 0xfb2e0 leaq -0x90(%rbp), %rdi callq 0x2c580 jmp 0xdde91 movq -0x120(%rbp), %rsi addq $0x98, %rsi leaq -0xb8(%rbp), %rdi callq 0x1b5800 jmp 0xdde3a movq -0x120(%rbp), %rdi addq $0xb8, %rdi callq 0x1ae7b0 movq %rax, %rdi callq 0xdbd50 movq %rax, -0xe0(%rbp) movq -0xe0(%rbp), %rdi addq $0x88, %rdi callq 0x1b0390 movq %rax, -0xf0(%rbp) movq -0xe0(%rbp), %rdi addq $0x88, %rdi callq 0x1ae8b0 movq %rax, -0xf8(%rbp) movq -0x10(%rbp), %rsi leaq -0x100(%rbp), %rdi callq 0x1b58a0 jmp 0xddd59 movq -0xf0(%rbp), %rdi movq -0xf8(%rbp), %rsi leaq -0x100(%rbp), %rdx callq 0x1b5830 movq %rax, -0x130(%rbp) jmp 0xddd7c movq -0x130(%rbp), %rax movq %rax, -0xe8(%rbp) movq -0xe0(%rbp), %rdi addq $0x88, %rdi callq 0x1ae8b0 movq %rax, -0x108(%rbp) leaq -0xe8(%rbp), %rdi leaq -0x108(%rbp), %rsi callq 0x1b58c0 testb $0x1, %al jne 0xdddbd jmp 0xdde1d leaq -0x118(%rbp), %rdi leaq -0x90(%rbp), %rsi callq 0x1b5760 jmp 0xdddd2 leaq -0xb8(%rbp), %rdi movq %rdi, -0x138(%rbp) leaq -0x118(%rbp), %rsi movq %rsi, -0x140(%rbp) callq 0x1b57d0 movq -0x140(%rbp), %rdi callq 0xfb2e0 movq -0x138(%rbp), %rsi movq -0xe0(%rbp), %rdi addq $0x88, %rdi callq 0x1af340 jmp 0xdde1b jmp 0xdde38 leaq -0xe8(%rbp), %rdi callq 0x1ae920 movq %rax, %rsi leaq -0xb8(%rbp), %rdi callq 0x1b5800 jmp 0xdde3a movq -0x120(%rbp), %rdi addq $0xb8, %rdi leaq -0xb8(%rbp), %rsi callq 0x1af340 jmp 0xdde56 movq -0x120(%rbp), %rdi addq $0xa8, %rdi leaq -0xb8(%rbp), %rsi callq 0x1b57d0 leaq -0xb8(%rbp), %rdi callq 0xfb2e0 leaq -0x90(%rbp), %rdi callq 0x2c580 addq $0x140, %rsp # imm = 0x140 popq %rbp retq movq -0xd0(%rbp), %rdi callq 0x1fd40 nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,248
Catch::CumulativeReporterBase<Catch::JunitReporter>::assertionStarting(Catch::AssertionInfo const&)
void assertionStarting(AssertionInfo const&) override {}
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,249
Catch::CumulativeReporterBase<Catch::JunitReporter>::sectionEnded(Catch::SectionStats const&)
void sectionEnded(SectionStats const& sectionStats) override { assert(!m_sectionStack.empty()); SectionNode& node = *m_sectionStack.back(); node.stats = sectionStats; m_sectionStack.pop_back(); }
pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x20(%rbp) addq $0xb8, %rdi callq 0x1ae770 xorb $-0x1, %al testb $0x1, %al jne 0xddedc jmp 0xddede jmp 0xddefd leaq 0xdd2db(%rip), %rdi # 0x1bb1c0 leaq 0xdc5fe(%rip), %rsi # 0x1ba4ea movl $0x1717, %edx # imm = 0x1717 leaq 0xe513d(%rip), %rcx # 0x1c3035 callq 0x1f4f0 movq -0x20(%rbp), %rdi addq $0xb8, %rdi callq 0x1ae7b0 movq %rax, %rdi callq 0xdbd50 movq %rax, -0x18(%rbp) movq -0x10(%rbp), %rsi movq -0x18(%rbp), %rdi addq $0x8, %rdi callq 0x1b68d0 movq -0x20(%rbp), %rdi addq $0xb8, %rdi callq 0x1b6920 addq $0x20, %rsp popq %rbp retq
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,250
Catch::CumulativeReporterBase<Catch::JunitReporter>::testRunEnded(Catch::TestRunStats const&)
void testRunEnded(TestRunStats const& testRunStats) override { auto node = std::make_shared<TestRunNode>(testRunStats); node->children.swap(m_testGroups); m_testRuns.push_back(node); testRunEndedCumulative(); }
pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rax movq %rax, -0x40(%rbp) movq -0x10(%rbp), %rsi leaq -0x20(%rbp), %rdi movq %rdi, -0x38(%rbp) callq 0x1b69b0 movq -0x38(%rbp), %rdi callq 0x1b6a20 movq -0x40(%rbp), %rsi movq %rax, %rdi addq $0x70, %rdi addq $0x68, %rsi callq 0x1b6a40 movq -0x40(%rbp), %rdi movq -0x38(%rbp), %rsi subq $-0x80, %rdi callq 0x1b6aa0 jmp 0xddf99 movq -0x40(%rbp), %rdi movq (%rdi), %rax movq 0x90(%rax), %rax callq *%rax jmp 0xddfab leaq -0x20(%rbp), %rdi callq 0xfb8c0 addq $0x40, %rsp popq %rbp retq movq %rax, %rcx movl %edx, %eax movq %rcx, -0x28(%rbp) movl %eax, -0x2c(%rbp) leaq -0x20(%rbp), %rdi callq 0xfb8c0 movq -0x28(%rbp), %rdi callq 0x1fd40 nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,251
Catch::CumulativeReporterBase<Catch::JunitReporter>::skipTest(Catch::TestCaseInfo const&)
void skipTest(TestCaseInfo const&) override {}
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,252
Catch::StreamingReporterBase<Catch::XmlReporter>::getPreferences() const
ReporterPreferences getPreferences() const override { return m_reporterPrefs; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) movq -0x10(%rbp), %rax movw 0x160(%rax), %ax movw %ax, -0x2(%rbp) movw -0x2(%rbp), %ax popq %rbp retq nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,253
Catch::StreamingReporterBase<Catch::XmlReporter>::reportInvalidArguments(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
void reportInvalidArguments(std::string const&) override {}
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,254
Catch::StreamingReporterBase<Catch::XmlReporter>::skipTest(Catch::TestCaseInfo const&)
void skipTest(TestCaseInfo const&) override { // Don't do anything with this by default. // It can optionally be overridden in the derived class. }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,255
int& std::__get_helper<0ul, int, int>(std::_Tuple_impl<0ul, int, int>&)
constexpr _Head& __get_helper(_Tuple_impl<__i, _Head, _Tail...>& __t) noexcept { return _Tuple_impl<__i, _Head, _Tail...>::_M_head(__t); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi callq 0xde0d0 addq $0x10, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/tuple
14,256
std::_Tuple_impl<0ul, int, int>::_M_head(std::_Tuple_impl<0ul, int, int>&)
static constexpr _Head& _M_head(_Tuple_impl& __t) noexcept { return _Base::_M_head(__t); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi addq $0x4, %rdi callq 0xde0f0 addq $0x10, %rsp popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/tuple
14,257
std::_Head_base<0ul, int, false>::_M_head(std::_Head_base<0ul, int, false>&)
static constexpr _Head& _M_head(_Head_base& __b) noexcept { return __b._M_head_impl; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/tuple
14,258
int& std::__get_helper<1ul, int>(std::_Tuple_impl<1ul, int>&)
constexpr _Head& __get_helper(_Tuple_impl<__i, _Head, _Tail...>& __t) noexcept { return _Tuple_impl<__i, _Head, _Tail...>::_M_head(__t); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi callq 0xde120 addq $0x10, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/tuple
14,259
std::_Tuple_impl<1ul, int>::_M_head(std::_Tuple_impl<1ul, int>&)
static constexpr _Head& _M_head(_Tuple_impl& __t) noexcept { return _Base::_M_head(__t); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi callq 0xde140 addq $0x10, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/tuple
14,260
std::_Head_base<1ul, int, false>::_M_head(std::_Head_base<1ul, int, false>&)
static constexpr _Head& _M_head(_Head_base& __b) noexcept { return __b._M_head_impl; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/tuple
14,261
std::shared_ptr<Catch::clara::detail::BoundValueRef<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>> std::make_shared<Catch::clara::detail::BoundValueRef<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>&>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>&)
inline shared_ptr<_Tp> make_shared(_Args&&... __args) { typedef typename std::remove_cv<_Tp>::type _Tp_nc; return std::allocate_shared<_Tp>(std::allocator<_Tp_nc>(), std::forward<_Args>(__args)...); }
pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rdi, -0x38(%rbp) movq %rdi, %rax movq %rax, -0x40(%rbp) movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) leaq -0x11(%rbp), %rdi movq %rdi, -0x30(%rbp) callq 0xdfdd0 movq -0x38(%rbp), %rdi movq -0x30(%rbp), %rsi movq -0x10(%rbp), %rdx callq 0xdfd90 jmp 0xde18b leaq -0x11(%rbp), %rdi callq 0xdfdf0 movq -0x40(%rbp), %rax addq $0x40, %rsp popq %rbp retq movq %rax, %rcx movl %edx, %eax movq %rcx, -0x20(%rbp) movl %eax, -0x24(%rbp) leaq -0x11(%rbp), %rdi callq 0xdfdf0 movq -0x20(%rbp), %rdi callq 0x1fd40 nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr.h
14,262
std::enable_if<is_assignable<std::__shared_ptr<Catch::clara::detail::BoundValueRefBase, (__gnu_cxx::_Lock_policy)2>&, std::shared_ptr<Catch::clara::detail::BoundValueRef<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>>::value, std::shared_ptr<Catch::clara::detail::BoundValueRefBase>&>::type std::shared_ptr<Catch::clara::detail::BoundValueRefBase>::operator=<Catch::clara::detail::BoundValueRef<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>(std::shared_ptr<Catch::clara::detail::BoundValueRef<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>&&)
_Assignable<shared_ptr<_Yp>> operator=(shared_ptr<_Yp>&& __r) noexcept { this->__shared_ptr<_Tp>::operator=(std::move(__r)); return *this; }
pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x18(%rbp) movq -0x10(%rbp), %rsi callq 0xe0b10 movq -0x18(%rbp), %rax addq $0x20, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr.h
14,263
std::shared_ptr<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> std::make_shared<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, char const (&) [13]>(char const (&) [13])
inline shared_ptr<_Tp> make_shared(_Args&&... __args) { typedef typename std::remove_cv<_Tp>::type _Tp_nc; return std::allocate_shared<_Tp>(std::allocator<_Tp_nc>(), std::forward<_Args>(__args)...); }
pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rdi, -0x38(%rbp) movq %rdi, %rax movq %rax, -0x40(%rbp) movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) leaq -0x11(%rbp), %rdi movq %rdi, -0x30(%rbp) callq 0xde480 movq -0x38(%rbp), %rdi movq -0x30(%rbp), %rsi movq -0x10(%rbp), %rdx callq 0xde440 jmp 0xde28b leaq -0x11(%rbp), %rdi callq 0xde4a0 movq -0x40(%rbp), %rax addq $0x40, %rsp popq %rbp retq movq %rax, %rcx movl %edx, %eax movq %rcx, -0x20(%rbp) movl %eax, -0x24(%rbp) leaq -0x11(%rbp), %rdi callq 0xde4a0 movq -0x20(%rbp), %rdi callq 0x1fd40 nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr.h
14,264
std::shared_ptr<Catch::clara::detail::BoundValueRefBase>::shared_ptr()
constexpr shared_ptr() noexcept : __shared_ptr<_Tp>() { }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi callq 0xdeef0 addq $0x10, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr.h
14,265
Catch::clara::detail::ParserBase::validate() const
virtual auto validate() const -> Result { return Result::ok(); }
pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, %rax movq %rax, -0x18(%rbp) movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) callq 0xdef40 movq -0x18(%rbp), %rax addq $0x20, %rsp popq %rbp retq nopw %cs:(%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,266
Catch::clara::detail::ExeName::parse(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, Catch::clara::detail::TokenStream const&) const
auto parse( std::string const&, TokenStream const &tokens ) const -> InternalParseResult override { return InternalParseResult::ok( ParseState( ParseResultType::NoMatch, tokens ) ); }
pushq %rbp movq %rsp, %rbp subq $0x80, %rsp movq %rdi, -0x70(%rbp) movq %rdi, %rax movq %rax, -0x78(%rbp) movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq -0x20(%rbp), %rdx leaq -0x50(%rbp), %rdi movq %rdi, -0x68(%rbp) movl $0x1, %esi callq 0xdf190 movq -0x70(%rbp), %rdi movq -0x68(%rbp), %rsi callq 0xdf160 jmp 0xde38b leaq -0x50(%rbp), %rdi callq 0xdf1c0 movq -0x78(%rbp), %rax addq $0x80, %rsp popq %rbp retq movq %rax, %rcx movl %edx, %eax movq %rcx, -0x58(%rbp) movl %eax, -0x5c(%rbp) leaq -0x50(%rbp), %rdi callq 0xdf1c0 movq -0x58(%rbp), %rdi callq 0x1fd40 nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,267
Catch::clara::detail::ParserBase::cardinality() const
virtual auto cardinality() const -> size_t { return 1; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movl $0x1, %eax popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,268
Catch::clara::detail::ParserBase::ParserBase()
virtual auto validate() const -> Result { return Result::ok(); }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax leaq 0x186f3d(%rip), %rcx # 0x265320 addq $0x10, %rcx movq %rcx, (%rax) popq %rbp retq nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,269
Catch::clara::detail::ParserBase::~ParserBase()
virtual ~ParserBase() = default;
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,270
Catch::clara::detail::ParserBase::~ParserBase()
virtual ~ParserBase() = default;
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) ud2 nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
cjuub[P]geemuboi/build_O0/_deps/args-src/catch.hpp
14,271
std::shared_ptr<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> std::allocate_shared<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, char const (&) [13]>(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> const&, char const (&) [13])
inline shared_ptr<_Tp> allocate_shared(const _Alloc& __a, _Args&&... __args) { static_assert(!is_array<_Tp>::value, "make_shared<T[]> not supported"); return shared_ptr<_Tp>(_Sp_alloc_shared_tag<_Alloc>{__a}, std::forward<_Args>(__args)...); }
pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, %rax movq %rax, -0x28(%rbp) movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq -0x10(%rbp), %rax movq %rax, -0x20(%rbp) movq -0x18(%rbp), %rdx movq -0x20(%rbp), %rsi callq 0xde4c0 movq -0x28(%rbp), %rax addq $0x30, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr.h
14,272
std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>::allocator()
_GLIBCXX20_CONSTEXPR allocator() _GLIBCXX_NOTHROW { }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi callq 0xdeee0 addq $0x10, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/allocator.h
14,273
std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>::~allocator()
[[nodiscard,__gnu__::__always_inline__]] constexpr _Tp* allocate(size_t __n) { #ifdef __cpp_lib_is_constant_evaluated if (std::is_constant_evaluated()) return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp))); #endif return __allocator_base<_Tp>::allocate(__n, 0); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi callq 0xded20 addq $0x10, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/allocator.h
14,274
std::shared_ptr<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>::shared_ptr<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, char const (&) [13]>(std::_Sp_alloc_shared_tag<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>, char const (&) [13])
shared_ptr(_Sp_alloc_shared_tag<_Alloc> __tag, _Args&&... __args) : __shared_ptr<_Tp>(__tag, std::forward<_Args>(__args)...) { }
pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rsi, -0x8(%rbp) movq %rdi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq -0x10(%rbp), %rdi movq -0x8(%rbp), %rax movq %rax, -0x20(%rbp) movq -0x18(%rbp), %rdx movq -0x20(%rbp), %rsi callq 0xde500 addq $0x20, %rsp popq %rbp retq nopw %cs:(%rax,%rax) nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr.h
14,275
std::__shared_ptr<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, (__gnu_cxx::_Lock_policy)2>::__shared_ptr<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, char const (&) [13]>(std::_Sp_alloc_shared_tag<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>, char const (&) [13])
__shared_ptr(_Sp_alloc_shared_tag<_Alloc> __tag, _Args&&... __args) : _M_ptr(), _M_refcount(_M_ptr, __tag, std::forward<_Args>(__args)...) { _M_enable_shared_from_this_with(_M_ptr); }
pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rsi, -0x8(%rbp) movq %rdi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq -0x10(%rbp), %rsi movq %rsi, -0x28(%rbp) movq $0x0, (%rsi) movq %rsi, %rdi addq $0x8, %rdi movq -0x8(%rbp), %rax movq %rax, -0x20(%rbp) movq -0x18(%rbp), %rcx movq -0x20(%rbp), %rdx callq 0xde560 movq -0x28(%rbp), %rdi movq (%rdi), %rsi callq 0xde6a0 addq $0x30, %rsp popq %rbp retq nopw %cs:(%rax,%rax) nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h
14,276
std::__shared_count<(__gnu_cxx::_Lock_policy)2>::__shared_count<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, char const (&) [13]>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>*&, std::_Sp_alloc_shared_tag<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>, char const (&) [13])
__shared_count(_Tp*& __p, _Sp_alloc_shared_tag<_Alloc> __a, _Args&&... __args) { typedef _Sp_counted_ptr_inplace<_Tp, _Alloc, _Lp> _Sp_cp_type; typename _Sp_cp_type::__allocator_type __a2(__a._M_a); auto __guard = std::__allocate_guarded(__a2); _Sp_cp_type* __mem = __guard.get(); auto __pi = ::new (__mem) _Sp_cp_type(__a._M_a, std::forward<_Args>(__args)...); __guard = nullptr; _M_pi = __pi; __p = __pi->_M_ptr(); }
pushq %rbp movq %rsp, %rbp subq $0x90, %rsp movq %rdx, -0x8(%rbp) movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq -0x10(%rbp), %rax movq %rax, -0x70(%rbp) movq -0x8(%rbp), %rsi leaq -0x21(%rbp), %rdi movq %rdi, -0x68(%rbp) callq 0xde6b0 movq -0x68(%rbp), %rsi leaq -0x38(%rbp), %rdi callq 0xde6d0 jmp 0xde5a3 leaq -0x38(%rbp), %rdi callq 0xde720 movq %rax, -0x78(%rbp) jmp 0xde5b2 movq -0x78(%rbp), %rax movq %rax, -0x50(%rbp) movq -0x50(%rbp), %rax movq %rax, -0x88(%rbp) movq -0x8(%rbp), %rsi leaq -0x59(%rbp), %rdi movq %rdi, -0x80(%rbp) callq 0xde740 movq -0x88(%rbp), %rdi movq -0x80(%rbp), %rsi movq -0x20(%rbp), %rdx callq 0xde770 jmp 0xde5ec leaq -0x59(%rbp), %rdi callq 0xde4a0 movq -0x88(%rbp), %rax movq %rax, -0x58(%rbp) leaq -0x38(%rbp), %rdi xorl %eax, %eax movl %eax, %esi callq 0xde820 movq -0x70(%rbp), %rax movq -0x58(%rbp), %rcx movq %rcx, (%rax) movq -0x58(%rbp), %rdi callq 0xde840 movq %rax, %rcx movq -0x18(%rbp), %rax movq %rcx, (%rax) leaq -0x38(%rbp), %rdi callq 0xde860 leaq -0x21(%rbp), %rdi callq 0xde8b0 addq $0x90, %rsp popq %rbp retq movq %rax, %rcx movl %edx, %eax movq %rcx, -0x40(%rbp) movl %eax, -0x44(%rbp) jmp 0xde680 movq %rax, %rcx movl %edx, %eax movq %rcx, -0x40(%rbp) movl %eax, -0x44(%rbp) jmp 0xde677 movq %rax, %rcx movl %edx, %eax movq %rcx, -0x40(%rbp) movl %eax, -0x44(%rbp) leaq -0x59(%rbp), %rdi callq 0xde4a0 leaq -0x38(%rbp), %rdi callq 0xde860 leaq -0x21(%rbp), %rdi callq 0xde8b0 movq -0x40(%rbp), %rdi callq 0x1fd40 nopw %cs:(%rax,%rax) nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h
14,277
std::enable_if<!__has_esft_base<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>::value, void>::type std::__shared_ptr<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, (__gnu_cxx::_Lock_policy)2>::_M_enable_shared_from_this_with<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>*)
typename enable_if<!__has_esft_base<_Yp2>::value>::type _M_enable_shared_from_this_with(_Yp*) noexcept { }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h
14,278
std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> const&)
_GLIBCXX20_CONSTEXPR allocator(const allocator<_Tp1>&) _GLIBCXX_NOTHROW { }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi callq 0xde8d0 addq $0x10, %rsp popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/allocator.h
14,279
std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>> std::__allocate_guarded<std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>>(std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>&)
__allocated_ptr<_Alloc> __allocate_guarded(_Alloc& __a) { return { __a, std::allocator_traits<_Alloc>::allocate(__a, 1) }; }
pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, -0x28(%rbp) movq %rdi, %rax movq %rax, -0x18(%rbp) movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x10(%rbp), %rax movq %rax, -0x20(%rbp) movq -0x10(%rbp), %rdi movl $0x1, %esi callq 0xde8e0 movq -0x28(%rbp), %rdi movq -0x20(%rbp), %rsi movq %rax, %rdx callq 0xde910 movq -0x18(%rbp), %rax addq $0x30, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/allocated_ptr.h
14,280
std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>>::get()
value_type* get() { return std::__to_address(_M_ptr); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax movq 0x8(%rax), %rdi callq 0xde9c0 addq $0x10, %rsp popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/allocated_ptr.h
14,281
std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>::_Sp_counted_ptr_inplace<char const (&) [13]>(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, char const (&) [13])
_Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args) : _M_impl(__a) { // _GLIBCXX_RESOLVE_LIB_DEFECTS // 2070. allocate_shared should use allocator_traits<A>::construct allocator_traits<_Alloc>::construct(__a, _M_ptr(), std::forward<_Args>(__args)...); // might throw }
pushq %rbp movq %rsp, %rbp subq $0x50, %rsp movq %rsi, -0x38(%rbp) movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x40(%rbp) callq 0xde9e0 movq -0x40(%rbp), %rax movq -0x38(%rbp), %rsi leaq 0x186bc4(%rip), %rcx # 0x265368 movq %rcx, (%rax) addq $0x10, %rax movq %rax, -0x50(%rbp) leaq -0x19(%rbp), %rdi movq %rdi, -0x48(%rbp) callq 0xde740 movq -0x50(%rbp), %rdi movq -0x48(%rbp), %rsi callq 0xdea10 movq -0x48(%rbp), %rdi callq 0xde4a0 movq -0x40(%rbp), %rdi callq 0xde840 movq -0x38(%rbp), %rdi movq %rax, %rsi movq -0x18(%rbp), %rdx callq 0xdea40 jmp 0xde7ed addq $0x50, %rsp popq %rbp retq movq -0x50(%rbp), %rdi movq %rax, %rcx movl %edx, %eax movq %rcx, -0x28(%rbp) movl %eax, -0x2c(%rbp) callq 0xdea70 movq -0x40(%rbp), %rdi callq 0xdec00 movq -0x28(%rbp), %rdi callq 0x1fd40 nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h
14,282
std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>>::operator=(std::nullptr_t)
__allocated_ptr& operator=(std::nullptr_t) noexcept { _M_ptr = nullptr; return *this; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rax movq $0x0, 0x8(%rax) popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/allocated_ptr.h
14,283
std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>::_M_ptr()
_Tp* _M_ptr() noexcept { return _M_impl._M_storage._M_ptr(); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi addq $0x10, %rdi callq 0xdee40 addq $0x10, %rsp popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h
14,284
std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>>::~__allocated_ptr()
~__allocated_ptr() { if (_M_ptr != nullptr) std::allocator_traits<_Alloc>::deallocate(*_M_alloc, _M_ptr, 1); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax movq %rax, -0x10(%rbp) cmpq $0x0, 0x8(%rax) je 0xde894 movq -0x10(%rbp), %rax movq (%rax), %rdi movq 0x8(%rax), %rsi movl $0x1, %edx callq 0xdee70 jmp 0xde892 jmp 0xde894 addq $0x10, %rsp popq %rbp retq movq %rax, %rdi callq 0xd2220 nopw %cs:(%rax,%rax) nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/allocated_ptr.h
14,285
std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>::~allocator()
[[nodiscard,__gnu__::__always_inline__]] constexpr _Tp* allocate(size_t __n) { #ifdef __cpp_lib_is_constant_evaluated if (std::is_constant_evaluated()) return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp))); #endif return __allocator_base<_Tp>::allocate(__n, 0); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi callq 0xdeed0 addq $0x10, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/allocator.h
14,286
_gnu_cxx::new_allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>::new_allocator()
_GLIBCXX20_CONSTEXPR new_allocator() _GLIBCXX_USE_NOEXCEPT { }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/ext/new_allocator.h
14,287
std::allocator_traits<std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>>::allocate(std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>&, unsigned long)
pointer allocate(allocator_type& __a, size_type __n) { return __a.allocate(__n); }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi xorl %eax, %eax movl %eax, %edx callq 0xde940 addq $0x10, %rsp popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/alloc_traits.h
14,288
std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>>::__allocated_ptr(std::allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>&, std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>*)
__allocated_ptr(_Alloc& __a, pointer __ptr) noexcept : _M_alloc(std::__addressof(__a)), _M_ptr(__ptr) { }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq -0x8(%rbp), %rax movq -0x10(%rbp), %rcx movq %rcx, (%rax) movq -0x18(%rbp), %rcx movq %rcx, 0x8(%rax) popq %rbp retq nopw %cs:(%rax,%rax) nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/allocated_ptr.h
14,289
_gnu_cxx::new_allocator<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>::allocate(unsigned long, void const*)
_GLIBCXX_NODISCARD _Tp* allocate(size_type __n, const void* = static_cast<const void*>(0)) { #if __cplusplus >= 201103L // _GLIBCXX_RESOLVE_LIB_DEFECTS // 3308. std::allocator<void>().allocate(n) static_assert(sizeof(_Tp) != 0, "cannot allocate incomplete types"); #endif if (__builtin_expect(__n > this->_M_max_size(), false)) { // _GLIBCXX_RESOLVE_LIB_DEFECTS // 3190. allocator::allocate sometimes returns too little storage if (__n > (std::size_t(-1) / sizeof(_Tp))) std::__throw_bad_array_new_length(); std::__throw_bad_alloc(); } #if __cpp_aligned_new if (alignof(_Tp) > __STDCPP_DEFAULT_NEW_ALIGNMENT__) { std::align_val_t __al = std::align_val_t(alignof(_Tp)); return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), __al)); } #endif return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp))); }
pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rax movq %rax, -0x20(%rbp) callq 0xde9a0 movq %rax, %rcx movq -0x20(%rbp), %rax cmpq %rcx, %rax jbe 0xde98b movabsq $0x555555555555555, %rax # imm = 0x555555555555555 cmpq %rax, -0x10(%rbp) jbe 0xde986 callq 0x1f5e0 callq 0x1f270 imulq $0x30, -0x10(%rbp), %rdi callq 0x1f770 addq $0x20, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/ext/new_allocator.h
14,290
std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>* std::__to_address<std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>>(std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>*)
constexpr _Tp* __to_address(_Tp* __ptr) noexcept { static_assert(!std::is_function<_Tp>::value, "not a function pointer"); return __ptr; }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/ptr_traits.h
14,291
_gnu_cxx::new_allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>::new_allocator(__gnu_cxx::new_allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>> const&)
_GLIBCXX20_CONSTEXPR new_allocator(const new_allocator&) _GLIBCXX_USE_NOEXCEPT { }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) popq %rbp retq nop
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/ext/new_allocator.h
14,292
std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_Sp_counted_base()
_Sp_counted_base() noexcept : _M_use_count(1), _M_weak_count(1) { }
pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax leaq 0x1869dd(%rip), %rcx # 0x2653d0 addq $0x10, %rcx movq %rcx, (%rax) movl $0x1, 0x8(%rax) movl $0x1, 0xc(%rax) popq %rbp retq nopw (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h
14,293
std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>::_Impl::_Impl(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>)
explicit _Impl(_Alloc __a) noexcept : _A_base(__a) { }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi callq 0xdec50 jmp 0xdea2b addq $0x10, %rsp popq %rbp retq movq %rax, %rdi callq 0xd2220 nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h
14,294
void std::allocator_traits<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::construct<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, char const (&) [13]>(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>*, char const (&) [13])
static _GLIBCXX20_CONSTEXPR void construct(allocator_type& __a __attribute__((__unused__)), _Up* __p, _Args&&... __args) noexcept(std::is_nothrow_constructible<_Up, _Args...>::value) { #if __cplusplus <= 201703L __a.construct(__p, std::forward<_Args>(__args)...); #else std::construct_at(__p, std::forward<_Args>(__args)...); #endif }
pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi movq -0x18(%rbp), %rdx callq 0xdec80 addq $0x20, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/alloc_traits.h
14,295
std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr_inplace()
~_Sp_counted_ptr_inplace() noexcept { }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x10(%rbp) addq $0x10, %rdi callq 0xdea70 movq -0x10(%rbp), %rdi callq 0xdec00 addq $0x10, %rsp popq %rbp retq nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h
14,296
std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr_inplace()
~_Sp_counted_ptr_inplace() noexcept { }
pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x10(%rbp) callq 0xdea90 movq -0x10(%rbp), %rdi callq 0x1f6f0 addq $0x10, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h
14,297
std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>::_M_dispose()
virtual void _M_dispose() noexcept { allocator_traits<_Alloc>::destroy(_M_impl._M_alloc(), _M_ptr()); }
pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x18(%rbp) addq $0x10, %rdi callq 0xded60 movq -0x18(%rbp), %rdi movq %rax, -0x10(%rbp) callq 0xde840 movq -0x10(%rbp), %rdi movq %rax, %rsi callq 0xded30 addq $0x20, %rsp popq %rbp retq nopl (%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h
14,298
std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>::_M_destroy()
virtual void _M_destroy() noexcept { __allocator_type __a(_M_impl._M_alloc()); __allocated_ptr<__allocator_type> __guard_ptr{ __a, this }; this->~_Sp_counted_ptr_inplace(); }
pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0x28(%rbp) addq $0x10, %rdi callq 0xded60 movq %rax, %rsi leaq -0x9(%rbp), %rdi callq 0xde6b0 movq -0x28(%rbp), %rdx leaq -0x20(%rbp), %rdi leaq -0x9(%rbp), %rsi callq 0xde910 movq -0x28(%rbp), %rdi callq 0xdea90 leaq -0x20(%rbp), %rdi callq 0xde860 leaq -0x9(%rbp), %rdi callq 0xde8b0 addq $0x30, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h
14,299
std::_Sp_counted_ptr_inplace<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)
virtual void* _M_get_deleter(const std::type_info& __ti) noexcept override { auto __ptr = const_cast<typename remove_cv<_Tp>::type*>(_M_ptr()); // Check for the fake type_info first, so we don't try to access it // as a real type_info object. Otherwise, check if it's the real // type_info for this class. With RTTI enabled we can check directly, // or call a library function to do it. if (&__ti == &_Sp_make_shared_tag::_S_ti() || #if __cpp_rtti __ti == typeid(_Sp_make_shared_tag) #else _Sp_make_shared_tag::_S_eq(__ti) #endif ) return __ptr; return nullptr; }
pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq -0x10(%rbp), %rdi callq 0xde840 movq %rax, -0x20(%rbp) movq -0x18(%rbp), %rax movq %rax, -0x28(%rbp) callq 0xdedc0 movq %rax, %rcx movq -0x28(%rbp), %rax cmpq %rcx, %rax je 0xdebdc movq -0x18(%rbp), %rdi leaq 0x186837(%rip), %rsi # 0x265408 callq 0xdedd0 testb $0x1, %al jne 0xdebdc jmp 0xdebe6 movq -0x20(%rbp), %rax movq %rax, -0x8(%rbp) jmp 0xdebee movq $0x0, -0x8(%rbp) movq -0x8(%rbp), %rax addq $0x30, %rsp popq %rbp retq nopl (%rax,%rax)
cjuub[P]geemuboi[P]build_O0[P]_deps[P]args-build[P]argstest.asm_src.json
O0
/usr/lib/gcc/x86_64-linux-gnu/11/../../../../include/c++/11/bits/shared_ptr_base.h