├── .dockerignore ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── License.txt ├── Linux_SGXEclipsePlugin ├── build.sh ├── build_config │ ├── allElements.xml │ ├── build.properties │ ├── buildUpdateSite.xml │ ├── customAssembly.xml │ └── customTargets.xml ├── build_directory │ ├── features │ │ └── com.intel.sgx.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ └── feature.xml │ ├── plugins │ │ ├── com.intel.sgx.userguide │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── html │ │ │ │ ├── Resources │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── A_Generated_Trusted_Library.png │ │ │ │ │ │ ├── Add_New_Intel_SGX_Enclave_Dialog.png │ │ │ │ │ │ ├── Add_New_SGX_Static_Trusted_Library_Dialog.png │ │ │ │ │ │ ├── Add_Repository_Dialog.png │ │ │ │ │ │ ├── Add_SGX_Nature.png │ │ │ │ │ │ ├── Add_SGX_Untrusted_Module.png │ │ │ │ │ │ ├── Configurations_Specific_to_Intel_SGX_Technology.png │ │ │ │ │ │ ├── Configure_SGX_Hardware_Release_Mode.png │ │ │ │ │ │ ├── Copying_the_Untrusted_Module_to_a_Project.png │ │ │ │ │ │ ├── Customization_of_SGX_build_command.png │ │ │ │ │ │ ├── Down_Arrow_Button.png │ │ │ │ │ │ ├── Enclave_Configuration_Settings.png │ │ │ │ │ │ ├── Generate_Signed_Enclave_Dialog.png │ │ │ │ │ │ ├── Generate_Signed_Enclave_Dialog_with_Pre_configurations.png │ │ │ │ │ │ ├── Generated_Sample_Untrusted_Application.png │ │ │ │ │ │ ├── Generated_Skeleton_for_an_Enclave.png │ │ │ │ │ │ ├── Generating_Hash_Completion_Dialog.png │ │ │ │ │ │ ├── Import_or_Re_Generate_Enclave_Signing_Key.png │ │ │ │ │ │ ├── Intel_SGX_Configurations.png │ │ │ │ │ │ ├── Intel_SGX_Tools.png │ │ │ │ │ │ ├── Makefile_for_Intel_SGX.png │ │ │ │ │ │ ├── New_Project.png │ │ │ │ │ │ ├── Project_Explorer.png │ │ │ │ │ │ ├── Project_Menu.png │ │ │ │ │ │ ├── SGX_Preference_Page.png │ │ │ │ │ │ ├── Sample_Application.png │ │ │ │ │ │ ├── Select_Configuration_File.png │ │ │ │ │ │ ├── The_Location_of_the_Plugin_zip_Archive.png │ │ │ │ │ │ ├── The_Result_of_Running_Samples_Generated_for_Enclaves.png │ │ │ │ │ │ ├── Two_StepSigne_Enclave_Generate_Hash.png │ │ │ │ │ │ └── Two_Step_Sign_Enclave_Menu.png │ │ │ │ │ └── Stylesheets │ │ │ │ │ │ └── intel_css_styles.css │ │ │ │ └── content.html │ │ │ ├── plugin.xml │ │ │ ├── src │ │ │ │ └── com │ │ │ │ │ └── intel │ │ │ │ │ └── sgx │ │ │ │ │ └── userguide │ │ │ │ │ └── Activator.java │ │ │ └── toc.xml │ │ └── com.intel.sgx │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ └── l10n │ │ │ │ └── bundle.properties │ │ │ ├── build.properties │ │ │ ├── discovery │ │ │ ├── test.c │ │ │ └── test.cpp │ │ │ ├── plugin.xml │ │ │ ├── src │ │ │ └── com │ │ │ │ └── intel │ │ │ │ └── sgx │ │ │ │ ├── Activator.java │ │ │ │ ├── CConfigurationDataProvider2.java │ │ │ │ ├── Messages.java │ │ │ │ ├── SdkPathVariableProvider.java │ │ │ │ ├── build │ │ │ │ └── SGXSDKCommandLauncher.java │ │ │ │ ├── dialogs │ │ │ │ ├── AddEnclaveFileDialog.java │ │ │ │ ├── AddTrustedStaticLibFileDialog.java │ │ │ │ ├── AddUntrustedModuleDialog.java │ │ │ │ ├── EnclaveConfigDialog.java │ │ │ │ ├── RemoveEnclaveFileDialog.java │ │ │ │ ├── SGXDialogBase.java │ │ │ │ ├── TwoStepSignDialogBase.java │ │ │ │ ├── TwoStepSignStep1Dialog1.java │ │ │ │ ├── TwoStepSignStep1Dialog2.java │ │ │ │ ├── TwoStepSignStep1Dialog3.java │ │ │ │ ├── TwoStepSignStep2Dialog.java │ │ │ │ └── UpdateSignKeyDialog.java │ │ │ │ ├── discovery │ │ │ │ ├── SGXSDKDiscoveredPathInfo.java │ │ │ │ ├── SGXSDKDiscoveryUpdater.java │ │ │ │ └── SGXSDKScannerInfoCollector.java │ │ │ │ ├── handlers │ │ │ │ ├── AddEnclave.java │ │ │ │ ├── AddSGXNature.java │ │ │ │ ├── AddTrustedStaticLib.java │ │ │ │ ├── AddUntrustedModule.java │ │ │ │ ├── EnclaveConfigHandler.java │ │ │ │ ├── ModuleCreationBaseHandler.java │ │ │ │ ├── RemoveEnclave.java │ │ │ │ ├── SGXHandler.java │ │ │ │ ├── SGXSDKWizardHandler.java │ │ │ │ ├── TwoStepSignHandlerBase.java │ │ │ │ ├── TwoStepSignStep1.java │ │ │ │ ├── TwoStepSignStep2.java │ │ │ │ ├── UpdateSigningKey.java │ │ │ │ └── about.html │ │ │ │ ├── messages.properties │ │ │ │ ├── natures │ │ │ │ ├── SGXCCNature.java │ │ │ │ ├── SGXNature.java │ │ │ │ └── SGXStaticCCNature.java │ │ │ │ ├── preferences │ │ │ │ ├── ISDKDescriptor.java │ │ │ │ ├── PreferenceConstants.java │ │ │ │ ├── PreferenceInitializer.java │ │ │ │ └── SGXPreferencePage.java │ │ │ │ ├── templates │ │ │ │ ├── CreateNativeFolders.java │ │ │ │ ├── SetCCNature.java │ │ │ │ └── SetStaticCCNature.java │ │ │ │ ├── testers │ │ │ │ └── SGXPropertyTester.java │ │ │ │ └── wizards │ │ │ │ ├── SGXCCProjectWizard.java │ │ │ │ └── SGXCProjectWizard.java │ │ │ └── templates │ │ │ ├── SGX.gif │ │ │ ├── SGXtemplates │ │ │ ├── c++ │ │ │ │ ├── minimal │ │ │ │ │ ├── enclavetemplate.xml │ │ │ │ │ ├── trustedstatictemplate.xml │ │ │ │ │ └── untrusted_module_template.xml │ │ │ │ └── with_sample │ │ │ │ │ └── enclavetemplate.xml │ │ │ ├── c │ │ │ │ ├── minimal │ │ │ │ │ ├── enclavetemplate.xml │ │ │ │ │ ├── trustedstatictemplate.xml │ │ │ │ │ └── untrusted_module_template.xml │ │ │ │ └── with_sample │ │ │ │ │ └── enclavetemplate.xml │ │ │ ├── common │ │ │ │ └── addnaturetemplate.xml │ │ │ ├── configtemplate.xml │ │ │ ├── ctemplate.xml │ │ │ ├── cxxstaticlibtemplate.xml │ │ │ ├── cxxtemplate.xml │ │ │ └── template.properties │ │ │ ├── newmngc_app.gif │ │ │ ├── newmngcc_app.gif │ │ │ ├── resources │ │ │ ├── Basename.config.xml │ │ │ └── Basename_private.pem │ │ │ └── sgx │ │ │ ├── SGXEnclave │ │ │ ├── makefiles │ │ │ │ ├── c++ │ │ │ │ │ ├── sgx_t.mk │ │ │ │ │ ├── sgx_u.mk │ │ │ │ │ └── sgx_u.without_app.mk │ │ │ │ ├── c │ │ │ │ │ ├── sgx_t.mk │ │ │ │ │ ├── sgx_u.mk │ │ │ │ │ └── sgx_u.without_app.mk │ │ │ │ └── common │ │ │ │ │ └── Makefile │ │ │ ├── trusted │ │ │ │ ├── Enclave1.config.xml │ │ │ │ ├── Enclave1.cpp │ │ │ │ ├── Enclave1.edl │ │ │ │ ├── Enclave1.h │ │ │ │ ├── Enclave1.lds │ │ │ │ ├── Enclave1_minimal.cpp │ │ │ │ ├── Enclave1_minimal.edl │ │ │ │ └── Enclave1_private.pem │ │ │ └── untrusted │ │ │ │ ├── sample.cpp │ │ │ │ └── sample.h │ │ │ ├── SGXNature │ │ │ └── Makefile │ │ │ ├── SGXTrustedStaticLibrary │ │ │ ├── makefiles │ │ │ │ ├── c++ │ │ │ │ │ ├── sgx_t_static.mk │ │ │ │ │ └── sgx_u.without_app.mk │ │ │ │ ├── c │ │ │ │ │ ├── sgx_t_static.mk │ │ │ │ │ └── sgx_u.without_app.mk │ │ │ │ └── common │ │ │ │ │ ├── Makefile │ │ │ │ │ └── Makefile.without_app │ │ │ └── static_trusted │ │ │ │ ├── Enclave2_minimal.cpp │ │ │ │ └── Enclave2_minimal.edl │ │ │ └── SGXUntrustedModule │ │ │ ├── makefiles │ │ │ ├── c++ │ │ │ │ └── sgx_u.without_app.mk │ │ │ ├── c │ │ │ │ └── sgx_u.without_app.mk │ │ │ └── common │ │ │ │ └── Makefile │ │ │ └── untrusted │ │ │ └── untrusted_module.cpp │ └── sites │ │ └── site.xml ├── clean.sh └── readme.txt ├── Makefile ├── README.md ├── SampleCode ├── Cxx11SGXDemo │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── App │ │ ├── App.cpp │ │ ├── App.h │ │ └── TrustedLibrary │ │ │ └── Libcxx.cpp │ ├── Enclave │ │ ├── Enclave.config.xml │ │ ├── Enclave.cpp │ │ ├── Enclave.edl │ │ ├── Enclave.h │ │ ├── Enclave.lds │ │ ├── Enclave_debug.lds │ │ ├── Enclave_private_test.pem │ │ └── TrustedLibrary │ │ │ ├── Libcxx.cpp │ │ │ └── Libcxx.edl │ ├── Makefile │ └── README.txt ├── LocalAttestation │ ├── App │ │ ├── App.cpp │ │ ├── Makefile │ │ ├── UntrustedEnclaveMessageExchange.cpp │ │ └── UntrustedEnclaveMessageExchange.h │ ├── AppInitiator │ │ ├── App.cpp │ │ ├── Makefile │ │ ├── UntrustedEnclaveMessageExchange.cpp │ │ ├── UntrustedEnclaveMessageExchange.h │ │ └── datatypes.h │ ├── AppResponder │ │ ├── App.cpp │ │ ├── CPServer.cpp │ │ ├── CPServer.h │ │ ├── CPTask.cpp │ │ ├── CPTask.h │ │ ├── Makefile │ │ ├── Queue.h │ │ ├── ReadMe.txt │ │ ├── Thread.cpp │ │ └── Thread.h │ ├── EnclaveInitiator │ │ ├── EnclaveInitiator.config.xml │ │ ├── EnclaveInitiator.cpp │ │ ├── EnclaveInitiator.edl │ │ ├── EnclaveInitiator.lds │ │ ├── EnclaveInitiator_private_test.pem │ │ ├── EnclaveMessageExchange.cpp │ │ ├── EnclaveMessageExchange.h │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── Utility_E1.cpp │ │ ├── Utility_E1.h │ │ └── datatypes.h │ ├── EnclaveResponder │ │ ├── EnclaveMessageExchange.cpp │ │ ├── EnclaveMessageExchange.h │ │ ├── EnclaveResponder.config.xml │ │ ├── EnclaveResponder.cpp │ │ ├── EnclaveResponder.edl │ │ ├── EnclaveResponder.lds │ │ ├── EnclaveResponder_private_test.pem │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── Utility_E2.cpp │ │ ├── Utility_E2.h │ │ └── datatypes.h │ ├── Include │ │ ├── cpdef.h │ │ ├── datatypes.h │ │ ├── dh_session_protocol.h │ │ ├── error_codes.h │ │ └── fifo_def.h │ ├── Makefile │ ├── README.txt │ ├── buildenv.mk │ └── util │ │ └── fifo.cpp ├── PowerTransition │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── App │ │ ├── App.cpp │ │ ├── ErrorSupport.cpp │ │ ├── ErrorSupport.h │ │ ├── rwlock.cpp │ │ └── rwlock.h │ ├── Common │ │ └── types.h │ ├── Enclave │ │ ├── Enclave.config.xml │ │ ├── Enclave.cpp │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ └── Enclave_private_test.pem │ ├── Makefile │ └── README.txt ├── RemoteAttestation │ ├── .cproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Makefile │ ├── README.txt │ ├── isv_app │ │ ├── isv_app.cpp │ │ └── sample_messages.h │ ├── isv_enclave │ │ ├── isv_enclave.config.xml │ │ ├── isv_enclave.cpp │ │ ├── isv_enclave.edl │ │ ├── isv_enclave.lds │ │ └── isv_enclave_private_test.pem │ └── service_provider │ │ ├── ecp.cpp │ │ ├── ecp.h │ │ ├── ias_ra.cpp │ │ ├── ias_ra.h │ │ ├── network_ra.cpp │ │ ├── network_ra.h │ │ ├── remote_attestation_result.h │ │ ├── service_provider.cpp │ │ └── service_provider.h ├── SampleCommonLoader │ ├── App │ │ ├── enclave_entry.S │ │ └── sample.cpp │ ├── Include │ │ ├── enclave_entry.h │ │ ├── linux-regs.h │ │ ├── sgx_enclave_blob.h │ │ └── sgx_enclave_ss.h │ ├── Makefile │ └── README.txt ├── SampleDNNL │ ├── App │ │ └── App.cpp │ ├── Enclave │ │ ├── Enclave.config.xml │ │ ├── Enclave.cpp │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private_test.pem │ │ ├── cnn_inference_f32_c.c │ │ ├── cnn_inference_f32_cpp.cpp │ │ ├── cnn_inference_int8_cpp.cpp │ │ ├── cnn_training_f32_cpp.cpp │ │ ├── cpu_cnn_training_f32_c.c │ │ ├── cpu_rnn_inference_f32_cpp.cpp │ │ ├── cpu_rnn_inference_int8_cpp.cpp │ │ ├── example_utils.h │ │ ├── example_utils.hpp │ │ ├── getting_started.cpp │ │ ├── memory_format_propagation.cpp │ │ └── rnn_training_f32_cpp.cpp │ ├── Makefile │ └── README.txt ├── SampleEnclave │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── App │ │ ├── App.cpp │ │ ├── App.h │ │ ├── Edger8rSyntax │ │ │ ├── Arrays.cpp │ │ │ ├── Functions.cpp │ │ │ ├── Pointers.cpp │ │ │ └── Types.cpp │ │ └── TrustedLibrary │ │ │ ├── Libc.cpp │ │ │ ├── Libcxx.cpp │ │ │ └── Thread.cpp │ ├── Enclave │ │ ├── Edger8rSyntax │ │ │ ├── Arrays.cpp │ │ │ ├── Arrays.edl │ │ │ ├── Functions.cpp │ │ │ ├── Functions.edl │ │ │ ├── Pointers.cpp │ │ │ ├── Pointers.edl │ │ │ ├── Types.cpp │ │ │ └── Types.edl │ │ ├── Enclave.config.xml │ │ ├── Enclave.cpp │ │ ├── Enclave.edl │ │ ├── Enclave.h │ │ ├── Enclave.lds │ │ ├── Enclave_private_test.pem │ │ ├── TrustedLibrary │ │ │ ├── Libc.cpp │ │ │ ├── Libc.edl │ │ │ ├── Libcxx.cpp │ │ │ ├── Libcxx.edl │ │ │ ├── Thread.cpp │ │ │ └── Thread.edl │ │ ├── config.01.xml │ │ ├── config.02.xml │ │ ├── config.03.xml │ │ ├── config.04.xml │ │ └── policy_sef.cpp │ ├── Include │ │ └── user_types.h │ ├── Makefile │ └── README.txt ├── SampleEnclavePCL │ ├── App │ │ ├── App.cpp │ │ ├── App.h │ │ ├── Edger8rSyntax │ │ │ ├── Arrays.cpp │ │ │ ├── Functions.cpp │ │ │ ├── Pointers.cpp │ │ │ └── Types.cpp │ │ └── TrustedLibrary │ │ │ ├── Libc.cpp │ │ │ ├── Libcxx.cpp │ │ │ └── Thread.cpp │ ├── Enclave │ │ ├── Edger8rSyntax │ │ │ ├── Arrays.cpp │ │ │ ├── Arrays.edl │ │ │ ├── Functions.cpp │ │ │ ├── Functions.edl │ │ │ ├── Pointers.cpp │ │ │ ├── Pointers.edl │ │ │ ├── Types.cpp │ │ │ └── Types.edl │ │ ├── Enclave.config.xml │ │ ├── Enclave.cpp │ │ ├── Enclave.edl │ │ ├── Enclave.h │ │ ├── Enclave.lds │ │ ├── Enclave_private_test.pem │ │ └── TrustedLibrary │ │ │ ├── Libc.cpp │ │ │ ├── Libc.edl │ │ │ ├── Libcxx.cpp │ │ │ ├── Libcxx.edl │ │ │ ├── Thread.cpp │ │ │ └── Thread.edl │ ├── Include │ │ └── user_types.h │ ├── Makefile │ ├── README.md │ ├── Seal │ │ ├── Seal.config.xml │ │ ├── Seal.cpp │ │ ├── Seal.edl │ │ ├── Seal.lds │ │ └── Seal_private_test.pem │ └── debug_mock_key.bin ├── SealUnseal │ ├── App │ │ ├── App.cpp │ │ ├── ErrorSupport.cpp │ │ └── ErrorSupport.h │ ├── Enclave_Seal │ │ ├── Enclave_Seal.config.xml │ │ ├── Enclave_Seal.cpp │ │ ├── Enclave_Seal.edl │ │ ├── Enclave_Seal.lds │ │ └── Enclave_private_test.pem │ ├── Enclave_Unseal │ │ ├── Enclave_Unseal.config.xml │ │ ├── Enclave_Unseal.cpp │ │ ├── Enclave_Unseal.edl │ │ └── Enclave_Unseal.lds │ ├── Makefile │ └── README.txt └── Switchless │ ├── .gitignore │ ├── App │ ├── App.cpp │ └── App.h │ ├── Enclave │ ├── Enclave.config.xml │ ├── Enclave.cpp │ ├── Enclave.edl │ ├── Enclave.h │ ├── Enclave.lds │ └── Enclave_private_test.pem │ ├── Makefile │ └── README.txt ├── common ├── buildenv.mk ├── inc │ ├── check_point.h │ ├── check_point.hpp │ ├── internal │ │ ├── ae_ipp.h │ │ ├── arch.h │ │ ├── cpprt_internal.h │ │ ├── cpputil.h │ │ ├── cpuid.h │ │ ├── crypto_wrapper.h │ │ ├── dh.h │ │ ├── driver_api.h │ │ ├── ecp_interface.h │ │ ├── elf_util.h │ │ ├── elfheader │ │ │ ├── README.txt │ │ │ ├── elf_common.h │ │ │ └── elfstructs.h │ │ ├── enclave_creator.h │ │ ├── global_data.h │ │ ├── global_init.h │ │ ├── inst.h │ │ ├── ipp_wrapper.h │ │ ├── linux │ │ │ ├── cpuid_gnu.h │ │ │ ├── linux-regs.h │ │ │ └── sgx_cet.h │ │ ├── metadata.h │ │ ├── oal │ │ │ └── uae_oal_api.h │ │ ├── pcl_common.h │ │ ├── routine.h │ │ ├── rts.h │ │ ├── rts_cmd.h │ │ ├── se_atomic.h │ │ ├── se_cdefs.h │ │ ├── se_cpu_feature.h │ │ ├── se_cpu_feature_defs.h │ │ ├── se_cpu_feature_defs_ext.h │ │ ├── se_debugger_lib.h │ │ ├── se_enclave_type.h │ │ ├── se_error_internal.h │ │ ├── se_event.h │ │ ├── se_lock.hpp │ │ ├── se_macro.h │ │ ├── se_map.h │ │ ├── se_memcpy.h │ │ ├── se_memory.h │ │ ├── se_page_attr.h │ │ ├── se_quote_internal.h │ │ ├── se_rwlock.h │ │ ├── se_stdio.h │ │ ├── se_string.h │ │ ├── se_tcrypto_common.h │ │ ├── se_thread.h │ │ ├── se_time.h │ │ ├── se_trace.h │ │ ├── se_types.h │ │ ├── se_vendor.h │ │ ├── se_version.h │ │ ├── se_wrapper.h │ │ ├── sgx_ecc256_internal.h │ │ ├── sgx_memset_s.h │ │ ├── sgx_profile.h │ │ ├── sgx_read_rand.h │ │ ├── sgx_sha256_128.h │ │ ├── sgx_switchless_itf.h │ │ ├── ssl_wrapper.h │ │ ├── thread_data.h │ │ ├── trts_inst.h │ │ ├── tseal_migration_attr.h │ │ ├── uae_service_internal.h │ │ ├── uncopyable.h │ │ ├── util.h │ │ └── xsave.h │ ├── sgx.h │ ├── sgx_attributes.h │ ├── sgx_capable.h │ ├── sgx_cpuid.h │ ├── sgx_defs.h │ ├── sgx_dh.h │ ├── sgx_ecp_types.h │ ├── sgx_edger8r.h │ ├── sgx_eid.h │ ├── sgx_error.h │ ├── sgx_intrin.h │ ├── sgx_key.h │ ├── sgx_key_exchange.h │ ├── sgx_lfence.h │ ├── sgx_pcl_guid.h │ ├── sgx_printf_dbg.edl │ ├── sgx_pthread.edl │ ├── sgx_quote.h │ ├── sgx_random_buffers.h │ ├── sgx_report.h │ ├── sgx_rsrv_mem_mngr.h │ ├── sgx_secure_align.h │ ├── sgx_secure_align_api.h │ ├── sgx_spinlock.h │ ├── sgx_tcrypto.h │ ├── sgx_thread.h │ ├── sgx_tkey_exchange.edl │ ├── sgx_tkey_exchange.h │ ├── sgx_tprotected_fs.edl │ ├── sgx_tprotected_fs.h │ ├── sgx_trts.h │ ├── sgx_trts_exception.h │ ├── sgx_tseal.h │ ├── sgx_tstdc.edl │ ├── sgx_tswitchless.edl │ ├── sgx_uae_epid.h │ ├── sgx_uae_launch.h │ ├── sgx_uae_quote_ex.h │ ├── sgx_uae_service.h │ ├── sgx_ukey_exchange.h │ ├── sgx_urts.h │ ├── sgx_uswitchless.h │ ├── sgx_utils.h │ ├── stdc++ │ │ ├── exception │ │ ├── linux │ │ │ ├── exception │ │ │ └── typeinfo │ │ ├── new │ │ └── typeinfo │ └── tlibc │ │ ├── assert.h │ │ ├── complex.h │ │ ├── ctype.h │ │ ├── endian.h │ │ ├── errno.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── limits.h │ │ ├── math.h │ │ ├── mbusafecrt.h │ │ ├── printf_dbg.h │ │ ├── pthread.h │ │ ├── setjmp.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── sys │ │ ├── _types.h │ │ ├── cdefs.h │ │ ├── endian.h │ │ ├── fpu.h │ │ ├── ieee.h │ │ ├── limits.h │ │ ├── stdint.h │ │ └── types.h │ │ ├── time.h │ │ ├── unistd.h │ │ ├── wchar.h │ │ └── wctype.h ├── se_wrapper │ └── Makefile ├── se_wrapper_psw │ └── Makefile └── src │ ├── crypto_cmac_128.cpp │ ├── crypto_evp_digest.cpp │ ├── dh.cpp │ ├── ecp.cpp │ ├── linux │ └── xsave_gnu.S │ ├── se_event.c │ ├── se_map.c │ ├── se_memory.c │ ├── se_rwlock.c │ ├── se_thread.c │ ├── se_time.c │ ├── se_trace.c │ ├── sgx_memset_s.cpp │ ├── sgx_profile.cpp │ ├── sgx_read_rand.cpp │ └── sgx_sha256_128.cpp ├── docker └── build │ ├── Dockerfile │ ├── README.md │ ├── build_and_run_aesm_docker.sh │ ├── build_and_run_sample_docker.sh │ ├── build_compose_run.sh │ └── docker-compose.yml ├── download_prebuilt.sh ├── external ├── CppMicroServices │ ├── .clang-format │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── CODE_OF_CONDUCT.rst │ ├── CONTRIBUTING.rst │ ├── COPYRIGHT │ ├── CTestConfig.cmake │ ├── CppMicroServicesConfig.cmake.in │ ├── CppMicroServicesConfigVersion.cmake.in │ ├── LICENSE │ ├── README.rst │ ├── VERSION │ ├── appveyor.yml │ ├── cmake │ │ ├── BundleInit.cpp │ │ ├── CMakeResourceDependencies.cpp │ │ ├── Export.h.in │ │ ├── GlobalConfig.h.in │ │ ├── cppmicroservices_resources.rc.in │ │ ├── try_compile │ │ │ ├── us_have_regex.cpp │ │ │ └── us_have_thread_local.cpp │ │ ├── usBundleConfig.cmake.in │ │ ├── usBundleConfigVersion.cmake.in │ │ ├── usCTestScript.cmake │ │ ├── usCTestScript_custom.cmake │ │ ├── usCTestScript_travis.cmake │ │ ├── usFunctionAddResources.cmake │ │ ├── usFunctionCheckCompilerFlags.cmake │ │ ├── usFunctionCheckResourceLinking.cmake │ │ ├── usFunctionCompileSnippets.cmake │ │ ├── usFunctionCreateTestBundle.cmake │ │ ├── usFunctionEmbedResources.cmake │ │ ├── usFunctionGenerateBundleInit.cmake │ │ ├── usFunctionGetResourceSource.cmake │ │ └── usMacroCreateBundle.cmake │ ├── codecov.yml │ ├── conf.py │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── _static │ │ │ └── css │ │ │ │ └── custom.css │ │ ├── _templates │ │ │ └── layout.html │ │ ├── cmake.py │ │ ├── doxygen-breathe.conf │ │ ├── man │ │ │ ├── cppmicroservices-framework.3.rst │ │ │ ├── cppmicroservices-httpservice.3.rst │ │ │ ├── cppmicroservices-httpservice.7.rst │ │ │ ├── cppmicroservices-shellservice.3.rst │ │ │ ├── cppmicroservices-shellservice.7.rst │ │ │ ├── cppmicroservices-webconsole.3.rst │ │ │ ├── cppmicroservices-webconsole.7.rst │ │ │ ├── cppmicroservices.3.rst │ │ │ ├── cppmicroservices.7.rst │ │ │ ├── usResourceCompiler3.1.rst │ │ │ └── usShell3.1.rst │ │ ├── requirements.txt │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── best_practices │ │ │ └── emulate_singleton.rst │ │ │ ├── build_instructions.rst │ │ │ ├── examples │ │ │ ├── getting_started │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── service_time │ │ │ │ │ ├── ServiceTime.cpp │ │ │ │ │ └── ServiceTime.h │ │ │ │ ├── service_time_consumer │ │ │ │ │ ├── ServiceTimeConsumer.cpp │ │ │ │ │ └── manifest.json │ │ │ │ └── service_time_systemclock │ │ │ │ │ ├── ServiceTimeImpl.cpp │ │ │ │ │ └── manifest.json │ │ │ └── makefile │ │ │ │ ├── IDictionaryService.cpp │ │ │ │ ├── IDictionaryService.h │ │ │ │ ├── Makefile │ │ │ │ ├── bundle.cpp │ │ │ │ ├── main.cpp │ │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── getting_started.rst │ │ │ ├── legal.rst │ │ │ └── tutorial │ │ │ ├── Example1.rst │ │ │ ├── Example2.rst │ │ │ ├── Example2b.rst │ │ │ ├── Example3.rst │ │ │ ├── Example4.rst │ │ │ ├── Example5.rst │ │ │ ├── Example6.rst │ │ │ ├── Example7.rst │ │ │ ├── dictionaryclient │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── dictionaryclient2 │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── dictionaryclient3 │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── dictionaryservice │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── IDictionaryService.cpp │ │ │ ├── IDictionaryService.h │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── driver │ │ │ ├── CMakeLists.txt │ │ │ ├── CppMicroServicesExamplesDriverConfig.h.in │ │ │ └── main.cpp │ │ │ ├── eventlistener │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── frenchdictionary │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── index.rst │ │ │ ├── spellcheckclient │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ └── spellcheckservice │ │ │ ├── Activator.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ISpellCheckService.cpp │ │ │ ├── ISpellCheckService.h │ │ │ └── resources │ │ │ └── manifest.json │ ├── fixcoveragefilepaths.py │ ├── format_code.sh │ ├── framework │ │ ├── CMakeLists.txt │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ ├── api │ │ │ │ ├── macros.rst │ │ │ │ ├── main │ │ │ │ │ ├── Bundle.rst │ │ │ │ │ ├── BundleActivator.rst │ │ │ │ │ ├── BundleContext.rst │ │ │ │ │ ├── BundleEvent.rst │ │ │ │ │ ├── BundleEventHook.rst │ │ │ │ │ ├── BundleFindHook.rst │ │ │ │ │ ├── BundleResource.rst │ │ │ │ │ ├── BundleResourceStream.rst │ │ │ │ │ ├── Framework.rst │ │ │ │ │ ├── FrameworkEvent.rst │ │ │ │ │ ├── PrototypeServiceFactory.rst │ │ │ │ │ ├── ServiceEvent.rst │ │ │ │ │ ├── ServiceEventListenerHook.rst │ │ │ │ │ ├── ServiceException.rst │ │ │ │ │ ├── ServiceFactory.rst │ │ │ │ │ ├── ServiceFindHook.rst │ │ │ │ │ ├── ServiceInterface.rst │ │ │ │ │ ├── ServiceListenerHook.rst │ │ │ │ │ ├── ServiceObjects.rst │ │ │ │ │ ├── ServiceReference.rst │ │ │ │ │ ├── ServiceRegistration.rst │ │ │ │ │ └── ServiceTracker.rst │ │ │ │ └── util │ │ │ │ │ ├── Any.rst │ │ │ │ │ ├── AnyMap.rst │ │ │ │ │ ├── BundleVersion.rst │ │ │ │ │ ├── Constants.rst │ │ │ │ │ ├── FrameworkFactory.rst │ │ │ │ │ ├── GetBundleContext.rst │ │ │ │ │ ├── LDAPFilter.rst │ │ │ │ │ ├── Listeners.rst │ │ │ │ │ ├── SharedData.rst │ │ │ │ │ ├── SharedLibrary.rst │ │ │ │ │ ├── ShrinkableMap.rst │ │ │ │ │ └── ShrinkableVector.rst │ │ │ ├── bundle_properties.rst │ │ │ ├── resources.rst │ │ │ ├── service_hooks.rst │ │ │ ├── snippets │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── uServices-activator │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-bundlecontext │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-registration │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-resources-cmake │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CMakeLists_example.txt │ │ │ │ │ ├── hello.txt │ │ │ │ │ └── mybundle.cpp │ │ │ │ ├── uServices-resources │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-servicelistenerhook │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-servicetracker │ │ │ │ │ └── main.cpp │ │ │ │ ├── uServices-singleton │ │ │ │ │ ├── SingletonOne.cpp │ │ │ │ │ ├── SingletonOne.h │ │ │ │ │ ├── SingletonTwo.cpp │ │ │ │ │ ├── SingletonTwo.h │ │ │ │ │ ├── files.cmake │ │ │ │ │ └── main.cpp │ │ │ │ └── uServices-staticbundles │ │ │ │ │ ├── MyStaticBundle.cpp │ │ │ │ │ ├── files.cmake │ │ │ │ │ └── main.cpp │ │ │ └── static_bundles.rst │ │ ├── include │ │ │ ├── CMakeLists.txt │ │ │ ├── FrameworkConfig.h.in │ │ │ └── cppmicroservices │ │ │ │ ├── Any.h │ │ │ │ ├── AnyMap.h │ │ │ │ ├── Bundle.h │ │ │ │ ├── BundleActivator.h │ │ │ │ ├── BundleContext.h │ │ │ │ ├── BundleEvent.h │ │ │ │ ├── BundleEventHook.h │ │ │ │ ├── BundleFindHook.h │ │ │ │ ├── BundleImport.h │ │ │ │ ├── BundleInitialization.h │ │ │ │ ├── BundleResource.h │ │ │ │ ├── BundleResourceStream.h │ │ │ │ ├── BundleVersion.h │ │ │ │ ├── Constants.h │ │ │ │ ├── Framework.h │ │ │ │ ├── FrameworkEvent.h │ │ │ │ ├── FrameworkFactory.h │ │ │ │ ├── GetBundleContext.h │ │ │ │ ├── LDAPFilter.h │ │ │ │ ├── LDAPProp.h │ │ │ │ ├── ListenerFunctors.h │ │ │ │ ├── ListenerToken.h │ │ │ │ ├── PrototypeServiceFactory.h │ │ │ │ ├── ServiceEvent.h │ │ │ │ ├── ServiceEventListenerHook.h │ │ │ │ ├── ServiceException.h │ │ │ │ ├── ServiceFactory.h │ │ │ │ ├── ServiceFindHook.h │ │ │ │ ├── ServiceInterface.h │ │ │ │ ├── ServiceListenerHook.h │ │ │ │ ├── ServiceObjects.h │ │ │ │ ├── ServiceProperties.h │ │ │ │ ├── ServiceReference.h │ │ │ │ ├── ServiceReferenceBase.h │ │ │ │ ├── ServiceRegistration.h │ │ │ │ ├── ServiceRegistrationBase.h │ │ │ │ ├── ServiceTracker.h │ │ │ │ ├── ServiceTrackerCustomizer.h │ │ │ │ ├── SharedData.h │ │ │ │ ├── SharedLibrary.h │ │ │ │ ├── ShrinkableMap.h │ │ │ │ ├── ShrinkableVector.h │ │ │ │ └── detail │ │ │ │ ├── BundleAbstractTracked.h │ │ │ │ ├── BundleAbstractTracked.tpp │ │ │ │ ├── BundleResourceBuffer.h │ │ │ │ ├── Log.h │ │ │ │ ├── ServiceTracker.tpp │ │ │ │ ├── ServiceTrackerPrivate.h │ │ │ │ ├── ServiceTrackerPrivate.tpp │ │ │ │ ├── Threads.h │ │ │ │ ├── TrackedService.h │ │ │ │ ├── TrackedService.tpp │ │ │ │ ├── TrackedServiceListener.h │ │ │ │ └── WaitCondition.h │ │ ├── resources │ │ │ └── manifest.json.in │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── bundle │ │ │ │ ├── Bundle.cpp │ │ │ │ ├── BundleArchive.cpp │ │ │ │ ├── BundleArchive.h │ │ │ │ ├── BundleContext.cpp │ │ │ │ ├── BundleContextPrivate.cpp │ │ │ │ ├── BundleContextPrivate.h │ │ │ │ ├── BundleElfFile.cpp │ │ │ │ ├── BundleEvent.cpp │ │ │ │ ├── BundleEventHook.cpp │ │ │ │ ├── BundleEventInternal.h │ │ │ │ ├── BundleFindHook.cpp │ │ │ │ ├── BundleHooks.cpp │ │ │ │ ├── BundleHooks.h │ │ │ │ ├── BundleMachOFile.cpp │ │ │ │ ├── BundleManifest.cpp │ │ │ │ ├── BundleManifest.h │ │ │ │ ├── BundleObjFile.cpp │ │ │ │ ├── BundleObjFile.h │ │ │ │ ├── BundlePEFile.cpp │ │ │ │ ├── BundlePrivate.cpp │ │ │ │ ├── BundlePrivate.h │ │ │ │ ├── BundleRegistry.cpp │ │ │ │ ├── BundleRegistry.h │ │ │ │ ├── BundleResource.cpp │ │ │ │ ├── BundleResourceBuffer.cpp │ │ │ │ ├── BundleResourceContainer.cpp │ │ │ │ ├── BundleResourceContainer.h │ │ │ │ ├── BundleResourceStream.cpp │ │ │ │ ├── BundleStorage.h │ │ │ │ ├── BundleStorageFile.cpp │ │ │ │ ├── BundleStorageFile.h │ │ │ │ ├── BundleStorageMemory.cpp │ │ │ │ ├── BundleStorageMemory.h │ │ │ │ ├── BundleThread.cpp │ │ │ │ ├── BundleThread.h │ │ │ │ ├── BundleUtils.cpp │ │ │ │ ├── BundleUtils.h │ │ │ │ ├── BundleVersion.cpp │ │ │ │ ├── Constants.cpp │ │ │ │ ├── CoreBundleContext.cpp │ │ │ │ ├── CoreBundleContext.h │ │ │ │ ├── Debug.cpp │ │ │ │ ├── Debug.h │ │ │ │ ├── Fragment.h │ │ │ │ └── Resolver.h │ │ │ ├── service │ │ │ │ ├── ListenerToken.cpp │ │ │ │ ├── ServiceEvent.cpp │ │ │ │ ├── ServiceEventListenerHook.cpp │ │ │ │ ├── ServiceException.cpp │ │ │ │ ├── ServiceFindHook.cpp │ │ │ │ ├── ServiceHooks.cpp │ │ │ │ ├── ServiceHooks.h │ │ │ │ ├── ServiceListenerEntry.cpp │ │ │ │ ├── ServiceListenerEntry.h │ │ │ │ ├── ServiceListenerHook.cpp │ │ │ │ ├── ServiceListenerHookPrivate.h │ │ │ │ ├── ServiceListeners.cpp │ │ │ │ ├── ServiceListeners.h │ │ │ │ ├── ServiceObjects.cpp │ │ │ │ ├── ServiceReferenceBase.cpp │ │ │ │ ├── ServiceReferenceBasePrivate.cpp │ │ │ │ ├── ServiceReferenceBasePrivate.h │ │ │ │ ├── ServiceRegistrationBase.cpp │ │ │ │ ├── ServiceRegistrationBasePrivate.cpp │ │ │ │ ├── ServiceRegistrationBasePrivate.h │ │ │ │ ├── ServiceRegistry.cpp │ │ │ │ └── ServiceRegistry.h │ │ │ └── util │ │ │ │ ├── Any.cpp │ │ │ │ ├── AnyMap.cpp │ │ │ │ ├── Framework.cpp │ │ │ │ ├── FrameworkEvent.cpp │ │ │ │ ├── FrameworkFactory.cpp │ │ │ │ ├── FrameworkPrivate.cpp │ │ │ │ ├── FrameworkPrivate.h │ │ │ │ ├── LDAPExpr.cpp │ │ │ │ ├── LDAPExpr.h │ │ │ │ ├── LDAPFilter.cpp │ │ │ │ ├── LDAPProp.cpp │ │ │ │ ├── Properties.cpp │ │ │ │ ├── Properties.h │ │ │ │ ├── SharedLibrary.cpp │ │ │ │ ├── Utils.cpp │ │ │ │ └── Utils.h │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── bundles │ │ │ ├── CMakeLists.txt │ │ │ ├── libA │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleA.cpp │ │ │ │ ├── TestBundleAService.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libA2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleA2.cpp │ │ │ │ ├── TestBundleA2Service.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libADuplicate │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleA.cpp │ │ │ │ ├── TestBundleAService.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBA_00 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBA_01 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleBA_01.cpp │ │ │ │ ├── TestBundleBA_01Service.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBA_10 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBA_S1 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleBA_S1.cpp │ │ │ │ ├── TestBundleBA_S1Service.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBA_X1 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleBA_X1.cpp │ │ │ │ ├── TestBundleBA_X1Service.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libBWithStatic │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleB.cpp │ │ │ │ ├── TestBundleBService.h │ │ │ │ ├── TestBundleImportedByB.cpp │ │ │ │ ├── resources │ │ │ │ │ ├── dynamic.txt │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── res.txt │ │ │ │ └── resources_static │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── res.txt │ │ │ │ │ └── static.txt │ │ │ ├── libC1 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleC1.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libH │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleH.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libLQ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleLQ.cpp │ │ │ │ ├── TestBundleLQService.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libM │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleM.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libMWithEmptyBundleName │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleM.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libMWithInvalidVersion │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleM.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libMWithInvalidVersionType │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleM.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libMWithoutBundleName │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleM.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libRWithAppendedResources │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── manifest.json │ │ │ ├── libRWithLinkedResources │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── manifest.json │ │ │ ├── libRWithResources │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ ├── icons │ │ │ │ │ ├── compressable.bmp │ │ │ │ │ ├── cppmicroservices.png │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── special_chars.dummy.txt │ │ │ │ │ └── test.xml │ │ │ ├── libS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleS.cpp │ │ │ │ ├── TestBundleSService0.h │ │ │ │ ├── TestBundleSService1.h │ │ │ │ ├── TestBundleSService2.h │ │ │ │ ├── TestBundleSService3.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libSL1 │ │ │ │ ├── ActivatorSL1.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FooService.h │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libSL3 │ │ │ │ ├── ActivatorSL3.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libSL4 │ │ │ │ ├── ActivatorSL4.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libStartFail │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleF.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libStopFail │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleF.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libU │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleU.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ ├── libWaitOnBundleOperation │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleWaitOnOperation.cpp │ │ │ │ └── resources │ │ │ │ │ └── manifest.json │ │ │ └── libWithNonStandardExt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TestBundleExt.cpp │ │ │ │ └── resources │ │ │ │ └── manifest.json │ │ │ ├── driver │ │ │ ├── AnyMapTest.cpp │ │ │ ├── AnyTest.cpp │ │ │ ├── BundleActivatorTest.cpp │ │ │ ├── BundleEventTest.cpp │ │ │ ├── BundleHooksTest.cpp │ │ │ ├── BundleManifestTest.cpp │ │ │ ├── BundlePropsInterface.h │ │ │ ├── BundleRegistryPerformanceTest.cpp │ │ │ ├── BundleResourceTest.cpp │ │ │ ├── BundleTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ConcurrencyTest.cpp │ │ │ ├── FrameworkEventTest.cpp │ │ │ ├── FrameworkFactoryTest.cpp │ │ │ ├── FrameworkListenerTest.cpp │ │ │ ├── HelgrindTest.cpp │ │ │ ├── LDAPFilterTest.cpp │ │ │ ├── LDAPQueryTest.cpp │ │ │ ├── LogTest.cpp │ │ │ ├── MemcheckTest.cpp │ │ │ ├── MultipleListenersTest.cpp │ │ │ ├── ResourceCompilerTest.cpp │ │ │ ├── ServiceControlInterface.h │ │ │ ├── ServiceFactoryTest.cpp │ │ │ ├── ServiceHooksTest.cpp │ │ │ ├── ServiceListenerTest.cpp │ │ │ ├── ServiceRegistryPerformanceTest.cpp │ │ │ ├── ServiceRegistryTest.cpp │ │ │ ├── ServiceTemplateTest.cpp │ │ │ ├── ServiceTrackerTest.cpp │ │ │ ├── SharedLibraryTest.cpp │ │ │ ├── ShrinkableMapTest.cpp │ │ │ ├── ShrinkableVectorTest.cpp │ │ │ ├── StaticBundleResourceTest.cpp │ │ │ ├── StaticBundleTest.cpp │ │ │ ├── TestDriverActivator.cpp │ │ │ ├── TestDriverActivator.h │ │ │ ├── TestManager.cpp │ │ │ ├── TestManager.h │ │ │ ├── TestResource.txt │ │ │ ├── TestUtilListenerHelpers.h │ │ │ ├── TestingConfig.h.in │ │ │ ├── TestingMacros.h │ │ │ ├── ZipFile.h │ │ │ └── manifest.json │ │ │ ├── gtest │ │ │ ├── AnyMapTest.cpp │ │ │ ├── BundleVersionTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── FrameworkTest.cpp │ │ │ ├── GlobalServiceTrackerTest.cpp │ │ │ ├── LDAPExprTest.cpp │ │ │ ├── LDAPFilterTest.cpp │ │ │ ├── OpenFileHandleTest.cpp │ │ │ ├── ServiceExceptionTest.cpp │ │ │ ├── ServiceObjectsTest.cpp │ │ │ ├── ServiceReferenceTest.cpp │ │ │ ├── UtilsTest.cpp │ │ │ ├── main.cpp │ │ │ └── manifest.json │ │ │ └── util │ │ │ ├── ImportTestBundles.cpp │ │ │ ├── TestUtilBundleListener.cpp │ │ │ ├── TestUtilBundleListener.h │ │ │ ├── TestUtilFrameworkListener.cpp │ │ │ ├── TestUtilFrameworkListener.h │ │ │ ├── TestUtils.cpp │ │ │ └── TestUtils.h │ ├── index.rst │ ├── install_cmake.sh │ ├── opencppcoverage_mergereports.bat │ ├── revision_info.txt │ ├── third_party │ │ ├── README │ │ ├── cppmicroservices_elf.h │ │ ├── cppmicroservices_mach-o.h │ │ ├── cppmicroservices_pe.h │ │ ├── dirent_win32.h │ │ ├── json │ │ │ ├── json-forwards.h │ │ │ └── json.h │ │ ├── jsoncpp.cpp │ │ ├── libtelnet.c │ │ ├── libtelnet.h │ │ ├── linenoise.c │ │ ├── linenoise.h │ │ ├── miniz.c │ │ ├── miniz.h │ │ ├── optionparser.h │ │ ├── patches │ │ │ ├── civetweb_v1.8.patch │ │ │ ├── dirent_v1.20.1.patch │ │ │ ├── googletest_1.8.0.patch │ │ │ ├── jsoncpp_0.10.6.patch │ │ │ ├── linenoise_0f2343d2.patch │ │ │ ├── miniz_v115_r4.patch │ │ │ ├── mustache_2.0.patch │ │ │ ├── optionparser_1.7.patch │ │ │ └── tinyscheme_v1.41.patch │ │ └── tinyscheme │ │ │ ├── BUILDING │ │ │ ├── COPYING │ │ │ ├── Manual.txt │ │ │ ├── MiniSCHEMETribute.txt │ │ │ ├── dynload.c │ │ │ ├── dynload.h │ │ │ ├── hack.txt │ │ │ ├── init.scm │ │ │ ├── opdefines.h │ │ │ ├── scheme-private.h │ │ │ ├── scheme.c │ │ │ └── scheme.h │ ├── tools │ │ └── rc │ │ │ ├── CMakeLists.txt │ │ │ └── ResourceCompiler.cpp │ ├── util │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── cppmicroservices │ │ │ │ └── util │ │ │ │ ├── Error.h │ │ │ │ ├── FileSystem.h │ │ │ │ └── String.h │ │ └── src │ │ │ ├── Error.cpp │ │ │ ├── FileSystem.cpp │ │ │ └── String.cpp │ ├── valgrind_suppressions.txt │ └── valgrindrc ├── dnnl │ ├── Makefile │ ├── README │ └── sgx_dnnl.patch ├── epid-sdk │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile.in │ ├── NOTICE.txt │ ├── README.md │ ├── SConstruct │ ├── configure │ ├── epid │ │ ├── common-testhelper │ │ │ ├── 1.1 │ │ │ │ ├── epid_params-testhelper.cc │ │ │ │ ├── epid_params-testhelper.h │ │ │ │ ├── testdata │ │ │ │ │ ├── grp01 │ │ │ │ │ │ └── member0 │ │ │ │ │ │ │ └── sig_bsn0_msg_0_255_sha256.inc │ │ │ │ │ ├── grp_x │ │ │ │ │ │ ├── corrupted_privrl.inc │ │ │ │ │ │ ├── epid_grpcrt.inc │ │ │ │ │ │ ├── member0 │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0.inc │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_single_entry.inc │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_three_entry.inc │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg1.inc │ │ │ │ │ │ │ ├── sig_sha256_bsn1_msg0.inc │ │ │ │ │ │ │ ├── sig_sha256_rndbase_msg0.inc │ │ │ │ │ │ │ └── sig_sha256_rndbase_msg1.inc │ │ │ │ │ │ ├── member1 │ │ │ │ │ │ │ └── sig_sha256_bsn0_msg0.inc │ │ │ │ │ │ ├── privrevoked │ │ │ │ │ │ │ └── signatures │ │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_revkey000.inc │ │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_revkey001.inc │ │ │ │ │ │ │ │ └── sig_sha256_bsn0_msg0_revkey002.inc │ │ │ │ │ │ ├── privrl.inc │ │ │ │ │ │ ├── privrl_single_entry.inc │ │ │ │ │ │ ├── sig_sha256_bsnrnd_msg0.inc │ │ │ │ │ │ ├── sigrl_member0_sig_bsn0_msg0_revoked_first_entry.inc │ │ │ │ │ │ ├── sigrl_member0_sig_bsn0_msg0_revoked_last_entry.inc │ │ │ │ │ │ ├── sigrl_member0_sig_bsn0_msg0_revoked_middle_entry.inc │ │ │ │ │ │ └── sigrl_member0_sig_bsn0_msg0_revoked_single_entry.inc │ │ │ │ │ ├── grprl_revoked_grp_x_first_entry.inc │ │ │ │ │ ├── grprl_revoked_grp_x_last_entry.inc │ │ │ │ │ ├── grprl_revoked_grp_x_middle_entry.inc │ │ │ │ │ └── grprl_revoked_grp_x_single_entry.inc │ │ │ │ ├── verifier_wrapper-testhelper.cc │ │ │ │ └── verifier_wrapper-testhelper.h │ │ │ ├── Makefile │ │ │ ├── bignum_wrapper-testhelper.cc │ │ │ ├── bignum_wrapper-testhelper.h │ │ │ ├── common-testhelper.parts │ │ │ ├── ecgroup_wrapper-testhelper.cc │ │ │ ├── ecgroup_wrapper-testhelper.h │ │ │ ├── ecpoint_wrapper-testhelper.cc │ │ │ ├── ecpoint_wrapper-testhelper.h │ │ │ ├── epid2params_wrapper-testhelper.cc │ │ │ ├── epid2params_wrapper-testhelper.h │ │ │ ├── epid_gtest-testhelper.cc │ │ │ ├── epid_gtest-testhelper.h │ │ │ ├── epid_params-testhelper.cc │ │ │ ├── epid_params-testhelper.h │ │ │ ├── errors-testhelper.h │ │ │ ├── ffelement_wrapper-testhelper.cc │ │ │ ├── ffelement_wrapper-testhelper.h │ │ │ ├── finite_field_wrapper-testhelper.cc │ │ │ ├── finite_field_wrapper-testhelper.h │ │ │ ├── mem_params-testhelper.cc │ │ │ ├── mem_params-testhelper.h │ │ │ ├── member_wrapper-testhelper.cc │ │ │ ├── member_wrapper-testhelper.h │ │ │ ├── octstr-testhelper.cc │ │ │ ├── octstr-testhelper.h │ │ │ ├── prng-testhelper.h │ │ │ ├── testapp-testhelper.cc │ │ │ ├── testapp-testhelper.h │ │ │ ├── testdata │ │ │ │ ├── grp01 │ │ │ │ │ ├── gpubkey.inc │ │ │ │ │ ├── member0 │ │ │ │ │ │ ├── sig_bsn0_msg_0_255_sha512.inc │ │ │ │ │ │ ├── sig_test0_sha256_sigrl.inc │ │ │ │ │ │ ├── sig_test0_sha384_sigrl.inc │ │ │ │ │ │ ├── sig_test0_sha512_sigrl.inc │ │ │ │ │ │ ├── sig_test1.inc │ │ │ │ │ │ ├── sig_test1_basename1_sha256.inc │ │ │ │ │ │ ├── sig_test1_sha256.inc │ │ │ │ │ │ ├── sig_test1_sha384.inc │ │ │ │ │ │ └── sig_test1_sha512.inc │ │ │ │ │ ├── privrl.inc │ │ │ │ │ ├── sigrl.inc │ │ │ │ │ └── verrl.inc │ │ │ │ ├── grp_x │ │ │ │ │ ├── cmember9 │ │ │ │ │ │ ├── cmpprivkey.inc │ │ │ │ │ │ └── mprivkey.inc │ │ │ │ │ ├── corrupted_privrl.inc │ │ │ │ │ ├── iprivkey.inc │ │ │ │ │ ├── member0 │ │ │ │ │ │ ├── mprivkey.inc │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0.inc │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_rl_singleentry.inc │ │ │ │ │ │ ├── sig_sha256_bsn0_msg1.inc │ │ │ │ │ │ ├── sig_sha256_bsn1_msg0.inc │ │ │ │ │ │ ├── sig_sha256_rndbase_msg0.inc │ │ │ │ │ │ ├── sig_sha256_rndbase_msg1.inc │ │ │ │ │ │ ├── sig_sha384_bsn0_msg0.inc │ │ │ │ │ │ ├── sig_sha384_rndbase_msg0.inc │ │ │ │ │ │ ├── sig_sha512_256_bsn0_msg0.inc │ │ │ │ │ │ ├── sig_sha512_256_rndbase_msg0.inc │ │ │ │ │ │ ├── sig_sha512_256_rndbase_msg0_no_sigrl.inc │ │ │ │ │ │ ├── sig_sha512_bsn0_msg0.inc │ │ │ │ │ │ ├── sig_sha512_huge_bsn_msg0.inc │ │ │ │ │ │ └── sig_sha512_rndbase_msg0.inc │ │ │ │ │ ├── member1 │ │ │ │ │ │ ├── mprivkey.inc │ │ │ │ │ │ └── sig_sha256_bsn0_msg0.inc │ │ │ │ │ ├── privrevoked │ │ │ │ │ │ ├── mprivatekey000.inc │ │ │ │ │ │ ├── mprivatekey001.inc │ │ │ │ │ │ ├── mprivatekey002.inc │ │ │ │ │ │ └── signatures │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_revkey000.inc │ │ │ │ │ │ │ ├── sig_sha256_bsn0_msg0_revkey001.inc │ │ │ │ │ │ │ └── sig_sha256_bsn0_msg0_revkey002.inc │ │ │ │ │ ├── privrl.inc │ │ │ │ │ ├── privrl_single_entry_revoked_key000.inc │ │ │ │ │ ├── pubkey.inc │ │ │ │ │ ├── sigrevoked │ │ │ │ │ │ ├── mprivatekey000.inc │ │ │ │ │ │ ├── mprivatekey001.inc │ │ │ │ │ │ └── mprivatekey002.inc │ │ │ │ │ ├── sigrl.inc │ │ │ │ │ ├── sigrl_member0_sig_sha256_bsn0_msg0_revoked_first_entry.inc │ │ │ │ │ ├── sigrl_member0_sig_sha256_bsn0_msg0_revoked_last_entry.inc │ │ │ │ │ ├── sigrl_member0_sig_sha256_bsn0_msg0_revoked_middle_entry.inc │ │ │ │ │ ├── sigrl_member0_sig_sha512_rndbase_msg0_revoked_middle_entry.inc │ │ │ │ │ ├── sigrl_single_entry.inc │ │ │ │ │ ├── sigrl_ver_2.inc │ │ │ │ │ └── verrevoked │ │ │ │ │ │ ├── bsn0 │ │ │ │ │ │ ├── mprivkey000.inc │ │ │ │ │ │ ├── mprivkey001.inc │ │ │ │ │ │ ├── mprivkey002.inc │ │ │ │ │ │ ├── sig_revoked0sha256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked0sha384bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked0sha512_256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked0sha512bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked1sha256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked1sha384bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked1sha512_256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked1sha512bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked2sha256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked2sha384bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked2sha512_256bsn0msg0.inc │ │ │ │ │ │ ├── sig_revoked2sha512bsn0msg0.inc │ │ │ │ │ │ ├── verrl.inc │ │ │ │ │ │ ├── verrl_1entry.inc │ │ │ │ │ │ ├── verrl_sha384.inc │ │ │ │ │ │ ├── verrl_sha512.inc │ │ │ │ │ │ └── verrl_sha512_256.inc │ │ │ │ │ │ └── bsn1 │ │ │ │ │ │ ├── mprivkey003.inc │ │ │ │ │ │ ├── mprivkey004.inc │ │ │ │ │ │ ├── mprivkey005.inc │ │ │ │ │ │ ├── sig_revoked3sha256bsn1msg0.inc │ │ │ │ │ │ ├── verrl.inc │ │ │ │ │ │ └── verrl_012revoked.inc │ │ │ │ ├── grp_y │ │ │ │ │ ├── cmember9 │ │ │ │ │ │ ├── cmpprivkey.dat │ │ │ │ │ │ └── cmpprivkey.inc │ │ │ │ │ ├── iprivkey.inc │ │ │ │ │ └── pubkey.inc │ │ │ │ ├── grprl.inc │ │ │ │ ├── grprl_revoked_grp_x_first_entry.inc │ │ │ │ ├── grprl_revoked_grp_x_last_entry.inc │ │ │ │ ├── grprl_revoked_grp_x_middle_entry.inc │ │ │ │ ├── grprl_single_entry_revoked_grp_x.inc │ │ │ │ └── ikgf │ │ │ │ │ ├── groupa │ │ │ │ │ ├── member0 │ │ │ │ │ │ ├── mprecomp.inc │ │ │ │ │ │ └── mprivkey.inc │ │ │ │ │ ├── privrl.inc │ │ │ │ │ ├── privrl_empty.inc │ │ │ │ │ ├── pubkey.inc │ │ │ │ │ ├── sig_msg0_sha256_sigrl.inc │ │ │ │ │ ├── sig_sha256_bsn0_msg0.inc │ │ │ │ │ ├── sig_sha256_bsn0_msg0_empty_sigrl.inc │ │ │ │ │ ├── sig_sha256_bsn0_msg0_nosigrl.inc │ │ │ │ │ ├── sig_sha256_bsn0_msg0_revkey.inc │ │ │ │ │ ├── sig_sha256_rndbase_msg0.inc │ │ │ │ │ ├── sig_sigrevoked_sha256_bsn0_msg0.inc │ │ │ │ │ ├── sig_test1_basename1_sha256.inc │ │ │ │ │ ├── sigrevokedmember0 │ │ │ │ │ │ └── mprivkey.inc │ │ │ │ │ ├── sigrl.inc │ │ │ │ │ └── sigrl_empty.inc │ │ │ │ │ ├── groupb │ │ │ │ │ ├── member0 │ │ │ │ │ │ └── mprivkey.inc │ │ │ │ │ └── sig_grouprevoked_sha256_bsn0_msg0.inc │ │ │ │ │ └── grprl.inc │ │ │ ├── unittests │ │ │ │ ├── bignum_wrapper-test.cc │ │ │ │ ├── ecgroup_wrapper-test.cc │ │ │ │ ├── ecpoint_wrapper-test.cc │ │ │ │ ├── ffelement_wrapper-test.cc │ │ │ │ ├── finite_field_wrapper-test.cc │ │ │ │ └── main-test.cc │ │ │ ├── verifier_wrapper-testhelper.cc │ │ │ └── verifier_wrapper-testhelper.h │ │ ├── common │ │ │ ├── 1.1 │ │ │ │ ├── file_parser.h │ │ │ │ ├── src │ │ │ │ │ ├── commitment.c │ │ │ │ │ ├── commitment.h │ │ │ │ │ ├── epid11params.c │ │ │ │ │ ├── epid11params.h │ │ │ │ │ ├── epid11params_tate.inc │ │ │ │ │ ├── file_parser.c │ │ │ │ │ ├── grouppubkey.c │ │ │ │ │ └── grouppubkey.h │ │ │ │ ├── types.h │ │ │ │ └── unittests │ │ │ │ │ └── file_parser-test.cc │ │ │ ├── Makefile │ │ │ ├── bitsupplier.h │ │ │ ├── common.parts │ │ │ ├── epiddefs.h │ │ │ ├── errors.h │ │ │ ├── file_parser.h │ │ │ ├── math │ │ │ │ ├── bignum.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecgroup.h │ │ │ │ ├── finitefield.h │ │ │ │ ├── hash.h │ │ │ │ ├── pairing.h │ │ │ │ ├── printutils.h │ │ │ │ ├── src │ │ │ │ │ ├── bignum-internal.h │ │ │ │ │ ├── bignum.c │ │ │ │ │ ├── ecdsa_sign.c │ │ │ │ │ ├── ecdsa_verify.c │ │ │ │ │ ├── ecgroup-internal.h │ │ │ │ │ ├── ecgroup.c │ │ │ │ │ ├── finitefield-internal.h │ │ │ │ │ ├── finitefield.c │ │ │ │ │ ├── pairing-internal.h │ │ │ │ │ ├── pairing.c │ │ │ │ │ ├── printutils.c │ │ │ │ │ ├── sha256.c │ │ │ │ │ ├── tatepairing-internal.h │ │ │ │ │ └── tatepairing.c │ │ │ │ ├── tatepairing.h │ │ │ │ └── unittests │ │ │ │ │ ├── bignum-test.cc │ │ │ │ │ ├── ecdsa_sign-test.cc │ │ │ │ │ ├── ecdsa_verify-test.cc │ │ │ │ │ ├── ecgroup-test.cc │ │ │ │ │ ├── ffelement-test.cc │ │ │ │ │ ├── finitefield-test.cc │ │ │ │ │ ├── hash-test.cc │ │ │ │ │ ├── main-test.cc │ │ │ │ │ ├── octstrconvert-test.cc │ │ │ │ │ ├── pairing-test.cc │ │ │ │ │ ├── printutils-test.cc │ │ │ │ │ └── tatepairing-test.cc │ │ │ ├── src │ │ │ │ ├── commitment.c │ │ │ │ ├── commitment.h │ │ │ │ ├── endian_convert.h │ │ │ │ ├── epid2params.c │ │ │ │ ├── epid2params.h │ │ │ │ ├── epid2params_ate.inc │ │ │ │ ├── errors.c │ │ │ │ ├── file_parser-internal.h │ │ │ │ ├── file_parser.c │ │ │ │ ├── grouppubkey.c │ │ │ │ ├── grouppubkey.h │ │ │ │ ├── hashsize.c │ │ │ │ ├── hashsize.h │ │ │ │ ├── memory.c │ │ │ │ ├── memory.h │ │ │ │ ├── sigrlvalid.c │ │ │ │ ├── sigrlvalid.h │ │ │ │ ├── stack.c │ │ │ │ └── stack.h │ │ │ ├── stdtypes.h │ │ │ ├── tinycommon.parts │ │ │ ├── types.h │ │ │ └── unittests │ │ │ │ └── file_parser-test.cc │ │ ├── member │ │ │ ├── Makefile │ │ │ ├── api.h │ │ │ ├── member.parts │ │ │ ├── software_member.h │ │ │ ├── src │ │ │ │ ├── allowed_basenames.c │ │ │ │ ├── allowed_basenames.h │ │ │ │ ├── context.c │ │ │ │ ├── context.h │ │ │ │ ├── decompress_privkey.c │ │ │ │ ├── get_sigsize.c │ │ │ │ ├── hash_basename.c │ │ │ │ ├── hash_basename.h │ │ │ │ ├── join.c │ │ │ │ ├── join_commitment.c │ │ │ │ ├── join_commitment.h │ │ │ │ ├── nrprove.c │ │ │ │ ├── nrprove.h │ │ │ │ ├── nrprove_commitment.c │ │ │ │ ├── nrprove_commitment.h │ │ │ │ ├── precomp.c │ │ │ │ ├── precomp.h │ │ │ │ ├── presig-internal.h │ │ │ │ ├── presig.c │ │ │ │ ├── privateexp.c │ │ │ │ ├── privateexp.h │ │ │ │ ├── provision_bulk.c │ │ │ │ ├── provision_compressed.c │ │ │ │ ├── provision_join.c │ │ │ │ ├── resize.c │ │ │ │ ├── resize.h │ │ │ │ ├── sign.c │ │ │ │ ├── sign_commitment.c │ │ │ │ ├── sign_commitment.h │ │ │ │ ├── signbasic.c │ │ │ │ ├── signbasic.h │ │ │ │ ├── startup.c │ │ │ │ ├── storage.c │ │ │ │ ├── storage.h │ │ │ │ ├── validatekey.c │ │ │ │ ├── validatekey.h │ │ │ │ ├── write_precomp.c │ │ │ │ └── write_precomp.h │ │ │ ├── tiny │ │ │ │ ├── math │ │ │ │ │ ├── efq.h │ │ │ │ │ ├── efq2.h │ │ │ │ │ ├── fp.h │ │ │ │ │ ├── fq.h │ │ │ │ │ ├── fq12.h │ │ │ │ │ ├── fq2.h │ │ │ │ │ ├── fq6.h │ │ │ │ │ ├── hashwrap.h │ │ │ │ │ ├── math.parts │ │ │ │ │ ├── mathdefs.h │ │ │ │ │ ├── mathtypes.h │ │ │ │ │ ├── pairing.h │ │ │ │ │ ├── serialize.h │ │ │ │ │ ├── sha256.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── src │ │ │ │ │ │ ├── efq.c │ │ │ │ │ │ ├── efq2.c │ │ │ │ │ │ ├── fp.c │ │ │ │ │ │ ├── fq.c │ │ │ │ │ │ ├── fq12.c │ │ │ │ │ │ ├── fq2.c │ │ │ │ │ │ ├── fq6.c │ │ │ │ │ │ ├── hashwrap.c │ │ │ │ │ │ ├── pairing.c │ │ │ │ │ │ ├── serialize.c │ │ │ │ │ │ ├── sha256.c │ │ │ │ │ │ ├── sha512.c │ │ │ │ │ │ └── vli.c │ │ │ │ │ ├── unittests │ │ │ │ │ │ ├── cmp-testhelper.cc │ │ │ │ │ │ ├── cmp-testhelper.h │ │ │ │ │ │ ├── efq-test.cc │ │ │ │ │ │ ├── efq2-test.cc │ │ │ │ │ │ ├── fp-test.cc │ │ │ │ │ │ ├── fq-test.cc │ │ │ │ │ │ ├── fq12-test.cc │ │ │ │ │ │ ├── fq2-test.cc │ │ │ │ │ │ ├── fq6-test.cc │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── onetimepad-test.cc │ │ │ │ │ │ ├── main-testhelper.cc │ │ │ │ │ │ ├── onetimepad.h │ │ │ │ │ │ ├── pairing-test.cc │ │ │ │ │ │ ├── serialize-test.cc │ │ │ │ │ │ ├── sha256-test.cc │ │ │ │ │ │ ├── sha512-test.cc │ │ │ │ │ │ ├── utest.parts │ │ │ │ │ │ └── vli-test.cc │ │ │ │ │ └── vli.h │ │ │ │ ├── src │ │ │ │ │ ├── allowed_basenames.c │ │ │ │ │ ├── allowed_basenames.h │ │ │ │ │ ├── context.h │ │ │ │ │ ├── createjoinrequest.c │ │ │ │ │ ├── decompresskey.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── native_types.h │ │ │ │ │ ├── nrprove.c │ │ │ │ │ ├── nrprove.h │ │ │ │ │ ├── presig.c │ │ │ │ │ ├── presig_compute.c │ │ │ │ │ ├── presig_compute.h │ │ │ │ │ ├── provisioncompressed.c │ │ │ │ │ ├── provisioncredential.c │ │ │ │ │ ├── provisionkey.c │ │ │ │ │ ├── registerbasename.c │ │ │ │ │ ├── serialize.c │ │ │ │ │ ├── serialize.h │ │ │ │ │ ├── sethashalg.c │ │ │ │ │ ├── setsigrl.c │ │ │ │ │ ├── sign.c │ │ │ │ │ ├── signbasic.c │ │ │ │ │ ├── signbasic.h │ │ │ │ │ ├── startup.c │ │ │ │ │ ├── validate.c │ │ │ │ │ └── validate.h │ │ │ │ ├── stdlib │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── src │ │ │ │ │ │ └── tiny_stdlib.c │ │ │ │ │ ├── tiny_stdlib.h │ │ │ │ │ └── tiny_stdlib.parts │ │ │ │ └── unittests │ │ │ │ │ ├── allowed_basenames-test.cc │ │ │ │ │ ├── context-test.cc │ │ │ │ │ ├── decompress_privkey-test.cc │ │ │ │ │ ├── get_sigsize-test.cc │ │ │ │ │ ├── internal │ │ │ │ │ ├── nr_prove-test.cc │ │ │ │ │ ├── presig_compute-test.cc │ │ │ │ │ ├── serialize-test.cc │ │ │ │ │ ├── signbasic-test.cc │ │ │ │ │ └── validate-test.cc │ │ │ │ │ ├── join_request-test.cc │ │ │ │ │ ├── main-testhelper.cc │ │ │ │ │ ├── member-testhelper.cc │ │ │ │ │ ├── member-testhelper.h │ │ │ │ │ ├── presig-test.cc │ │ │ │ │ ├── provision_compressed-test.cc │ │ │ │ │ ├── provision_credential-test.cc │ │ │ │ │ ├── provision_key-test.cc │ │ │ │ │ ├── sign-test.cc │ │ │ │ │ └── utest.parts │ │ │ ├── tinymember.parts │ │ │ ├── tpm2 │ │ │ │ ├── commit.h │ │ │ │ ├── context.h │ │ │ │ ├── createprimary.h │ │ │ │ ├── getrandom.h │ │ │ │ ├── ibm_tss │ │ │ │ │ ├── commit.c │ │ │ │ │ ├── context.c │ │ │ │ │ ├── conversion.c │ │ │ │ │ ├── conversion.h │ │ │ │ │ ├── createprimary.c │ │ │ │ │ ├── getrandom.c │ │ │ │ │ ├── load_external.c │ │ │ │ │ ├── nv.c │ │ │ │ │ ├── printtss.c │ │ │ │ │ ├── printtss.h │ │ │ │ │ ├── sign.c │ │ │ │ │ └── state.h │ │ │ │ ├── load_external.h │ │ │ │ ├── nv.h │ │ │ │ ├── sign.h │ │ │ │ ├── src │ │ │ │ │ ├── commit.c │ │ │ │ │ ├── context.c │ │ │ │ │ ├── createprimary.c │ │ │ │ │ ├── getrandom.c │ │ │ │ │ ├── load_external.c │ │ │ │ │ ├── nv.c │ │ │ │ │ ├── sign.c │ │ │ │ │ └── state.h │ │ │ │ ├── tpm2.parts │ │ │ │ └── unittests │ │ │ │ │ ├── commit-simulator-test.cc │ │ │ │ │ ├── commit-test.cc │ │ │ │ │ ├── context-test.cc │ │ │ │ │ ├── conversion-tss-test.cc │ │ │ │ │ ├── createprimary-test.cc │ │ │ │ │ ├── getrandom-simulator-test.cc │ │ │ │ │ ├── getrandom-test.cc │ │ │ │ │ ├── getrandom-tss-test.cc │ │ │ │ │ ├── load_external-simulator-test.cc │ │ │ │ │ ├── load_external-test.cc │ │ │ │ │ ├── main-testhelper.cc │ │ │ │ │ ├── nv-test.cc │ │ │ │ │ ├── sign-simulator-test.cc │ │ │ │ │ ├── sign-test.cc │ │ │ │ │ ├── tpm2-testhelper.cc │ │ │ │ │ ├── tpm2-testhelper.h │ │ │ │ │ ├── tpm2_wrapper-testhelper.cc │ │ │ │ │ └── tpm2_wrapper-testhelper.h │ │ │ ├── tpm_member.h │ │ │ └── unittests │ │ │ │ ├── context-test.cc │ │ │ │ ├── decompress_privkey-test.cc │ │ │ │ ├── get_sigsize-test.cc │ │ │ │ ├── iskeyvalid-test.cc │ │ │ │ ├── join_request-test.cc │ │ │ │ ├── main-test.cc │ │ │ │ ├── member-testhelper.cc │ │ │ │ ├── member-testhelper.h │ │ │ │ ├── nr_prove-test.cc │ │ │ │ ├── presig-test.cc │ │ │ │ ├── privateexp-test.cc │ │ │ │ ├── provision_compressed-test.cc │ │ │ │ ├── provision_credential-test.cc │ │ │ │ ├── provision_key-test.cc │ │ │ │ ├── resize-test.cc │ │ │ │ ├── sign-test.cc │ │ │ │ ├── signbasic-test.cc │ │ │ │ └── storage-test.cc │ │ └── verifier │ │ │ ├── 1.1 │ │ │ ├── api.h │ │ │ ├── src │ │ │ │ ├── check_privrl_entry.c │ │ │ │ ├── context.c │ │ │ │ ├── context.h │ │ │ │ ├── nrverify.c │ │ │ │ ├── sigs_linked.c │ │ │ │ ├── verify.c │ │ │ │ └── verifybasic.c │ │ │ └── unittests │ │ │ │ ├── check_privrl_entry-test.cc │ │ │ │ ├── context-test.cc │ │ │ │ ├── nrverify-test.cc │ │ │ │ ├── sigs_linked-test.cc │ │ │ │ ├── testdata │ │ │ │ └── verifier_precmp.inc │ │ │ │ ├── verifier-testhelper.cc │ │ │ │ ├── verifier-testhelper.h │ │ │ │ ├── verify-test.cc │ │ │ │ └── verifybasic-test.cc │ │ │ ├── Makefile │ │ │ ├── api.h │ │ │ ├── src │ │ │ ├── check_privrl_entry.c │ │ │ ├── context.c │ │ │ ├── context.h │ │ │ ├── nrverify.c │ │ │ ├── sigs_linked.c │ │ │ ├── verify.c │ │ │ └── verifybasic.c │ │ │ ├── unittests │ │ │ ├── check_privrl_entry-test.cc │ │ │ ├── context-test.cc │ │ │ ├── main-test.cc │ │ │ ├── nrverify-test.cc │ │ │ ├── sigs_linked-test.cc │ │ │ ├── testdata │ │ │ │ └── sigrl │ │ │ │ │ ├── pub_key_sigrl_verify.inc │ │ │ │ │ ├── signature_sigrl_first.inc │ │ │ │ │ ├── signature_sigrl_last.inc │ │ │ │ │ ├── signature_sigrl_middle.inc │ │ │ │ │ ├── sigrl_five_entries.inc │ │ │ │ │ └── sigrl_single_entry.inc │ │ │ ├── verifier-testhelper.cc │ │ │ ├── verifier-testhelper.h │ │ │ ├── verify-test.cc │ │ │ └── verifybasic-test.cc │ │ │ └── verifier.parts │ ├── example │ │ ├── Makefile │ │ └── compressed_data │ │ │ ├── README.md │ │ │ ├── cacert.bin │ │ │ ├── compressed_data.parts │ │ │ ├── groupa │ │ │ ├── member0 │ │ │ │ └── mprivkey.dat │ │ │ ├── member1 │ │ │ │ └── mprivkey.dat │ │ │ ├── privrevokedmember0 │ │ │ │ └── mprivkey.dat │ │ │ ├── privrevokedmember1 │ │ │ │ └── mprivkey.dat │ │ │ ├── privrevokedmember2 │ │ │ │ └── mprivkey.dat │ │ │ ├── privrl.bin │ │ │ ├── privrl_empty.bin │ │ │ ├── pubkey.bin │ │ │ ├── sigrevokedmember0 │ │ │ │ └── mprivkey.dat │ │ │ ├── sigrevokedmember1 │ │ │ │ └── mprivkey.dat │ │ │ ├── sigrevokedmember2 │ │ │ │ └── mprivkey.dat │ │ │ ├── sigrl.bin │ │ │ └── sigrl_empty.bin │ │ │ ├── groupb │ │ │ └── privrl.bin │ │ │ ├── grprl.bin │ │ │ ├── grprl_empty.bin │ │ │ ├── mprivkey.dat │ │ │ ├── privrl.bin │ │ │ ├── pubkey.bin │ │ │ └── sigrl.bin │ └── ext │ │ ├── argtable3 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── argtable3.c │ │ ├── argtable3.h │ │ └── argtable3.parts │ │ └── ipp │ │ └── include │ │ ├── ippbase.h │ │ ├── ippcp.h │ │ ├── ippcpdefs.h │ │ ├── ippdefs.h │ │ ├── ipptypes.h │ │ └── sgx_ippcp.h ├── ippcp_internal │ ├── 0001-Add-mitigation-support-to-assembly-code.patch │ ├── Makefile │ ├── README.md │ └── inc │ │ └── ippcp19u5.patch ├── openmp │ ├── 0001-Enable-OpenMP-in-SGX.patch │ └── Makefile ├── rdrand │ ├── rdrand.h │ └── src │ │ ├── Makefile.in │ │ ├── README │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.ac │ │ ├── main.c │ │ ├── rdrand.c │ │ └── rdrand.h ├── sgxssl │ └── prepare_sgxssl.sh ├── tinyxml2 │ ├── tinyxml2.cpp │ └── tinyxml2.h └── vtune │ └── linux │ ├── include │ ├── advisor-annotate.h │ ├── advisor_annotate.f90 │ ├── internal │ │ └── ittnotify.h │ ├── ittnotify.f90 │ ├── ittnotify.h │ ├── jitprofiling.h │ ├── legacy │ │ └── ittnotify.h │ ├── libittnotify.h │ ├── llvm_jit_event_listener.hpp │ └── prototype │ │ └── ittnotify.h │ └── sdk │ └── src │ └── ittnotify │ ├── LICENSE.BSD │ ├── LICENSE.GPL │ ├── Makefile │ ├── disable_warnings.h │ ├── ittnotify_config.h │ ├── ittnotify_static.c │ ├── ittnotify_static.h │ ├── ittnotify_types.h │ └── jitprofiling.c ├── install.sh ├── linux-sgx README.md ├── linux ├── installer │ ├── bin │ │ ├── build-installpkg.sh │ │ ├── install-sgx-psw.bin.tmpl │ │ └── install-sgx-sdk.bin.tmpl │ ├── common │ │ ├── gen_source │ │ │ └── gen_source.py │ │ ├── libsgx-enclave-common │ │ │ ├── 91-sgx-enclave.rules │ │ │ ├── BOMs │ │ │ │ ├── libsgx-enclave-common-dev.txt │ │ │ │ ├── libsgx-enclave-common-package.txt │ │ │ │ └── libsgx-enclave-common.txt │ │ │ ├── Makefile │ │ │ ├── createTarball.sh │ │ │ ├── installConfig │ │ │ └── remount-dev-exec.service │ │ ├── libsgx-epid │ │ │ ├── BOMs │ │ │ │ ├── libsgx-epid-dev.txt │ │ │ │ ├── libsgx-epid-package.txt │ │ │ │ └── libsgx-epid.txt │ │ │ ├── Makefile │ │ │ ├── createTarball.sh │ │ │ └── installConfig │ │ ├── libsgx-headers │ │ │ ├── BOMs │ │ │ │ ├── libsgx-headers-package.txt │ │ │ │ └── libsgx-headers.txt │ │ │ ├── Makefile │ │ │ ├── createTarball.sh │ │ │ └── installConfig │ │ ├── libsgx-launch │ │ │ ├── BOMs │ │ │ │ ├── libsgx-launch-dev.txt │ │ │ │ ├── libsgx-launch-package.txt │ │ │ │ └── libsgx-launch.txt │ │ │ ├── Makefile │ │ │ ├── createTarball.sh │ │ │ └── installConfig │ │ ├── libsgx-quote-ex │ │ │ ├── BOMs │ │ │ │ ├── libsgx-quote-ex-dev.txt │ │ │ │ ├── libsgx-quote-ex-package.txt │ │ │ │ └── libsgx-quote-ex.txt │ │ │ ├── Makefile │ │ │ ├── createTarball.sh │ │ │ └── installConfig │ │ ├── libsgx-uae-service │ │ │ ├── BOMs │ │ │ │ ├── libsgx-uae-service-package.txt │ │ │ │ └── libsgx-uae-service.txt │ │ │ ├── Makefile │ │ │ ├── createTarball.sh │ │ │ └── installConfig │ │ ├── libsgx-urts │ │ │ ├── BOMs │ │ │ │ ├── libsgx-urts-package.txt │ │ │ │ └── libsgx-urts.txt │ │ │ ├── Makefile │ │ │ ├── createTarball.sh │ │ │ └── installConfig │ │ ├── licenses │ │ │ └── BOM_license.txt │ │ ├── local_repo_builder │ │ │ └── local_repo_builder.sh │ │ ├── psw │ │ │ ├── BOMs │ │ │ │ ├── psw_base.txt │ │ │ │ ├── psw_x64.txt │ │ │ │ └── psw_x86.txt │ │ │ ├── Makefile │ │ │ ├── createTarball.sh │ │ │ ├── install.sh │ │ │ ├── installConfig.x64 │ │ │ └── installConfig.x86 │ │ ├── sdk │ │ │ ├── BOMs │ │ │ │ ├── sdk_base.txt │ │ │ │ ├── sdk_cve_2020_0551_cf.txt │ │ │ │ ├── sdk_cve_2020_0551_load.txt │ │ │ │ ├── sdk_x64.txt │ │ │ │ └── sdk_x86.txt │ │ │ ├── Makefile │ │ │ ├── createTarball.sh │ │ │ ├── install.sh │ │ │ ├── installConfig.x64 │ │ │ ├── installConfig.x86 │ │ │ └── pkgconfig │ │ │ │ └── template │ │ │ │ ├── libsgx_epid.pc │ │ │ │ ├── libsgx_epid_sim.pc │ │ │ │ ├── libsgx_launch.pc │ │ │ │ ├── libsgx_launch_sim.pc │ │ │ │ ├── libsgx_quote_ex.pc │ │ │ │ ├── libsgx_quote_ex_sim.pc │ │ │ │ ├── libsgx_uae_service.pc │ │ │ │ ├── libsgx_uae_service_sim.pc │ │ │ │ ├── libsgx_urts.pc │ │ │ │ └── libsgx_urts_sim.pc │ │ └── sgx-aesm-service │ │ │ ├── 92-sgx-provision.rules │ │ │ ├── BOMs │ │ │ ├── libsgx-ae-epid.txt │ │ │ ├── libsgx-ae-le.txt │ │ │ ├── libsgx-ae-pce.txt │ │ │ ├── libsgx-aesm-ecdsa-plugin.txt │ │ │ ├── libsgx-aesm-epid-plugin.txt │ │ │ ├── libsgx-aesm-launch-plugin.txt │ │ │ ├── libsgx-aesm-pce-plugin.txt │ │ │ ├── libsgx-aesm-quote-ex-plugin.txt │ │ │ ├── sgx-aesm-service-package.txt │ │ │ └── sgx-aesm-service.txt │ │ │ ├── Makefile │ │ │ ├── cleanup.sh │ │ │ ├── createTarball.sh │ │ │ ├── installConfig │ │ │ ├── linksgx.sh │ │ │ └── startup.sh │ ├── deb │ │ ├── libsgx-enclave-common │ │ │ ├── build.sh │ │ │ ├── clean.sh │ │ │ └── libsgx-enclave-common-1.0 │ │ │ │ └── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── docs │ │ │ │ ├── postinst │ │ │ │ ├── prerm │ │ │ │ ├── rules │ │ │ │ └── source │ │ │ │ └── format │ │ ├── libsgx-epid │ │ │ ├── build.sh │ │ │ ├── clean.sh │ │ │ └── libsgx-epid-1.0 │ │ │ │ └── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── docs │ │ │ │ ├── rules │ │ │ │ └── source │ │ │ │ └── format │ │ ├── libsgx-headers │ │ │ ├── build.sh │ │ │ ├── clean.sh │ │ │ └── libsgx-headers-1.0 │ │ │ │ └── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── docs │ │ │ │ ├── rules │ │ │ │ └── source │ │ │ │ └── format │ │ ├── libsgx-launch │ │ │ ├── build.sh │ │ │ ├── clean.sh │ │ │ └── libsgx-launch-1.0 │ │ │ │ └── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── docs │ │ │ │ ├── rules │ │ │ │ └── source │ │ │ │ └── format │ │ ├── libsgx-quote-ex │ │ │ ├── build.sh │ │ │ ├── clean.sh │ │ │ └── libsgx-quote-ex-1.0 │ │ │ │ └── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── docs │ │ │ │ ├── rules │ │ │ │ └── source │ │ │ │ └── format │ │ ├── libsgx-uae-service │ │ │ ├── build.sh │ │ │ ├── clean.sh │ │ │ └── libsgx-uae-service-1.0 │ │ │ │ └── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── docs │ │ │ │ ├── rules │ │ │ │ └── source │ │ │ │ └── format │ │ ├── libsgx-urts │ │ │ ├── build.sh │ │ │ ├── clean.sh │ │ │ └── libsgx-urts-1.0 │ │ │ │ └── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── docs │ │ │ │ ├── rules │ │ │ │ └── source │ │ │ │ └── format │ │ ├── local_repo_tool │ │ │ ├── conf │ │ │ │ └── distributions │ │ │ └── debian_repo.sh │ │ └── sgx-aesm-service │ │ │ ├── build.sh │ │ │ ├── clean.sh │ │ │ └── sgx-aesm-service-1.0 │ │ │ └── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── docs │ │ │ ├── postinst │ │ │ ├── preinst │ │ │ ├── prerm │ │ │ ├── rules │ │ │ └── source │ │ │ └── format │ ├── docker │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build_and_run_aesm_docker.sh │ │ ├── build_and_run_sample_docker.sh │ │ ├── build_compose_run.sh │ │ └── docker-compose.yml │ └── rpm │ │ ├── libsgx-enclave-common │ │ ├── build.sh │ │ ├── clean.sh │ │ └── libsgx-enclave-common.spec │ │ ├── libsgx-epid │ │ ├── build.sh │ │ ├── clean.sh │ │ └── libsgx-epid.spec │ │ ├── libsgx-headers │ │ ├── build.sh │ │ ├── clean.sh │ │ └── libsgx-headers.spec │ │ ├── libsgx-launch │ │ ├── build.sh │ │ ├── clean.sh │ │ └── libsgx-launch.spec │ │ ├── libsgx-quote-ex │ │ ├── build.sh │ │ ├── clean.sh │ │ └── libsgx-quote-ex.spec │ │ ├── libsgx-uae-service │ │ ├── build.sh │ │ ├── clean.sh │ │ └── libsgx-uae-service.spec │ │ ├── libsgx-urts │ │ ├── build.sh │ │ ├── clean.sh │ │ └── libsgx-urts.spec │ │ ├── local_repo_tool │ │ └── rpm_repo.sh │ │ ├── sdk │ │ ├── build.sh │ │ ├── clean.sh │ │ └── sgxsdk.spec │ │ └── sgx-aesm-service │ │ ├── build.sh │ │ ├── clean.sh │ │ ├── libsgx-ae-epid.spec │ │ ├── libsgx-ae-le.spec │ │ ├── libsgx-ae-pce.spec │ │ ├── libsgx-aesm-ecdsa-plugin.spec │ │ ├── libsgx-aesm-epid-plugin.spec │ │ ├── libsgx-aesm-launch-plugin.spec │ │ ├── libsgx-aesm-pce-plugin.spec │ │ ├── libsgx-aesm-quote-ex-plugin.spec │ │ └── sgx-aesm-service.spec └── reproducibility │ ├── Dockerfile │ ├── README.md │ ├── ae_reproducibility_verifier │ ├── README.md │ └── reproducibility_verifier.sh │ ├── build_and_launch_docker.sh │ └── start_build.sh.tmp ├── pre_ubuntu_20.04.sh ├── psw ├── Makefile ├── ae │ ├── Makefile │ ├── aesm_service │ │ ├── Makefile │ │ ├── config │ │ │ ├── aesmd_service │ │ │ │ ├── aesmd.conf │ │ │ │ └── aesmd.service │ │ │ └── network │ │ │ │ └── aesmd.conf │ │ └── source │ │ │ ├── CMakeLists.txt │ │ │ ├── bundles │ │ │ ├── CMakeLists.txt │ │ │ ├── ecdsa_quote_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ecdsa_quote_service_bundle.cpp │ │ │ │ └── manifest.json │ │ │ ├── epid_quote_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PVEClass.cpp │ │ │ │ ├── PVEClass.h │ │ │ │ ├── QEClass.cpp │ │ │ │ ├── QEClass.h │ │ │ │ ├── aesm_ecdsa.cpp │ │ │ │ ├── aesm_epid_blob.cpp │ │ │ │ ├── aesm_epid_blob.h │ │ │ │ ├── aesm_xegd_blob.cpp │ │ │ │ ├── aesm_xegd_blob.h │ │ │ │ ├── endpoint_select_info.cpp │ │ │ │ ├── endpoint_select_info.h │ │ │ │ ├── epid_endpoint_selection.cpp │ │ │ │ ├── epid_provision_msg1.cpp │ │ │ │ ├── epid_provision_msg2.cpp │ │ │ │ ├── epid_provision_msg4.cpp │ │ │ │ ├── epid_quote_service_bundle.cpp │ │ │ │ ├── epid_utility.cpp │ │ │ │ ├── epid_utility.h │ │ │ │ ├── manifest.json │ │ │ │ ├── platform_info_facility.cpp │ │ │ │ ├── platform_info_logic.cpp │ │ │ │ ├── platform_info_logic.h │ │ │ │ ├── prov_msg_size.h │ │ │ │ ├── pve_logic.cpp │ │ │ │ ├── pve_logic.h │ │ │ │ ├── pve_pub_key.cpp │ │ │ │ ├── qe_logic.cpp │ │ │ │ └── qe_logic.h │ │ │ ├── le_launch_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LEClass.cpp │ │ │ │ ├── LEClass.h │ │ │ │ ├── le_launch_service_bundle.cpp │ │ │ │ └── manifest.json │ │ │ ├── linux_network_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aesm_encode.cpp │ │ │ │ ├── aesm_http_msg.cpp │ │ │ │ ├── aesm_network.h │ │ │ │ ├── linux_network_service_bundle.cpp │ │ │ │ └── manifest.json │ │ │ ├── pce_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── manifest.json │ │ │ │ └── pce_service_bundle.cpp │ │ │ └── quote_ex_service_bundle │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── manifest.json │ │ │ │ └── quote_ex_service_bundle.cpp │ │ │ ├── common │ │ │ ├── AEClass.h │ │ │ ├── AESMLogicWrapper.h │ │ │ ├── AESMQueue.h │ │ │ ├── AESMQueueManager.h │ │ │ ├── AESMWorkerThread.h │ │ │ ├── CAESMServer.h │ │ │ ├── CSelector.h │ │ │ ├── IAESMQueue.h │ │ │ ├── IServerSocket.h │ │ │ ├── RequestData.h │ │ │ ├── Thread.h │ │ │ ├── UnixServerSocket.h │ │ │ ├── aesm_config.h │ │ │ ├── aesm_encode.h │ │ │ ├── aesm_exception.h │ │ │ ├── aesm_logic.h │ │ │ ├── aesm_long_lived_thread.h │ │ │ ├── aesm_proxy_type.h │ │ │ ├── aesm_quoting_type.h │ │ │ ├── aesm_rand.h │ │ │ ├── cppmicroservices_util.h │ │ │ ├── es_info.h │ │ │ ├── event_strings.h │ │ │ ├── oal │ │ │ │ ├── aesm_persistent_storage.h │ │ │ │ ├── aesm_thread.h │ │ │ │ ├── error_report.h │ │ │ │ ├── internal_log.h │ │ │ │ ├── oal.h │ │ │ │ └── power.h │ │ │ ├── persistent_storage_info.h │ │ │ ├── platform_info_blob.h │ │ │ ├── prof_fun.h │ │ │ ├── ssl_compat_wrapper.h │ │ │ ├── ssl_crypto.h │ │ │ └── type_length_value.h │ │ │ ├── core │ │ │ ├── AESMLogicWrapper.cpp │ │ │ ├── AESMQueueManager.cpp │ │ │ ├── AESMWorkerThread.cpp │ │ │ ├── CAESMServer.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CSelector.cpp │ │ │ ├── Thread.cpp │ │ │ ├── UnixServerSocket.cpp │ │ │ ├── ipc │ │ │ │ ├── AECheckUpdateStatusRequest.cpp │ │ │ │ ├── AECheckUpdateStatusRequest.h │ │ │ │ ├── AECheckUpdateStatusResponse.cpp │ │ │ │ ├── AECheckUpdateStatusResponse.h │ │ │ │ ├── AEGetLaunchTokenRequest.cpp │ │ │ │ ├── AEGetLaunchTokenRequest.h │ │ │ │ ├── AEGetLaunchTokenResponse.cpp │ │ │ │ ├── AEGetLaunchTokenResponse.h │ │ │ │ ├── AEGetQuoteExRequest.cpp │ │ │ │ ├── AEGetQuoteExRequest.h │ │ │ │ ├── AEGetQuoteExResponse.cpp │ │ │ │ ├── AEGetQuoteExResponse.h │ │ │ │ ├── AEGetQuoteRequest.cpp │ │ │ │ ├── AEGetQuoteRequest.h │ │ │ │ ├── AEGetQuoteResponse.cpp │ │ │ │ ├── AEGetQuoteResponse.h │ │ │ │ ├── AEGetQuoteSizeExRequest.cpp │ │ │ │ ├── AEGetQuoteSizeExRequest.h │ │ │ │ ├── AEGetQuoteSizeExResponse.cpp │ │ │ │ ├── AEGetQuoteSizeExResponse.h │ │ │ │ ├── AEGetSupportedAttKeyIDNumRequest.cpp │ │ │ │ ├── AEGetSupportedAttKeyIDNumRequest.h │ │ │ │ ├── AEGetSupportedAttKeyIDNumResponse.cpp │ │ │ │ ├── AEGetSupportedAttKeyIDNumResponse.h │ │ │ │ ├── AEGetSupportedAttKeyIDsRequest.cpp │ │ │ │ ├── AEGetSupportedAttKeyIDsRequest.h │ │ │ │ ├── AEGetSupportedAttKeyIDsResponse.cpp │ │ │ │ ├── AEGetSupportedAttKeyIDsResponse.h │ │ │ │ ├── AEGetWhiteListRequest.cpp │ │ │ │ ├── AEGetWhiteListRequest.h │ │ │ │ ├── AEGetWhiteListResponse.cpp │ │ │ │ ├── AEGetWhiteListResponse.h │ │ │ │ ├── AEGetWhiteListSizeRequest.cpp │ │ │ │ ├── AEGetWhiteListSizeRequest.h │ │ │ │ ├── AEGetWhiteListSizeResponse.cpp │ │ │ │ ├── AEGetWhiteListSizeResponse.h │ │ │ │ ├── AEInitQuoteExRequest.cpp │ │ │ │ ├── AEInitQuoteExRequest.h │ │ │ │ ├── AEInitQuoteExResponse.cpp │ │ │ │ ├── AEInitQuoteExResponse.h │ │ │ │ ├── AEInitQuoteRequest.cpp │ │ │ │ ├── AEInitQuoteRequest.h │ │ │ │ ├── AEInitQuoteResponse.cpp │ │ │ │ ├── AEInitQuoteResponse.h │ │ │ │ ├── AEReportAttestationRequest.cpp │ │ │ │ ├── AEReportAttestationRequest.h │ │ │ │ ├── AEReportAttestationResponse.cpp │ │ │ │ ├── AEReportAttestationResponse.h │ │ │ │ ├── AESGXGetExtendedEpidGroupIdRequest.cpp │ │ │ │ ├── AESGXGetExtendedEpidGroupIdRequest.h │ │ │ │ ├── AESGXGetExtendedEpidGroupIdResponse.cpp │ │ │ │ ├── AESGXGetExtendedEpidGroupIdResponse.h │ │ │ │ ├── AESGXRegisterRequest.cpp │ │ │ │ ├── AESGXRegisterRequest.h │ │ │ │ ├── AESGXRegisterResponse.cpp │ │ │ │ ├── AESGXRegisterResponse.h │ │ │ │ ├── AESGXSwitchExtendedEpidGroupRequest.cpp │ │ │ │ ├── AESGXSwitchExtendedEpidGroupRequest.h │ │ │ │ ├── AESGXSwitchExtendedEpidGroupResponse.cpp │ │ │ │ ├── AESGXSwitchExtendedEpidGroupResponse.h │ │ │ │ ├── AESelectAttKeyIDRequest.cpp │ │ │ │ ├── AESelectAttKeyIDRequest.h │ │ │ │ ├── AESelectAttKeyIDResponse.cpp │ │ │ │ ├── AESelectAttKeyIDResponse.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── IAEMessage.h │ │ │ │ ├── IAERequest.h │ │ │ │ ├── IAEResponse.h │ │ │ │ ├── IAESMLogic.h │ │ │ │ ├── ICommunicationSocket.h │ │ │ │ ├── ISerializer.h │ │ │ │ ├── ISocketFactory.h │ │ │ │ ├── ITransporter.h │ │ │ │ ├── Makefile │ │ │ │ ├── NonBlockingUnixCommunicationSocket.cpp │ │ │ │ ├── NonBlockingUnixCommunicationSocket.h │ │ │ │ ├── NonBlockingUnixSocketFactory.cpp │ │ │ │ ├── NonBlockingUnixSocketFactory.h │ │ │ │ ├── ProtobufSerializer.cpp │ │ │ │ ├── ProtobufSerializer.h │ │ │ │ ├── SocketConfig.h │ │ │ │ ├── SocketTransporter.cpp │ │ │ │ ├── SocketTransporter.h │ │ │ │ ├── UnixCommunicationSocket.cpp │ │ │ │ ├── UnixCommunicationSocket.h │ │ │ │ ├── UnixSocketFactory.cpp │ │ │ │ ├── UnixSocketFactory.h │ │ │ │ ├── debug_log.h │ │ │ │ └── messages.proto │ │ │ └── main.cpp │ │ │ ├── interfaces │ │ │ ├── epid_quote_service.h │ │ │ ├── get_att_key_id.h │ │ │ ├── launch_service.h │ │ │ ├── network_service.h │ │ │ ├── pce_service.h │ │ │ ├── quote_ex_service.h │ │ │ ├── quote_provider_service.h │ │ │ ├── quote_proxy_service.h │ │ │ ├── quote_service.h │ │ │ ├── select_att_key_id.h │ │ │ └── service.h │ │ │ ├── oal │ │ │ ├── CMakeLists.txt │ │ │ └── linux │ │ │ │ ├── aesm_thread.cpp │ │ │ │ ├── aesm_util.cpp │ │ │ │ ├── error_report.cpp │ │ │ │ ├── event_strings.cpp │ │ │ │ ├── internal_log.cpp │ │ │ │ ├── oal_power.cpp │ │ │ │ └── persistent_storage_table.cpp │ │ │ ├── qcnl │ │ │ └── CMakeLists.txt │ │ │ ├── qpl │ │ │ └── CMakeLists.txt │ │ │ └── utils │ │ │ ├── CMakeLists.txt │ │ │ ├── aesm_config.cpp │ │ │ ├── aesm_long_lived_thread.cpp │ │ │ ├── aesm_rand.cpp │ │ │ ├── crypto_aes_gcm.cpp │ │ │ ├── crypto_cmac128.cpp │ │ │ ├── crypto_ecc.cpp │ │ │ ├── crypto_rsa.cpp │ │ │ ├── crypto_sha256_msg.cpp │ │ │ ├── ssl_compat_wrapper.cpp │ │ │ └── type_length_value.cpp │ ├── buildenv.mk │ ├── common │ │ ├── pek_pub_key.cpp │ │ ├── pve_qe_common.cpp │ │ ├── se_ecdsa_verify_internal.cpp │ │ ├── se_sig_rl.cpp │ │ └── version.cpp │ ├── data │ │ ├── constants │ │ │ └── linux │ │ │ │ ├── ae_debug_flag.hh │ │ │ │ ├── default_url_info.hh │ │ │ │ ├── epid_verify_pub.hh │ │ │ │ ├── isk_pub.hh │ │ │ │ ├── ivk_ca_root_der.hh │ │ │ │ ├── launch_enclave_mrsigner.hh │ │ │ │ ├── peksk_pub.hh │ │ │ │ ├── pibsk_pub.hh │ │ │ │ ├── qsdk_pub.hh │ │ │ │ ├── service_enclave_mrsigner.hh │ │ │ │ ├── wl_pub.hh │ │ │ │ └── xegdsk_pub.hh │ │ └── prebuilt │ │ │ ├── aesm_server_url.blob.00000000 │ │ │ ├── le_prod_css.bin │ │ │ └── white_list_cert_to_be_verify.bin │ ├── inc │ │ ├── aeerror.h │ │ ├── byte_order.h │ │ ├── internal │ │ │ ├── Epid_rl.h │ │ │ ├── aesm_error.h │ │ │ ├── epid_pve_type.h │ │ │ ├── le2be_macros.h │ │ │ ├── pce_cert.h │ │ │ ├── pek_pub_key.h │ │ │ ├── pve_qe_common.h │ │ │ ├── ref_le.h │ │ │ ├── se_ecdsa_verify_internal.h │ │ │ ├── tlv_common.h │ │ │ └── utility.h │ │ └── se_sig_rl.h │ ├── le │ │ ├── Makefile │ │ ├── config_linux.xml │ │ ├── launch_enclave.cpp │ │ ├── launch_enclave.edl │ │ └── launch_enclave.h │ ├── pce │ │ ├── Makefile │ │ ├── config.xml │ │ ├── pce.cpp │ │ ├── pce.edl │ │ └── pce_helper.cpp │ ├── pve │ │ ├── Makefile │ │ ├── cipher.h │ │ ├── config.xml │ │ ├── endpoint_selection.cpp │ │ ├── helper.cpp │ │ ├── helper.h │ │ ├── msg3_parm.h │ │ ├── protocol.h │ │ ├── provision_enclave.cpp │ │ ├── provision_enclave.edl │ │ ├── provision_msg.h │ │ ├── provision_msg1.cpp │ │ ├── provision_msg2.cpp │ │ ├── provision_msg3.cpp │ │ ├── provision_msg4.cpp │ │ ├── pve_hardcoded_tlv_data.h │ │ ├── pve_rng.cpp │ │ └── pve_verify_signature.cpp │ ├── qe │ │ ├── Makefile │ │ ├── config.xml │ │ ├── quoting_enclave.cpp │ │ └── quoting_enclave.edl │ └── ref_le │ │ ├── Makefile │ │ ├── config_linux.xml │ │ ├── ref_keys │ │ ├── enclave_private_test_key.pem │ │ ├── enclave_public_test_key.pem │ │ ├── le_private_test_key.pem │ │ ├── le_public_test_key.pem │ │ └── wl_cfg.csv │ │ ├── ref_le.cpp │ │ ├── ref_le.edl │ │ ├── ref_le.md │ │ ├── ref_wl_gen │ │ ├── Makefile │ │ ├── parse_key_file.cpp │ │ ├── parse_key_file.h │ │ ├── ref_wl.cpp │ │ ├── ref_wl_gen.cpp │ │ └── ref_wl_gen.h │ │ └── sgx_pubkey_hash_gen ├── enclave_common │ ├── Makefile │ ├── sgx_enclave_common.cpp │ ├── sgx_enclave_common.h │ └── sgx_enclave_common.lds ├── uae_service │ ├── config.h │ ├── legacy_uae_service.cpp │ ├── linux │ │ ├── Makefile │ │ ├── epid_version.cpp │ │ ├── launch_version.cpp │ │ ├── libsgx_epid.lds │ │ ├── libsgx_launch.lds │ │ ├── libsgx_quote_ex.lds │ │ ├── quote_ex_version.cpp │ │ └── uae_service.lds │ ├── sgx_uae_service.cpp │ ├── uae_service_assert.cpp │ ├── uae_service_version.cpp │ └── uae_wrapper │ │ ├── inc │ │ ├── AEServices.h │ │ ├── AEServicesImpl.h │ │ └── AEServicesProvider.h │ │ └── src │ │ ├── AEServicesImpl.cpp │ │ ├── AEServicesProvider.cpp │ │ ├── tae_ocall_api.cpp │ │ └── uae_api.cpp └── urts │ ├── cpu_features.cpp │ ├── cpu_features.h │ ├── cpu_features_ext.cpp │ ├── create_param.h │ ├── enclave.cpp │ ├── enclave.h │ ├── enclave_creator_hw.h │ ├── enclave_creator_hw_com.cpp │ ├── enclave_mutex.cpp │ ├── enclave_thread.cpp │ ├── file.h │ ├── launch_checker.cpp │ ├── launch_checker.h │ ├── linux │ ├── Makefile │ ├── debugger_support.cpp │ ├── debugger_support.h │ ├── edmm_utility.cpp │ ├── edmm_utility.h │ ├── enclave_creator_hw.cpp │ ├── enter_enclave.S │ ├── enter_enclave.h │ ├── get_thread_id.cpp │ ├── get_thread_id.h │ ├── isgx_user.h │ ├── misc.cpp │ ├── read_xcr0.h │ ├── sig_handler.cpp │ ├── sig_handler.h │ ├── urts.cpp │ ├── urts.lds │ ├── urts_emodpr.cpp │ ├── urts_emodpr.h │ ├── urts_internal.cpp │ ├── urts_internal.lds │ ├── urts_trim.cpp │ └── urts_trim.h │ ├── loader.cpp │ ├── loader.h │ ├── node.cpp │ ├── node.h │ ├── parser │ ├── Makefile │ ├── binparser.h │ ├── clearvars.h │ ├── elf32parser.cpp │ ├── elf32parser.h │ ├── elf64parser.cpp │ ├── elf64parser.h │ ├── elfparser.cpp │ ├── elfparser.h │ ├── parserfactory.cpp │ ├── parserfactory.h │ ├── section.cpp │ ├── section.h │ └── update_global_data.hxx │ ├── prd_css_util.cpp │ ├── prd_css_util.h │ ├── print_string_dbg_ocall.cpp │ ├── routine.cpp │ ├── se_detect.cpp │ ├── se_detect.h │ ├── se_ocalls.cpp │ ├── section_info.h │ ├── tcs.cpp │ ├── tcs.h │ ├── urts_com.h │ ├── urts_version.cpp │ └── urts_xsave.cpp ├── reinstall.sh ├── sdk ├── Makefile ├── Makefile.source ├── compiler-rt │ ├── LICENSE.TXT │ ├── Makefile │ ├── addtf3.c │ ├── ashldi3.c │ ├── ashlti3.c │ ├── ashrdi3.c │ ├── ashrti3.c │ ├── clear_cache.c │ ├── clzdi2.c │ ├── clzsi2.c │ ├── clzti2.c │ ├── cmpdi2.c │ ├── cmpti2.c │ ├── comparetf2.c │ ├── ctzdi2.c │ ├── ctzsi2.c │ ├── ctzti2.c │ ├── divdi3.c │ ├── divsi3.c │ ├── divtf3.c │ ├── divti3.c │ ├── extenddftf2.c │ ├── extendsftf2.c │ ├── ffsdi2.c │ ├── ffsti2.c │ ├── fixtfsi.c │ ├── floatsitf.c │ ├── floatunsitf.c │ ├── fp_extend.h │ ├── fp_lib.h │ ├── fp_trunc.h │ ├── int_endianness.h │ ├── int_lib.h │ ├── int_types.h │ ├── int_util.h │ ├── lshrdi3.c │ ├── lshrti3.c │ ├── moddi3.c │ ├── modsi3.c │ ├── modti3.c │ ├── muldi3.c │ ├── multf3.c │ ├── multi3.c │ ├── negdi2.c │ ├── negti2.c │ ├── paritydi2.c │ ├── paritysi2.c │ ├── parityti2.c │ ├── popcountdi2.c │ ├── popcountsi2.c │ ├── popcountti2.c │ ├── stack_chk.c │ ├── subtf3.c │ ├── trunctfdf2.c │ ├── trunctfsf2.c │ ├── ucmpdi2.c │ ├── ucmpti2.c │ ├── udivdi3.c │ ├── udivmoddi4.c │ ├── udivmodti4.c │ ├── udivsi3.c │ ├── udivti3.c │ ├── umoddi3.c │ ├── umodsi3.c │ └── umodti3.c ├── cpprt │ ├── Makefile │ ├── linux │ │ ├── abi_namespace.h │ │ ├── atomic.h │ │ ├── auxhelper.cc │ │ ├── cxxabi.h │ │ ├── dwarf_eh.h │ │ ├── dynamic_cast.cc │ │ ├── exception.cc │ │ ├── gcc_personality_v0.c │ │ ├── guard.cc │ │ ├── libelftc_dem_gnu3.c │ │ ├── libunwind │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── README.md │ │ │ ├── TODO │ │ │ ├── acinclude.m4 │ │ │ ├── autogen.sh │ │ │ ├── configure.ac │ │ │ ├── doc │ │ │ │ ├── Makefile.am │ │ │ │ ├── NOTES │ │ │ │ ├── _U_dyn_cancel.man │ │ │ │ ├── _U_dyn_cancel.tex │ │ │ │ ├── _U_dyn_register.man │ │ │ │ ├── _U_dyn_register.tex │ │ │ │ ├── common.tex.in │ │ │ │ ├── libunwind-dynamic.man │ │ │ │ ├── libunwind-dynamic.tex │ │ │ │ ├── libunwind-ia64.man │ │ │ │ ├── libunwind-ia64.tex │ │ │ │ ├── libunwind-ptrace.man │ │ │ │ ├── libunwind-ptrace.tex │ │ │ │ ├── libunwind-setjmp.man │ │ │ │ ├── libunwind-setjmp.tex │ │ │ │ ├── libunwind.man │ │ │ │ ├── libunwind.tex │ │ │ │ ├── libunwind.trans │ │ │ │ ├── unw_apply_reg_state.man │ │ │ │ ├── unw_apply_reg_state.tex │ │ │ │ ├── unw_backtrace.man │ │ │ │ ├── unw_backtrace.tex │ │ │ │ ├── unw_create_addr_space.man │ │ │ │ ├── unw_create_addr_space.tex │ │ │ │ ├── unw_destroy_addr_space.man │ │ │ │ ├── unw_destroy_addr_space.tex │ │ │ │ ├── unw_flush_cache.man │ │ │ │ ├── unw_flush_cache.tex │ │ │ │ ├── unw_get_accessors.man │ │ │ │ ├── unw_get_accessors.tex │ │ │ │ ├── unw_get_fpreg.man │ │ │ │ ├── unw_get_fpreg.tex │ │ │ │ ├── unw_get_proc_info.man │ │ │ │ ├── unw_get_proc_info.tex │ │ │ │ ├── unw_get_proc_info_by_ip.man │ │ │ │ ├── unw_get_proc_info_by_ip.tex │ │ │ │ ├── unw_get_proc_name.man │ │ │ │ ├── unw_get_proc_name.tex │ │ │ │ ├── unw_get_reg.man │ │ │ │ ├── unw_get_reg.tex │ │ │ │ ├── unw_getcontext.man │ │ │ │ ├── unw_getcontext.tex │ │ │ │ ├── unw_init_local.man │ │ │ │ ├── unw_init_local.tex │ │ │ │ ├── unw_init_local2.man │ │ │ │ ├── unw_init_remote.man │ │ │ │ ├── unw_init_remote.tex │ │ │ │ ├── unw_is_fpreg.man │ │ │ │ ├── unw_is_fpreg.tex │ │ │ │ ├── unw_is_signal_frame.man │ │ │ │ ├── unw_is_signal_frame.tex │ │ │ │ ├── unw_reg_states_iterate.man │ │ │ │ ├── unw_reg_states_iterate.tex │ │ │ │ ├── unw_regname.man │ │ │ │ ├── unw_regname.tex │ │ │ │ ├── unw_resume.man │ │ │ │ ├── unw_resume.tex │ │ │ │ ├── unw_set_cache_size.man │ │ │ │ ├── unw_set_cache_size.tex │ │ │ │ ├── unw_set_caching_policy.man │ │ │ │ ├── unw_set_caching_policy.tex │ │ │ │ ├── unw_set_fpreg.man │ │ │ │ ├── unw_set_fpreg.tex │ │ │ │ ├── unw_set_reg.man │ │ │ │ ├── unw_set_reg.tex │ │ │ │ ├── unw_step.man │ │ │ │ ├── unw_step.tex │ │ │ │ ├── unw_strerror.man │ │ │ │ └── unw_strerror.tex │ │ │ ├── include │ │ │ │ ├── compiler.h │ │ │ │ ├── dwarf-eh.h │ │ │ │ ├── dwarf.h │ │ │ │ ├── dwarf_i.h │ │ │ │ ├── libunwind-aarch64.h │ │ │ │ ├── libunwind-arm.h │ │ │ │ ├── libunwind-common.h.in │ │ │ │ ├── libunwind-coredump.h │ │ │ │ ├── libunwind-dynamic.h │ │ │ │ ├── libunwind-hppa.h │ │ │ │ ├── libunwind-ia64.h │ │ │ │ ├── libunwind-mips.h │ │ │ │ ├── libunwind-ppc32.h │ │ │ │ ├── libunwind-ppc64.h │ │ │ │ ├── libunwind-ptrace.h │ │ │ │ ├── libunwind-sh.h │ │ │ │ ├── libunwind-tilegx.h │ │ │ │ ├── libunwind-x86.h │ │ │ │ ├── libunwind-x86_64.h │ │ │ │ ├── libunwind.h.in │ │ │ │ ├── libunwind_i.h │ │ │ │ ├── mempool.h │ │ │ │ ├── pthread.h │ │ │ │ ├── remote.h │ │ │ │ ├── tdep-aarch64 │ │ │ │ │ ├── dwarf-config.h │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ └── libunwind_i.h │ │ │ │ ├── tdep-arm │ │ │ │ │ ├── dwarf-config.h │ │ │ │ │ ├── ex_tables.h │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ └── libunwind_i.h │ │ │ │ ├── tdep-hppa │ │ │ │ │ ├── dwarf-config.h │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ └── libunwind_i.h │ │ │ │ ├── tdep-ia64 │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ ├── libunwind_i.h │ │ │ │ │ ├── rse.h │ │ │ │ │ └── script.h │ │ │ │ ├── tdep-mips │ │ │ │ │ ├── dwarf-config.h │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ └── libunwind_i.h │ │ │ │ ├── tdep-ppc32 │ │ │ │ │ ├── dwarf-config.h │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ └── libunwind_i.h │ │ │ │ ├── tdep-ppc64 │ │ │ │ │ ├── dwarf-config.h │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ └── libunwind_i.h │ │ │ │ ├── tdep-sh │ │ │ │ │ ├── dwarf-config.h │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ └── libunwind_i.h │ │ │ │ ├── tdep-tilegx │ │ │ │ │ ├── dwarf-config.h │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ └── libunwind_i.h │ │ │ │ ├── tdep-x86 │ │ │ │ │ ├── dwarf-config.h │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ └── libunwind_i.h │ │ │ │ ├── tdep-x86_64 │ │ │ │ │ ├── dwarf-config.h │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ └── libunwind_i.h │ │ │ │ ├── tdep │ │ │ │ │ ├── dwarf-config.h │ │ │ │ │ ├── jmpbuf.h │ │ │ │ │ └── libunwind_i.h.in │ │ │ │ ├── unwind.h │ │ │ │ └── x86 │ │ │ │ │ └── jmpbuf.h │ │ │ ├── scripts │ │ │ │ ├── kernel-diff.sh │ │ │ │ ├── kernel-files.txt │ │ │ │ └── make-L-files │ │ │ ├── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── aarch64 │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ │ ├── Gget_proc_info.c │ │ │ │ │ ├── Gget_save_loc.c │ │ │ │ │ ├── Gglobal.c │ │ │ │ │ ├── Ginit.c │ │ │ │ │ ├── Ginit_local.c │ │ │ │ │ ├── Ginit_remote.c │ │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Gregs.c │ │ │ │ │ ├── Gresume.c │ │ │ │ │ ├── Gstash_frame.c │ │ │ │ │ ├── Gstep.c │ │ │ │ │ ├── Gtrace.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ │ ├── Lget_proc_info.c │ │ │ │ │ ├── Lget_save_loc.c │ │ │ │ │ ├── Lglobal.c │ │ │ │ │ ├── Linit.c │ │ │ │ │ ├── Linit_local.c │ │ │ │ │ ├── Linit_remote.c │ │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── Lregs.c │ │ │ │ │ ├── Lresume.c │ │ │ │ │ ├── Lstash_frame.c │ │ │ │ │ ├── Lstep.c │ │ │ │ │ ├── Ltrace.c │ │ │ │ │ ├── gen-offsets.c │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── init.h │ │ │ │ │ ├── is_fpreg.c │ │ │ │ │ ├── offsets.h │ │ │ │ │ ├── regname.c │ │ │ │ │ ├── siglongjmp.S │ │ │ │ │ └── unwind_i.h │ │ │ │ ├── arm │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ │ ├── Gex_tables.c │ │ │ │ │ ├── Gget_proc_info.c │ │ │ │ │ ├── Gget_save_loc.c │ │ │ │ │ ├── Gglobal.c │ │ │ │ │ ├── Ginit.c │ │ │ │ │ ├── Ginit_local.c │ │ │ │ │ ├── Ginit_remote.c │ │ │ │ │ ├── Gos-freebsd.c │ │ │ │ │ ├── Gos-linux.c │ │ │ │ │ ├── Gos-other.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Gregs.c │ │ │ │ │ ├── Gresume.c │ │ │ │ │ ├── Gstash_frame.c │ │ │ │ │ ├── Gstep.c │ │ │ │ │ ├── Gtrace.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ │ ├── Lex_tables.c │ │ │ │ │ ├── Lget_proc_info.c │ │ │ │ │ ├── Lget_save_loc.c │ │ │ │ │ ├── Lglobal.c │ │ │ │ │ ├── Linit.c │ │ │ │ │ ├── Linit_local.c │ │ │ │ │ ├── Linit_remote.c │ │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ │ ├── Los-freebsd.c │ │ │ │ │ ├── Los-linux.c │ │ │ │ │ ├── Los-other.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── Lregs.c │ │ │ │ │ ├── Lresume.c │ │ │ │ │ ├── Lstash_frame.c │ │ │ │ │ ├── Lstep.c │ │ │ │ │ ├── Ltrace.c │ │ │ │ │ ├── gen-offsets.c │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── init.h │ │ │ │ │ ├── is_fpreg.c │ │ │ │ │ ├── offsets.h │ │ │ │ │ ├── regname.c │ │ │ │ │ ├── siglongjmp.S │ │ │ │ │ └── unwind_i.h │ │ │ │ ├── coredump │ │ │ │ │ ├── README │ │ │ │ │ ├── _UCD_access_mem.c │ │ │ │ │ ├── _UCD_access_reg_freebsd.c │ │ │ │ │ ├── _UCD_access_reg_linux.c │ │ │ │ │ ├── _UCD_accessors.c │ │ │ │ │ ├── _UCD_create.c │ │ │ │ │ ├── _UCD_destroy.c │ │ │ │ │ ├── _UCD_elf_map_image.c │ │ │ │ │ ├── _UCD_find_proc_info.c │ │ │ │ │ ├── _UCD_get_proc_name.c │ │ │ │ │ ├── _UCD_internal.h │ │ │ │ │ ├── _UCD_lib.h │ │ │ │ │ ├── _UPT_access_fpreg.c │ │ │ │ │ ├── _UPT_elf.c │ │ │ │ │ ├── _UPT_get_dyn_info_list_addr.c │ │ │ │ │ ├── _UPT_put_unwind_info.c │ │ │ │ │ ├── _UPT_resume.c │ │ │ │ │ └── libunwind-coredump.pc.in │ │ │ │ ├── dwarf │ │ │ │ │ ├── Gexpr.c │ │ │ │ │ ├── Gfde.c │ │ │ │ │ ├── Gfind_proc_info-lsb.c │ │ │ │ │ ├── Gfind_unwind_table.c │ │ │ │ │ ├── Gparser.c │ │ │ │ │ ├── Gpe.c │ │ │ │ │ ├── Lexpr.c │ │ │ │ │ ├── Lfde.c │ │ │ │ │ ├── Lfind_proc_info-lsb.c │ │ │ │ │ ├── Lfind_unwind_table.c │ │ │ │ │ ├── Lparser.c │ │ │ │ │ ├── Lpe.c │ │ │ │ │ └── global.c │ │ │ │ ├── elf32.c │ │ │ │ ├── elf32.h │ │ │ │ ├── elf64.c │ │ │ │ ├── elf64.h │ │ │ │ ├── elfxx.c │ │ │ │ ├── elfxx.h │ │ │ │ ├── hppa │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ │ ├── Gget_proc_info.c │ │ │ │ │ ├── Gget_save_loc.c │ │ │ │ │ ├── Gglobal.c │ │ │ │ │ ├── Ginit.c │ │ │ │ │ ├── Ginit_local.c │ │ │ │ │ ├── Ginit_remote.c │ │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Gregs.c │ │ │ │ │ ├── Gresume.c │ │ │ │ │ ├── Gstep.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ │ ├── Lget_proc_info.c │ │ │ │ │ ├── Lget_save_loc.c │ │ │ │ │ ├── Lglobal.c │ │ │ │ │ ├── Linit.c │ │ │ │ │ ├── Linit_local.c │ │ │ │ │ ├── Linit_remote.c │ │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── Lregs.c │ │ │ │ │ ├── Lresume.c │ │ │ │ │ ├── Lstep.c │ │ │ │ │ ├── get_accessors.c │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── init.h │ │ │ │ │ ├── offsets.h │ │ │ │ │ ├── regname.c │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── siglongjmp.S │ │ │ │ │ ├── tables.c │ │ │ │ │ └── unwind_i.h │ │ │ │ ├── ia64 │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ │ ├── Gfind_unwind_table.c │ │ │ │ │ ├── Gget_proc_info.c │ │ │ │ │ ├── Gget_save_loc.c │ │ │ │ │ ├── Gglobal.c │ │ │ │ │ ├── Ginit.c │ │ │ │ │ ├── Ginit_local.c │ │ │ │ │ ├── Ginit_remote.c │ │ │ │ │ ├── Ginstall_cursor.S │ │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ │ ├── Gparser.c │ │ │ │ │ ├── Grbs.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Gregs.c │ │ │ │ │ ├── Gresume.c │ │ │ │ │ ├── Gscript.c │ │ │ │ │ ├── Gstep.c │ │ │ │ │ ├── Gtables.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ │ ├── Lfind_unwind_table.c │ │ │ │ │ ├── Lget_proc_info.c │ │ │ │ │ ├── Lget_save_loc.c │ │ │ │ │ ├── Lglobal.c │ │ │ │ │ ├── Linit.c │ │ │ │ │ ├── Linit_local.c │ │ │ │ │ ├── Linit_remote.c │ │ │ │ │ ├── Linstall_cursor.S │ │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ │ ├── Lparser.c │ │ │ │ │ ├── Lrbs.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── Lregs.c │ │ │ │ │ ├── Lresume.c │ │ │ │ │ ├── Lscript.c │ │ │ │ │ ├── Lstep.c │ │ │ │ │ ├── Ltables.c │ │ │ │ │ ├── NOTES │ │ │ │ │ ├── dyn_info_list.S │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── init.h │ │ │ │ │ ├── longjmp.S │ │ │ │ │ ├── mk_Gcursor_i.c │ │ │ │ │ ├── mk_Lcursor_i.c │ │ │ │ │ ├── mk_cursor_i │ │ │ │ │ ├── offsets.h │ │ │ │ │ ├── regname.c │ │ │ │ │ ├── regs.h │ │ │ │ │ ├── setjmp.S │ │ │ │ │ ├── siglongjmp.S │ │ │ │ │ ├── sigsetjmp.S │ │ │ │ │ ├── ucontext_i.h │ │ │ │ │ ├── unwind_decoder.h │ │ │ │ │ └── unwind_i.h │ │ │ │ ├── libunwind-generic.pc.in │ │ │ │ ├── mi │ │ │ │ │ ├── Gdestroy_addr_space.c │ │ │ │ │ ├── Gdyn-extract.c │ │ │ │ │ ├── Gdyn-remote.c │ │ │ │ │ ├── Gfind_dynamic_proc_info.c │ │ │ │ │ ├── Gget_accessors.c │ │ │ │ │ ├── Gget_fpreg.c │ │ │ │ │ ├── Gget_proc_info_by_ip.c │ │ │ │ │ ├── Gget_proc_name.c │ │ │ │ │ ├── Gget_reg.c │ │ │ │ │ ├── Gput_dynamic_unwind_info.c │ │ │ │ │ ├── Gset_cache_size.c │ │ │ │ │ ├── Gset_caching_policy.c │ │ │ │ │ ├── Gset_fpreg.c │ │ │ │ │ ├── Gset_reg.c │ │ │ │ │ ├── Ldestroy_addr_space.c │ │ │ │ │ ├── Ldyn-extract.c │ │ │ │ │ ├── Ldyn-remote.c │ │ │ │ │ ├── Lfind_dynamic_proc_info.c │ │ │ │ │ ├── Lget_accessors.c │ │ │ │ │ ├── Lget_fpreg.c │ │ │ │ │ ├── Lget_proc_info_by_ip.c │ │ │ │ │ ├── Lget_proc_name.c │ │ │ │ │ ├── Lget_reg.c │ │ │ │ │ ├── Lput_dynamic_unwind_info.c │ │ │ │ │ ├── Lset_cache_size.c │ │ │ │ │ ├── Lset_caching_policy.c │ │ │ │ │ ├── Lset_fpreg.c │ │ │ │ │ ├── Lset_reg.c │ │ │ │ │ ├── _ReadSLEB.c │ │ │ │ │ ├── _ReadULEB.c │ │ │ │ │ ├── backtrace.c │ │ │ │ │ ├── dyn-cancel.c │ │ │ │ │ ├── dyn-info-list.c │ │ │ │ │ ├── dyn-register.c │ │ │ │ │ ├── flush_cache.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── mempool.c │ │ │ │ │ └── strerror.c │ │ │ │ ├── mips │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ │ ├── Gget_proc_info.c │ │ │ │ │ ├── Gget_save_loc.c │ │ │ │ │ ├── Gglobal.c │ │ │ │ │ ├── Ginit.c │ │ │ │ │ ├── Ginit_local.c │ │ │ │ │ ├── Ginit_remote.c │ │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Gregs.c │ │ │ │ │ ├── Gresume.c │ │ │ │ │ ├── Gstep.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ │ ├── Lget_proc_info.c │ │ │ │ │ ├── Lget_save_loc.c │ │ │ │ │ ├── Lglobal.c │ │ │ │ │ ├── Linit.c │ │ │ │ │ ├── Linit_local.c │ │ │ │ │ ├── Linit_remote.c │ │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── Lregs.c │ │ │ │ │ ├── Lresume.c │ │ │ │ │ ├── Lstep.c │ │ │ │ │ ├── elfxx.c │ │ │ │ │ ├── gen-offsets.c │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── init.h │ │ │ │ │ ├── is_fpreg.c │ │ │ │ │ ├── offsets.h │ │ │ │ │ ├── regname.c │ │ │ │ │ ├── siglongjmp.S │ │ │ │ │ └── unwind_i.h │ │ │ │ ├── os-freebsd.c │ │ │ │ ├── os-hpux.c │ │ │ │ ├── os-linux.c │ │ │ │ ├── os-linux.h │ │ │ │ ├── os-qnx.c │ │ │ │ ├── ppc │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gget_proc_info.c │ │ │ │ │ ├── Gget_save_loc.c │ │ │ │ │ ├── Ginit_local.c │ │ │ │ │ ├── Ginit_remote.c │ │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lget_proc_info.c │ │ │ │ │ ├── Lget_save_loc.c │ │ │ │ │ ├── Linit_local.c │ │ │ │ │ ├── Linit_remote.c │ │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── longjmp.S │ │ │ │ │ └── siglongjmp.S │ │ │ │ ├── ppc32 │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ │ ├── Gglobal.c │ │ │ │ │ ├── Ginit.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Gregs.c │ │ │ │ │ ├── Gresume.c │ │ │ │ │ ├── Gstep.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ │ ├── Lglobal.c │ │ │ │ │ ├── Linit.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── Lregs.c │ │ │ │ │ ├── Lresume.c │ │ │ │ │ ├── Lstep.c │ │ │ │ │ ├── Make-arch.in │ │ │ │ │ ├── get_func_addr.c │ │ │ │ │ ├── init.h │ │ │ │ │ ├── is_fpreg.c │ │ │ │ │ ├── regname.c │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── ucontext_i.h │ │ │ │ │ └── unwind_i.h │ │ │ │ ├── ppc64 │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ │ ├── Gglobal.c │ │ │ │ │ ├── Ginit.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Gregs.c │ │ │ │ │ ├── Gresume.c │ │ │ │ │ ├── Gstep.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ │ ├── Lglobal.c │ │ │ │ │ ├── Linit.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── Lregs.c │ │ │ │ │ ├── Lresume.c │ │ │ │ │ ├── Lstep.c │ │ │ │ │ ├── get_func_addr.c │ │ │ │ │ ├── init.h │ │ │ │ │ ├── is_fpreg.c │ │ │ │ │ ├── regname.c │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── ucontext_i.h │ │ │ │ │ └── unwind_i.h │ │ │ │ ├── ptrace │ │ │ │ │ ├── _UPT_access_fpreg.c │ │ │ │ │ ├── _UPT_access_mem.c │ │ │ │ │ ├── _UPT_access_reg.c │ │ │ │ │ ├── _UPT_accessors.c │ │ │ │ │ ├── _UPT_create.c │ │ │ │ │ ├── _UPT_destroy.c │ │ │ │ │ ├── _UPT_elf.c │ │ │ │ │ ├── _UPT_find_proc_info.c │ │ │ │ │ ├── _UPT_get_dyn_info_list_addr.c │ │ │ │ │ ├── _UPT_get_proc_name.c │ │ │ │ │ ├── _UPT_internal.h │ │ │ │ │ ├── _UPT_put_unwind_info.c │ │ │ │ │ ├── _UPT_reg_offset.c │ │ │ │ │ ├── _UPT_resume.c │ │ │ │ │ └── libunwind-ptrace.pc.in │ │ │ │ ├── se-iterate-phdr.c │ │ │ │ ├── se-libc-stubs.c │ │ │ │ ├── setjmp │ │ │ │ │ ├── libunwind-setjmp.pc.in │ │ │ │ │ ├── longjmp.c │ │ │ │ │ ├── setjmp.c │ │ │ │ │ ├── setjmp_i.h │ │ │ │ │ ├── siglongjmp.c │ │ │ │ │ └── sigsetjmp.c │ │ │ │ ├── sh │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ │ ├── Gget_proc_info.c │ │ │ │ │ ├── Gget_save_loc.c │ │ │ │ │ ├── Gglobal.c │ │ │ │ │ ├── Ginit.c │ │ │ │ │ ├── Ginit_local.c │ │ │ │ │ ├── Ginit_remote.c │ │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Gregs.c │ │ │ │ │ ├── Gresume.c │ │ │ │ │ ├── Gstep.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ │ ├── Lget_proc_info.c │ │ │ │ │ ├── Lget_save_loc.c │ │ │ │ │ ├── Lglobal.c │ │ │ │ │ ├── Linit.c │ │ │ │ │ ├── Linit_local.c │ │ │ │ │ ├── Linit_remote.c │ │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── Lregs.c │ │ │ │ │ ├── Lresume.c │ │ │ │ │ ├── Lstep.c │ │ │ │ │ ├── gen-offsets.c │ │ │ │ │ ├── init.h │ │ │ │ │ ├── is_fpreg.c │ │ │ │ │ ├── offsets.h │ │ │ │ │ ├── regname.c │ │ │ │ │ ├── siglongjmp.S │ │ │ │ │ └── unwind_i.h │ │ │ │ ├── tilegx │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ │ ├── Gget_proc_info.c │ │ │ │ │ ├── Gget_save_loc.c │ │ │ │ │ ├── Gglobal.c │ │ │ │ │ ├── Ginit.c │ │ │ │ │ ├── Ginit_local.c │ │ │ │ │ ├── Ginit_remote.c │ │ │ │ │ ├── Gis_signal_frame.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Gregs.c │ │ │ │ │ ├── Gresume.c │ │ │ │ │ ├── Gstep.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ │ ├── Lget_proc_info.c │ │ │ │ │ ├── Lget_save_loc.c │ │ │ │ │ ├── Lglobal.c │ │ │ │ │ ├── Linit.c │ │ │ │ │ ├── Linit_local.c │ │ │ │ │ ├── Linit_remote.c │ │ │ │ │ ├── Lis_signal_frame.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── Lregs.c │ │ │ │ │ ├── Lresume.c │ │ │ │ │ ├── Lstep.c │ │ │ │ │ ├── elfxx.c │ │ │ │ │ ├── gen-offsets.c │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── init.h │ │ │ │ │ ├── is_fpreg.c │ │ │ │ │ ├── offsets.h │ │ │ │ │ ├── regname.c │ │ │ │ │ ├── siglongjmp.S │ │ │ │ │ └── unwind_i.h │ │ │ │ ├── unwind │ │ │ │ │ ├── Backtrace.c │ │ │ │ │ ├── DeleteException.c │ │ │ │ │ ├── FindEnclosingFunction.c │ │ │ │ │ ├── ForcedUnwind.c │ │ │ │ │ ├── GetBSP.c │ │ │ │ │ ├── GetCFA.c │ │ │ │ │ ├── GetDataRelBase.c │ │ │ │ │ ├── GetGR.c │ │ │ │ │ ├── GetIP.c │ │ │ │ │ ├── GetIPInfo.c │ │ │ │ │ ├── GetLanguageSpecificData.c │ │ │ │ │ ├── GetRegionStart.c │ │ │ │ │ ├── GetTextRelBase.c │ │ │ │ │ ├── RaiseException.c │ │ │ │ │ ├── Resume.c │ │ │ │ │ ├── Resume_or_Rethrow.c │ │ │ │ │ ├── SetGR.c │ │ │ │ │ ├── SetIP.c │ │ │ │ │ ├── libunwind.pc.in │ │ │ │ │ └── unwind-internal.h │ │ │ │ ├── x86 │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ │ ├── Gget_proc_info.c │ │ │ │ │ ├── Gget_save_loc.c │ │ │ │ │ ├── Gglobal.c │ │ │ │ │ ├── Ginit.c │ │ │ │ │ ├── Ginit_local.c │ │ │ │ │ ├── Ginit_remote.c │ │ │ │ │ ├── Gos-freebsd.c │ │ │ │ │ ├── Gos-linux.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Gregs.c │ │ │ │ │ ├── Gresume.c │ │ │ │ │ ├── Gstep.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ │ ├── Lget_proc_info.c │ │ │ │ │ ├── Lget_save_loc.c │ │ │ │ │ ├── Lglobal.c │ │ │ │ │ ├── Linit.c │ │ │ │ │ ├── Linit_local.c │ │ │ │ │ ├── Linit_remote.c │ │ │ │ │ ├── Los-freebsd.c │ │ │ │ │ ├── Los-linux.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── Lregs.c │ │ │ │ │ ├── Lresume.c │ │ │ │ │ ├── Lstep.c │ │ │ │ │ ├── getcontext-freebsd.S │ │ │ │ │ ├── getcontext-linux.S │ │ │ │ │ ├── init.h │ │ │ │ │ ├── is_fpreg.c │ │ │ │ │ ├── longjmp.S │ │ │ │ │ ├── offsets.h │ │ │ │ │ ├── regname.c │ │ │ │ │ ├── siglongjmp.S │ │ │ │ │ └── unwind_i.h │ │ │ │ └── x86_64 │ │ │ │ │ ├── Gapply_reg_state.c │ │ │ │ │ ├── Gcreate_addr_space.c │ │ │ │ │ ├── Gget_proc_info.c │ │ │ │ │ ├── Gget_save_loc.c │ │ │ │ │ ├── Gglobal.c │ │ │ │ │ ├── Ginit.c │ │ │ │ │ ├── Ginit_local.c │ │ │ │ │ ├── Ginit_remote.c │ │ │ │ │ ├── Gos-freebsd.c │ │ │ │ │ ├── Gos-linux.c │ │ │ │ │ ├── Greg_states_iterate.c │ │ │ │ │ ├── Gregs.c │ │ │ │ │ ├── Gresume.c │ │ │ │ │ ├── Gstash_frame.c │ │ │ │ │ ├── Gstep.c │ │ │ │ │ ├── Gtrace.c │ │ │ │ │ ├── Lapply_reg_state.c │ │ │ │ │ ├── Lcreate_addr_space.c │ │ │ │ │ ├── Lget_proc_info.c │ │ │ │ │ ├── Lget_save_loc.c │ │ │ │ │ ├── Lglobal.c │ │ │ │ │ ├── Linit.c │ │ │ │ │ ├── Linit_local.c │ │ │ │ │ ├── Linit_remote.c │ │ │ │ │ ├── Los-freebsd.c │ │ │ │ │ ├── Los-linux.c │ │ │ │ │ ├── Lreg_states_iterate.c │ │ │ │ │ ├── Lregs.c │ │ │ │ │ ├── Lresume.c │ │ │ │ │ ├── Lstash_frame.c │ │ │ │ │ ├── Lstep.c │ │ │ │ │ ├── Ltrace.c │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── init.h │ │ │ │ │ ├── is_fpreg.c │ │ │ │ │ ├── longjmp.S │ │ │ │ │ ├── offsets.h │ │ │ │ │ ├── regname.c │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── siglongjmp.S │ │ │ │ │ ├── ucontext_i.h │ │ │ │ │ └── unwind_i.h │ │ │ └── tests │ │ │ │ ├── Gia64-test-nat.c │ │ │ │ ├── Gia64-test-rbs.c │ │ │ │ ├── Gia64-test-readonly.c │ │ │ │ ├── Gia64-test-stack.c │ │ │ │ ├── Gperf-simple.c │ │ │ │ ├── Gperf-trace.c │ │ │ │ ├── Gtest-bt.c │ │ │ │ ├── Gtest-concurrent.c │ │ │ │ ├── Gtest-dyn1.c │ │ │ │ ├── Gtest-exc.c │ │ │ │ ├── Gtest-init.cxx │ │ │ │ ├── Gtest-nomalloc.c │ │ │ │ ├── Gtest-resume-sig-rt.c │ │ │ │ ├── Gtest-resume-sig.c │ │ │ │ ├── Gtest-trace.c │ │ │ │ ├── Lia64-test-nat.c │ │ │ │ ├── Lia64-test-rbs.c │ │ │ │ ├── Lia64-test-readonly.c │ │ │ │ ├── Lia64-test-stack.c │ │ │ │ ├── Lperf-simple.c │ │ │ │ ├── Lperf-trace.c │ │ │ │ ├── Lrs-race.c │ │ │ │ ├── Ltest-bt.c │ │ │ │ ├── Ltest-concurrent.c │ │ │ │ ├── Ltest-cxx-exceptions.cxx │ │ │ │ ├── Ltest-dyn1.c │ │ │ │ ├── Ltest-exc.c │ │ │ │ ├── Ltest-init-local-signal-lib.c │ │ │ │ ├── Ltest-init-local-signal.c │ │ │ │ ├── Ltest-init.cxx │ │ │ │ ├── Ltest-mem-validate.c │ │ │ │ ├── Ltest-nocalloc.c │ │ │ │ ├── Ltest-nomalloc.c │ │ │ │ ├── Ltest-resume-sig-rt.c │ │ │ │ ├── Ltest-resume-sig.c │ │ │ │ ├── Ltest-trace.c │ │ │ │ ├── Ltest-varargs.c │ │ │ │ ├── Makefile.am │ │ │ │ ├── check-namespace.sh.in │ │ │ │ ├── crasher.c │ │ │ │ ├── flush-cache.S │ │ │ │ ├── flush-cache.h │ │ │ │ ├── forker.c │ │ │ │ ├── ia64-dyn-asm.S │ │ │ │ ├── ia64-test-dyn1.c │ │ │ │ ├── ia64-test-nat-asm.S │ │ │ │ ├── ia64-test-rbs-asm.S │ │ │ │ ├── ia64-test-rbs.h │ │ │ │ ├── ia64-test-readonly-asm.S │ │ │ │ ├── ia64-test-setjmp.c │ │ │ │ ├── ia64-test-sig.c │ │ │ │ ├── ia64-test-stack-asm.S │ │ │ │ ├── ia64-test-stack.h │ │ │ │ ├── ident.c │ │ │ │ ├── mapper.c │ │ │ │ ├── perf-startup │ │ │ │ ├── ppc64-test-altivec-utils.c │ │ │ │ ├── ppc64-test-altivec.c │ │ │ │ ├── run-check-namespace │ │ │ │ ├── run-coredump-unwind │ │ │ │ ├── run-coredump-unwind-mdi │ │ │ │ ├── run-ia64-test-dyn1 │ │ │ │ ├── run-ptrace-mapper │ │ │ │ ├── run-ptrace-misc │ │ │ │ ├── test-async-sig.c │ │ │ │ ├── test-coredump-unwind.c │ │ │ │ ├── test-flush-cache.c │ │ │ │ ├── test-init-remote.c │ │ │ │ ├── test-mem.c │ │ │ │ ├── test-proc-info.c │ │ │ │ ├── test-ptrace-misc.c │ │ │ │ ├── test-ptrace.c │ │ │ │ ├── test-reg-state.c │ │ │ │ ├── test-setjmp.c │ │ │ │ ├── test-static-link-gen.c │ │ │ │ ├── test-static-link-loc.c │ │ │ │ └── test-strerror.c │ │ ├── pthread_compat.h │ │ ├── stdexcept.cc │ │ ├── terminate.cc │ │ ├── typeinfo.cc │ │ ├── typeinfo.h │ │ ├── unwind-arm.h │ │ ├── unwind-itanium.h │ │ └── unwind.h │ ├── memory_manage │ │ ├── delete1.cpp │ │ ├── delete2.cpp │ │ ├── delete3.cpp │ │ ├── delete4.cpp │ │ ├── delete5.cpp │ │ ├── delete6.cpp │ │ ├── delete7.cpp │ │ ├── delete8.cpp │ │ ├── new1.cpp │ │ ├── new2.cpp │ │ ├── new3.cpp │ │ ├── new4.cpp │ │ ├── new5.cpp │ │ ├── new6.cpp │ │ └── new_handler.cpp │ └── tcxx_version.cpp ├── debugger_interface │ └── linux │ │ ├── Makefile │ │ ├── gdb-sgx-plugin │ │ ├── gdb_sgx_cmd │ │ ├── gdb_sgx_plugin.py │ │ ├── load_symbol_cmd.py │ │ ├── readelf.py │ │ ├── sgx-gdb │ │ └── sgx_emmt.py │ │ ├── ptrace_version.c │ │ └── se_ptrace.c ├── ec_dh_lib │ ├── Makefile │ ├── ec_dh.cpp │ └── sgx_dh_internal.h ├── edger8r │ └── linux │ │ ├── Ast.ml │ │ ├── CodeGen.ml │ │ ├── Edger8r.ml │ │ ├── Lexer.mll │ │ ├── Makefile │ │ ├── Parser.mly │ │ ├── Plugin.ml │ │ ├── Preprocessor.ml │ │ ├── SimpleStack.ml │ │ └── Util.ml ├── encrypt_enclave │ ├── Makefile │ ├── encryptip.cpp │ └── encryptip.h ├── gperftools │ ├── Makefile │ ├── README │ └── gperftools-2.7 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── ChangeLog.old │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── README_windows.txt │ │ ├── TODO │ │ ├── autogen.sh │ │ ├── benchmark │ │ ├── binary_trees.cc │ │ ├── getcontext_light.cc │ │ ├── malloc_bench.cc │ │ ├── run_benchmark.c │ │ ├── run_benchmark.h │ │ └── unwind_bench.cc │ │ ├── configure.ac │ │ ├── docs │ │ ├── cpuprofile-fileformat.html │ │ ├── cpuprofile.html │ │ ├── designstyle.css │ │ ├── heap-example1.png │ │ ├── heap_checker.html │ │ ├── heapprofile.html │ │ ├── index.html │ │ ├── overview.dot │ │ ├── overview.gif │ │ ├── pageheap.dot │ │ ├── pageheap.gif │ │ ├── pprof-test-big.gif │ │ ├── pprof-test.gif │ │ ├── pprof-vsnprintf-big.gif │ │ ├── pprof-vsnprintf.gif │ │ ├── pprof.1 │ │ ├── pprof.see_also │ │ ├── pprof_remote_servers.html │ │ ├── spanmap.dot │ │ ├── spanmap.gif │ │ ├── t-test1.times.txt │ │ ├── tcmalloc-opspercpusec.vs.threads.1024.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.128.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.131072.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.16384.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.2048.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.256.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.32768.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.4096.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.512.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.64.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.65536.bytes.png │ │ ├── tcmalloc-opspercpusec.vs.threads.8192.bytes.png │ │ ├── tcmalloc-opspersec.vs.size.1.threads.png │ │ ├── tcmalloc-opspersec.vs.size.12.threads.png │ │ ├── tcmalloc-opspersec.vs.size.16.threads.png │ │ ├── tcmalloc-opspersec.vs.size.2.threads.png │ │ ├── tcmalloc-opspersec.vs.size.20.threads.png │ │ ├── tcmalloc-opspersec.vs.size.3.threads.png │ │ ├── tcmalloc-opspersec.vs.size.4.threads.png │ │ ├── tcmalloc-opspersec.vs.size.5.threads.png │ │ ├── tcmalloc-opspersec.vs.size.8.threads.png │ │ ├── tcmalloc.html │ │ ├── threadheap.dot │ │ └── threadheap.gif │ │ ├── gperftools.sln │ │ ├── m4 │ │ ├── ac_have_attribute.m4 │ │ ├── acx_nanosleep.m4 │ │ ├── acx_pthread.m4 │ │ ├── ax_generate_changelog.m4 │ │ ├── compiler_characteristics.m4 │ │ ├── install_prefix.m4 │ │ ├── namespaces.m4 │ │ ├── pc_from_ucontext.m4 │ │ ├── program_invocation_name.m4 │ │ └── stl_namespace.m4 │ │ ├── packages │ │ ├── deb.sh │ │ ├── deb │ │ │ ├── README │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── libgperftools-dev.dirs │ │ │ ├── libgperftools-dev.install │ │ │ ├── libgperftools0.dirs │ │ │ ├── libgperftools0.install │ │ │ ├── libgperftools0.manpages │ │ │ └── rules │ │ ├── rpm.sh │ │ └── rpm │ │ │ └── rpm.spec │ │ ├── src │ │ ├── addressmap-inl.h │ │ ├── base │ │ │ ├── arm_instruction_set_select.h │ │ │ ├── atomicops-internals-arm-generic.h │ │ │ ├── atomicops-internals-arm-v6plus.h │ │ │ ├── atomicops-internals-gcc.h │ │ │ ├── atomicops-internals-linuxppc.h │ │ │ ├── atomicops-internals-macosx.h │ │ │ ├── atomicops-internals-mips.h │ │ │ ├── atomicops-internals-windows.h │ │ │ ├── atomicops-internals-x86.cc │ │ │ ├── atomicops-internals-x86.h │ │ │ ├── atomicops.h │ │ │ ├── basictypes.h │ │ │ ├── commandlineflags.h │ │ │ ├── dynamic_annotations.c │ │ │ ├── dynamic_annotations.h │ │ │ ├── elf_mem_image.cc │ │ │ ├── elf_mem_image.h │ │ │ ├── elfcore.h │ │ │ ├── googleinit.h │ │ │ ├── linux_syscall_support.h │ │ │ ├── linuxthreads.cc │ │ │ ├── linuxthreads.h │ │ │ ├── logging.cc │ │ │ ├── logging.h │ │ │ ├── low_level_alloc.cc │ │ │ ├── low_level_alloc.h │ │ │ ├── sgx_utils.cc │ │ │ ├── simple_mutex.h │ │ │ ├── spinlock.cc │ │ │ ├── spinlock.h │ │ │ ├── spinlock_internal.cc │ │ │ ├── spinlock_internal.h │ │ │ ├── spinlock_linux-inl.h │ │ │ ├── spinlock_posix-inl.h │ │ │ ├── spinlock_win32-inl.h │ │ │ ├── stl_allocator.h │ │ │ ├── sysinfo.cc │ │ │ ├── sysinfo.h │ │ │ ├── thread_annotations.h │ │ │ ├── thread_lister.c │ │ │ ├── thread_lister.h │ │ │ ├── vdso_support.cc │ │ │ └── vdso_support.h │ │ ├── central_freelist.cc │ │ ├── central_freelist.h │ │ ├── common.cc │ │ ├── common.h │ │ ├── config_for_unittests.h │ │ ├── debugallocation.cc │ │ ├── emergency_malloc.cc │ │ ├── emergency_malloc.h │ │ ├── emergency_malloc_for_stacktrace.cc │ │ ├── fake_stacktrace_scope.cc │ │ ├── getenv_safe.h │ │ ├── getpc.h │ │ ├── google │ │ │ ├── heap-checker.h │ │ │ ├── heap-profiler.h │ │ │ ├── malloc_extension.h │ │ │ ├── malloc_extension_c.h │ │ │ ├── malloc_hook.h │ │ │ ├── malloc_hook_c.h │ │ │ ├── profiler.h │ │ │ ├── stacktrace.h │ │ │ └── tcmalloc.h │ │ ├── gperftools │ │ │ ├── heap-checker.h │ │ │ ├── heap-profiler.h │ │ │ ├── malloc_extension.h │ │ │ ├── malloc_extension_c.h │ │ │ ├── malloc_hook.h │ │ │ ├── malloc_hook_c.h │ │ │ ├── nallocx.h │ │ │ ├── profiler.h │ │ │ ├── stacktrace.h │ │ │ └── tcmalloc.h.in │ │ ├── heap-checker-bcad.cc │ │ ├── heap-checker.cc │ │ ├── heap-profile-stats.h │ │ ├── heap-profile-table.cc │ │ ├── heap-profile-table.h │ │ ├── heap-profiler.cc │ │ ├── internal_logging.cc │ │ ├── internal_logging.h │ │ ├── libc_override.h │ │ ├── libc_override_gcc_and_weak.h │ │ ├── libc_override_glibc.h │ │ ├── libc_override_osx.h │ │ ├── libc_override_redefine.h │ │ ├── linked_list.h │ │ ├── malloc_extension.cc │ │ ├── malloc_hook-inl.h │ │ ├── malloc_hook.cc │ │ ├── malloc_hook_mmap_freebsd.h │ │ ├── malloc_hook_mmap_linux.h │ │ ├── maybe_emergency_malloc.h │ │ ├── maybe_threads.cc │ │ ├── maybe_threads.h │ │ ├── memfs_malloc.cc │ │ ├── memory_region_map.cc │ │ ├── memory_region_map.h │ │ ├── packed-cache-inl.h │ │ ├── page_heap.cc │ │ ├── page_heap.h │ │ ├── page_heap_allocator.h │ │ ├── pagemap.h │ │ ├── pprof │ │ ├── profile-handler.cc │ │ ├── profile-handler.h │ │ ├── profiledata.cc │ │ ├── profiledata.h │ │ ├── profiler.cc │ │ ├── raw_printer.cc │ │ ├── raw_printer.h │ │ ├── sampler.cc │ │ ├── sampler.h │ │ ├── span.cc │ │ ├── span.h │ │ ├── stack_trace_table.cc │ │ ├── stack_trace_table.h │ │ ├── stacktrace.cc │ │ ├── stacktrace_arm-inl.h │ │ ├── stacktrace_generic-inl.h │ │ ├── stacktrace_impl_setup-inl.h │ │ ├── stacktrace_instrument-inl.h │ │ ├── stacktrace_libgcc-inl.h │ │ ├── stacktrace_libunwind-inl.h │ │ ├── stacktrace_powerpc-darwin-inl.h │ │ ├── stacktrace_powerpc-inl.h │ │ ├── stacktrace_powerpc-linux-inl.h │ │ ├── stacktrace_win32-inl.h │ │ ├── stacktrace_x86-inl.h │ │ ├── static_vars.cc │ │ ├── static_vars.h │ │ ├── symbolize.cc │ │ ├── symbolize.h │ │ ├── system-alloc.cc │ │ ├── system-alloc.h │ │ ├── tcmalloc.cc │ │ ├── tcmalloc.h │ │ ├── tcmalloc_guard.h │ │ ├── tests │ │ │ ├── addressmap_unittest.cc │ │ │ ├── atomicops_unittest.cc │ │ │ ├── current_allocated_bytes_test.cc │ │ │ ├── debugallocation_test.cc │ │ │ ├── debugallocation_test.sh │ │ │ ├── frag_unittest.cc │ │ │ ├── getpc_test.cc │ │ │ ├── heap-checker-death_unittest.sh │ │ │ ├── heap-checker_unittest.cc │ │ │ ├── heap-checker_unittest.sh │ │ │ ├── heap-profiler_unittest.cc │ │ │ ├── heap-profiler_unittest.sh │ │ │ ├── large_heap_fragmentation_unittest.cc │ │ │ ├── low_level_alloc_unittest.cc │ │ │ ├── malloc_extension_c_test.c │ │ │ ├── malloc_extension_test.cc │ │ │ ├── malloc_hook_test.cc │ │ │ ├── markidle_unittest.cc │ │ │ ├── maybe_threads_unittest.sh │ │ │ ├── memalign_unittest.cc │ │ │ ├── packed-cache_test.cc │ │ │ ├── page_heap_test.cc │ │ │ ├── pagemap_unittest.cc │ │ │ ├── profile-handler_unittest.cc │ │ │ ├── profiledata_unittest.cc │ │ │ ├── profiler_unittest.cc │ │ │ ├── profiler_unittest.sh │ │ │ ├── raw_printer_test.cc │ │ │ ├── realloc_unittest.cc │ │ │ ├── sampler_test.cc │ │ │ ├── sampling_test.cc │ │ │ ├── sampling_test.sh │ │ │ ├── simple_compat_test.cc │ │ │ ├── stack_trace_table_test.cc │ │ │ ├── stacktrace_unittest.cc │ │ │ ├── system-alloc_unittest.cc │ │ │ ├── tcmalloc_large_unittest.cc │ │ │ ├── tcmalloc_unittest.cc │ │ │ ├── tcmalloc_unittest.sh │ │ │ ├── testutil.cc │ │ │ ├── testutil.h │ │ │ └── thread_dealloc_unittest.cc │ │ ├── third_party │ │ │ └── valgrind.h │ │ ├── thread_cache.cc │ │ ├── thread_cache.h │ │ └── windows │ │ │ ├── TODO │ │ │ ├── addr2line-pdb.c │ │ │ ├── auto_testing_hook.h │ │ │ ├── config.h │ │ │ ├── get_mangled_names.cc │ │ │ ├── google │ │ │ └── tcmalloc.h │ │ │ ├── gperftools │ │ │ ├── tcmalloc.h │ │ │ └── tcmalloc.h.in │ │ │ ├── ia32_modrm_map.cc │ │ │ ├── ia32_opcode_map.cc │ │ │ ├── mingw.h │ │ │ ├── mini_disassembler.cc │ │ │ ├── mini_disassembler.h │ │ │ ├── mini_disassembler_types.h │ │ │ ├── nm-pdb.c │ │ │ ├── override_functions.cc │ │ │ ├── patch_functions.cc │ │ │ ├── port.cc │ │ │ ├── port.h │ │ │ ├── preamble_patcher.cc │ │ │ ├── preamble_patcher.h │ │ │ ├── preamble_patcher_test.cc │ │ │ ├── preamble_patcher_with_stub.cc │ │ │ ├── shortproc.asm │ │ │ └── system-alloc.cc │ │ └── vsprojects │ │ ├── addr2line-pdb │ │ └── addr2line-pdb.vcproj │ │ ├── addressmap_unittest │ │ └── addressmap_unittest.vcproj │ │ ├── current_allocated_bytes_test │ │ └── current_allocated_bytes_test.vcproj │ │ ├── frag_unittest │ │ └── frag_unittest.vcproj │ │ ├── libtcmalloc_minimal │ │ └── libtcmalloc_minimal.vcproj │ │ ├── low_level_alloc_unittest │ │ └── low_level_alloc_unittest.vcproj │ │ ├── malloc_extension_test │ │ └── malloc_extension_test.vcproj │ │ ├── malloc_hook_test │ │ └── malloc_hook_test.vcproj │ │ ├── markidle_unittest │ │ └── markidle_unittest.vcproj │ │ ├── nm-pdb │ │ └── nm-pdb.vcproj │ │ ├── packed-cache_test │ │ └── packed-cache_test.vcproj │ │ ├── page_heap_test │ │ └── page_heap_test.vcproj │ │ ├── pagemap_unittest │ │ └── pagemap_unittest.vcproj │ │ ├── preamble_patcher_test │ │ └── preamble_patcher_test.vcproj │ │ ├── realloc_unittest │ │ └── realloc_unittest.vcproj │ │ ├── sampler_test │ │ └── sampler_test.vcproj │ │ ├── stack_trace_table_test │ │ └── stack_trace_table_test.vcproj │ │ ├── system-alloc_unittest │ │ └── system-alloc_unittest.vcproj │ │ ├── tcmalloc_minimal_large │ │ └── tcmalloc_minimal_large_unittest.vcproj │ │ ├── tcmalloc_minimal_unittest │ │ └── tcmalloc_minimal_unittest.vcproj │ │ ├── thread_dealloc_unittest │ │ └── thread_dealloc_unittest.vcproj │ │ └── tmu-static │ │ └── tmu-static.vcproj ├── libcapable │ └── linux │ │ ├── Makefile │ │ ├── sgx_capable.cpp │ │ └── sgx_capable_version.cpp ├── printf_dbg │ ├── Makefile │ └── printf_dbg.cpp ├── protected_code_loader │ ├── Makefile │ ├── crypto │ │ ├── pcl_cmac.c │ │ ├── pcl_crypto.cpp │ │ ├── pcl_crypto_internal.h │ │ ├── pcl_gcm128.c │ │ ├── pcl_ghash-x86_64.s │ │ ├── pcl_md32_common.h │ │ ├── pcl_modes_lcl.h │ │ ├── pcl_sha256.c │ │ └── pcl_vpaes-x86_64.s │ ├── pcl_entry.cpp │ ├── pcl_internal.h │ ├── pcl_mem.cpp │ └── unseal │ │ ├── pcl_sgx_get_key.cpp │ │ ├── pcl_tSeal.cpp │ │ ├── pcl_tSeal_internal.cpp │ │ ├── pcl_tSeal_util.cpp │ │ ├── pcl_unseal_internal.h │ │ └── sim │ │ ├── pcl_deriv.cpp │ │ └── pcl_t_instructions.cpp ├── protected_fs │ ├── sgx_tprotected_fs │ │ ├── Makefile │ │ ├── file_crypto.cpp │ │ ├── file_flush.cpp │ │ ├── file_init.cpp │ │ ├── file_other.cpp │ │ ├── file_read_write.cpp │ │ ├── file_version.cpp │ │ ├── lru_cache.cpp │ │ ├── lru_cache.h │ │ ├── protected_fs_file.h │ │ ├── protected_fs_nodes.h │ │ ├── sgx_tprotected_fs.cpp │ │ └── tprotected_fs.h │ └── sgx_uprotected_fs │ │ ├── Makefile │ │ ├── sgx_uprotected_fs.cpp │ │ └── uprotected_fs.h ├── pthread │ ├── Makefile │ ├── pthread.cpp │ ├── pthread_cond.cpp │ ├── pthread_imp.h │ ├── pthread_mutex.cpp │ ├── pthread_once.cpp │ ├── pthread_rwlock.cpp │ └── pthread_tls.cpp ├── sample_libcrypto │ ├── Makefile │ ├── sample_libcrypto.cpp │ ├── sample_libcrypto.h │ └── sample_libcrypto.lds ├── selib │ ├── linux │ │ └── Makefile │ ├── sgx_create_report.cpp │ ├── sgx_get_key.cpp │ ├── sgx_secure_align.cpp │ ├── sgx_verify_report.cpp │ └── tservice_version.cpp ├── sign_tool │ └── SignTool │ │ ├── Makefile │ │ ├── elf_helper.h │ │ ├── enclave_creator_sign.cpp │ │ ├── enclave_creator_sign.h │ │ ├── manage_metadata.cpp │ │ ├── manage_metadata.h │ │ ├── parse_key_file.cpp │ │ ├── parse_key_file.h │ │ ├── sign_tool.cpp │ │ ├── util_st.cpp │ │ └── util_st.h ├── simulation │ ├── Makefile │ ├── SEConfigureCPUSVN │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── config_cpusvn.cpp │ │ │ └── cpusvn_helper.h │ ├── assembly │ │ ├── Makefile │ │ ├── linux │ │ │ ├── Makefile │ │ │ ├── gnu_tls.h │ │ │ ├── lowlib.S │ │ │ ├── sgxsim.S │ │ │ └── sw_emu.h │ │ ├── lowlib.h │ │ └── sgxsim.h │ ├── driver_api │ │ ├── Makefile │ │ └── driver_api.cpp │ ├── tinst │ │ ├── Makefile │ │ ├── deriv.cpp │ │ ├── deriv.h │ │ ├── rts_sim.h │ │ ├── t_instructions.cpp │ │ └── t_instructions.h │ ├── trtssim │ │ ├── Makefile │ │ └── linux │ │ │ └── Makefile │ ├── tservice_sim │ │ └── Makefile │ ├── uae_service_sim │ │ ├── libsgx_epid_deploy.c │ │ ├── libsgx_launch_deploy.c │ │ ├── libsgx_quote_ex_deploy.c │ │ ├── licensing_sim.cpp │ │ ├── linux │ │ │ ├── Makefile │ │ │ ├── libsgx_epid.lds │ │ │ ├── libsgx_launch.lds │ │ │ ├── libsgx_quote_ex.lds │ │ │ └── libsgx_uae_service.lds │ │ └── quoting_sim.cpp │ ├── uinst │ │ ├── Makefile │ │ ├── enclave_mngr.cpp │ │ ├── enclave_mngr.h │ │ ├── linux │ │ │ ├── Makefile │ │ │ ├── get_tcs.c │ │ │ ├── restore_tls.c │ │ │ └── set_tls.c │ │ ├── td_mngr.h │ │ ├── u_instructions.cpp │ │ └── u_instructions.h │ └── urtssim │ │ ├── Makefile │ │ ├── cpusvn_util.cpp │ │ ├── cpusvn_util.h │ │ ├── enclave_creator_sim.cpp │ │ ├── enclave_creator_sim.h │ │ ├── linux │ │ └── Makefile │ │ ├── urts_deploy.c │ │ └── urts_sim.h ├── switchless │ ├── README.md │ ├── inc │ │ ├── mini_snprintf.h │ │ ├── sl_atomic.h │ │ ├── sl_bitops.h │ │ ├── sl_compiler.h │ │ ├── sl_debug.h │ │ ├── sl_fcall_mngr.h │ │ ├── sl_fcall_mngr_common.h │ │ ├── sl_init.h │ │ ├── sl_memlog.h │ │ ├── sl_once.h │ │ ├── sl_printk.h │ │ ├── sl_siglines.h │ │ ├── sl_types.h │ │ ├── sl_uswitchless.h │ │ ├── sl_util.h │ │ ├── sl_workers.h │ │ └── uswitchless.h │ ├── sgx_tswitchless │ │ ├── Makefile │ │ ├── sgx_ocall_switchless.c │ │ ├── sl_fcall_mngr.c │ │ ├── sl_init.c │ │ ├── sl_printk.c │ │ ├── sl_siglines.c │ │ └── sl_workers.c │ └── sgx_uswitchless │ │ ├── Makefile │ │ ├── sgx_ecall_switchless_untrusted.c │ │ ├── sl_fcall_mngr_untrusted.c │ │ ├── sl_siglines_untrusted.c │ │ ├── sl_urts_loader.h │ │ ├── sl_urts_loader_untrusted.cpp │ │ ├── sl_uswitchless_untrusted.c │ │ └── sl_workers_untrusted.c ├── tkey_exchange │ ├── Makefile │ ├── simple_vector.cpp │ ├── simple_vector.h │ ├── tkey_exchange.cpp │ └── tkey_exchange_version.cpp ├── tlibc │ ├── Makefile │ ├── gdtoa │ │ ├── arith.h │ │ ├── dmisc.c │ │ ├── dtoa.c │ │ ├── gd_qnan.h │ │ ├── gdtoa.c │ │ ├── gdtoa.h │ │ ├── gdtoaimp.h │ │ ├── gethex.c │ │ ├── gmisc.c │ │ ├── hd_init.c │ │ ├── hdtoa.c │ │ ├── hexnan.c │ │ ├── ldtoa.c │ │ ├── locks.c │ │ ├── misc.c │ │ ├── smisc.c │ │ ├── strtod.c │ │ ├── strtodg.c │ │ ├── strtof.c │ │ ├── strtold.c │ │ ├── strtord.c │ │ ├── strtorx.c │ │ ├── sum.c │ │ └── ulp.c │ ├── gen │ │ ├── __memcpy_chk.cpp │ │ ├── __memmove_chk.cpp │ │ ├── __mempcpy_chk.cpp │ │ ├── __memset_chk.cpp │ │ ├── __stpcpy_chk.cpp │ │ ├── __stpncpy_chk.cpp │ │ ├── __strcat_chk.cpp │ │ ├── __strcpy_chk.cpp │ │ ├── __strlen_chk.cpp │ │ ├── __strncat_chk.cpp │ │ ├── __strncpy_chk.cpp │ │ ├── __vsnprintf_chk.cpp │ │ ├── __vsprintf_chk.cpp │ │ ├── alloca.S │ │ ├── assert.c │ │ ├── ctype_.c │ │ ├── ctype_private.h │ │ ├── errlist.c │ │ ├── errno.c │ │ ├── fpclassify.c │ │ ├── fpclassifyl.c │ │ ├── getpagesize.c │ │ ├── infinity.c │ │ ├── isctype.c │ │ ├── isfinite.c │ │ ├── isfinitel.c │ │ ├── isinf.c │ │ ├── isinfl.c │ │ ├── isnan.c │ │ ├── isnanl.c │ │ ├── isnormal.c │ │ ├── isnormall.c │ │ ├── nan.c │ │ ├── sbrk.c │ │ ├── se_cpuid.c │ │ ├── signbit.c │ │ ├── signbitl.c │ │ ├── spinlock.c │ │ ├── tolower_.c │ │ └── toupper_.c │ ├── locale │ │ ├── btowc.c │ │ ├── mblen.c │ │ ├── mbrlen.c │ │ ├── mbstowcs.c │ │ ├── mbtowc.c │ │ ├── multibyte_citrus_none.c │ │ ├── runetype.h │ │ ├── wcscoll.c │ │ ├── wcstombs.c │ │ ├── wcsxfrm.c │ │ ├── wctob.c │ │ └── wctomb.c │ ├── math │ │ ├── b_exp__D.c │ │ ├── b_log__D.c │ │ ├── b_tgamma.c │ │ ├── cacos.S │ │ ├── cacosh.S │ │ ├── e_acos.c │ │ ├── e_acosf.c │ │ ├── e_acosh.c │ │ ├── e_acoshf.c │ │ ├── e_acoshl.c │ │ ├── e_acosl.c │ │ ├── e_asin.c │ │ ├── e_asinf.c │ │ ├── e_asinl.c │ │ ├── e_atan2.c │ │ ├── e_atan2f.c │ │ ├── e_atan2l.c │ │ ├── e_atanh.c │ │ ├── e_atanhf.c │ │ ├── e_atanhl.c │ │ ├── e_cosh.c │ │ ├── e_coshf.c │ │ ├── e_coshl.c │ │ ├── e_exp.c │ │ ├── e_expf.c │ │ ├── e_expl.c │ │ ├── e_fmod.c │ │ ├── e_fmodf.c │ │ ├── e_fmodl.c │ │ ├── e_hypot.c │ │ ├── e_hypotf.c │ │ ├── e_hypotl.c │ │ ├── e_j0.c │ │ ├── e_j0f.c │ │ ├── e_j1.c │ │ ├── e_j1f.c │ │ ├── e_jn.c │ │ ├── e_jnf.c │ │ ├── e_lgamma_r.c │ │ ├── e_lgammaf_r.c │ │ ├── e_log.c │ │ ├── e_log10.c │ │ ├── e_log10f.c │ │ ├── e_log10l.c │ │ ├── e_log2.c │ │ ├── e_log2f.c │ │ ├── e_log2l.c │ │ ├── e_logf.c │ │ ├── e_logl.c │ │ ├── e_pow.c │ │ ├── e_powf.c │ │ ├── e_powl.c │ │ ├── e_rem_pio2.c │ │ ├── e_rem_pio2f.c │ │ ├── e_remainder.c │ │ ├── e_remainderf.c │ │ ├── e_remainderl.c │ │ ├── e_scalb.c │ │ ├── e_scalbf.c │ │ ├── e_sinh.c │ │ ├── e_sinhf.c │ │ ├── e_sinhl.c │ │ ├── e_sqrt.c │ │ ├── e_sqrtf.c │ │ ├── e_sqrtl.c │ │ ├── e_tgammal.c │ │ ├── exp10_gen.S │ │ ├── exp10f_gen.S │ │ ├── exp10l.S │ │ ├── exp_table.S │ │ ├── expf_table.S │ │ ├── expl_table.S │ │ ├── fenv.c │ │ ├── invtrig.c │ │ ├── invtrig.h │ │ ├── k_cos.c │ │ ├── k_cosf.c │ │ ├── k_cosl.c │ │ ├── k_rem_pio2.c │ │ ├── k_rem_pio2f.c │ │ ├── k_sin.c │ │ ├── k_sincos.h │ │ ├── k_sincosf.h │ │ ├── k_sincosl.h │ │ ├── k_sinf.c │ │ ├── k_sinl.c │ │ ├── k_tan.c │ │ ├── k_tanf.c │ │ ├── k_tanl.c │ │ ├── lgammal.S │ │ ├── libm_logl_k80.S │ │ ├── libm_normalizel_k80.S │ │ ├── logl_table.S │ │ ├── math_private.h │ │ ├── polevll.c │ │ ├── rcp_table.S │ │ ├── s_asinh.c │ │ ├── s_asinhf.c │ │ ├── s_asinhl.c │ │ ├── s_atan.c │ │ ├── s_atanf.c │ │ ├── s_atanl.c │ │ ├── s_cabs.c │ │ ├── s_cabsf.c │ │ ├── s_cabsl.c │ │ ├── s_cacoshl.c │ │ ├── s_cacosl.c │ │ ├── s_carg.c │ │ ├── s_cargf.c │ │ ├── s_cargl.c │ │ ├── s_casin.c │ │ ├── s_casinf.c │ │ ├── s_casinh.c │ │ ├── s_casinhf.c │ │ ├── s_casinhl.c │ │ ├── s_casinl.c │ │ ├── s_catan.c │ │ ├── s_catanf.c │ │ ├── s_catanh.c │ │ ├── s_catanhf.c │ │ ├── s_catanhl.c │ │ ├── s_catanl.c │ │ ├── s_cbrt.c │ │ ├── s_cbrtf.c │ │ ├── s_cbrtl.c │ │ ├── s_ccos.c │ │ ├── s_ccosf.c │ │ ├── s_ccosh.c │ │ ├── s_ccoshf.c │ │ ├── s_ccoshl.c │ │ ├── s_ccosl.c │ │ ├── s_ceil.c │ │ ├── s_ceilf.c │ │ ├── s_ceill.c │ │ ├── s_cexp.c │ │ ├── s_cexpf.c │ │ ├── s_cexpl.c │ │ ├── s_cimag.c │ │ ├── s_cimagf.c │ │ ├── s_cimagl.c │ │ ├── s_clog.c │ │ ├── s_clogf.c │ │ ├── s_clogl.c │ │ ├── s_conj.c │ │ ├── s_conjf.c │ │ ├── s_conjl.c │ │ ├── s_copysign.c │ │ ├── s_copysignf.c │ │ ├── s_copysignl.c │ │ ├── s_cos.c │ │ ├── s_cosf.c │ │ ├── s_cosl.c │ │ ├── s_cpow.c │ │ ├── s_cpowf.c │ │ ├── s_cpowl.c │ │ ├── s_cproj.c │ │ ├── s_cprojf.c │ │ ├── s_cprojl.c │ │ ├── s_creal.c │ │ ├── s_crealf.c │ │ ├── s_creall.c │ │ ├── s_csin.c │ │ ├── s_csinf.c │ │ ├── s_csinh.c │ │ ├── s_csinhf.c │ │ ├── s_csinhl.c │ │ ├── s_csinl.c │ │ ├── s_csqrt.c │ │ ├── s_csqrtf.c │ │ ├── s_csqrtl.c │ │ ├── s_ctan.c │ │ ├── s_ctanf.c │ │ ├── s_ctanh.c │ │ ├── s_ctanhf.c │ │ ├── s_ctanhl.c │ │ ├── s_ctanl.c │ │ ├── s_erf.c │ │ ├── s_erff.c │ │ ├── s_erfl.c │ │ ├── s_exp2.c │ │ ├── s_exp2f.c │ │ ├── s_exp2l.c │ │ ├── s_expm1.c │ │ ├── s_expm1f.c │ │ ├── s_expm1l.c │ │ ├── s_fabs.c │ │ ├── s_fabsf.c │ │ ├── s_fabsl.c │ │ ├── s_fdim.c │ │ ├── s_floor.c │ │ ├── s_floorf.c │ │ ├── s_floorl.c │ │ ├── s_fma.c │ │ ├── s_fmaf.c │ │ ├── s_fmal.c │ │ ├── s_fmax.c │ │ ├── s_fmaxf.c │ │ ├── s_fmaxl.c │ │ ├── s_fmin.c │ │ ├── s_fminf.c │ │ ├── s_fminl.c │ │ ├── s_frexp.c │ │ ├── s_frexpf.c │ │ ├── s_frexpl.c │ │ ├── s_ilogb.c │ │ ├── s_ilogbf.c │ │ ├── s_ilogbl.c │ │ ├── s_llrint.c │ │ ├── s_llrintf.c │ │ ├── s_llrintl.c │ │ ├── s_llround.c │ │ ├── s_llroundf.c │ │ ├── s_llroundl.c │ │ ├── s_log1p.c │ │ ├── s_log1pf.c │ │ ├── s_log1pl.c │ │ ├── s_logb.c │ │ ├── s_logbf.c │ │ ├── s_logbl.c │ │ ├── s_lrint.c │ │ ├── s_lrintf.c │ │ ├── s_lrintl.c │ │ ├── s_lround.c │ │ ├── s_lroundf.c │ │ ├── s_lroundl.c │ │ ├── s_modf.c │ │ ├── s_modff.c │ │ ├── s_modfl.c │ │ ├── s_nan.c │ │ ├── s_nanl.c │ │ ├── s_nearbyint.c │ │ ├── s_nextafter.c │ │ ├── s_nextafterf.c │ │ ├── s_nextafterl.c │ │ ├── s_nexttoward.c │ │ ├── s_nexttowardf.c │ │ ├── s_remquo.c │ │ ├── s_remquof.c │ │ ├── s_remquol.c │ │ ├── s_rint.c │ │ ├── s_rintf.c │ │ ├── s_rintl.c │ │ ├── s_round.c │ │ ├── s_roundf.c │ │ ├── s_roundl.c │ │ ├── s_scalbln.c │ │ ├── s_scalbn.c │ │ ├── s_scalbnf.c │ │ ├── s_scalbnl.c │ │ ├── s_signgam.c │ │ ├── s_significand.c │ │ ├── s_significandf.c │ │ ├── s_sin.c │ │ ├── s_sincos.c │ │ ├── s_sincosf.c │ │ ├── s_sincosl.c │ │ ├── s_sinf.c │ │ ├── s_sinl.c │ │ ├── s_tan.c │ │ ├── s_tanf.c │ │ ├── s_tanh.c │ │ ├── s_tanhf.c │ │ ├── s_tanhl.c │ │ ├── s_tanl.c │ │ ├── s_trunc.c │ │ ├── s_truncf.c │ │ ├── s_truncl.c │ │ ├── w_drem.c │ │ ├── w_dremf.c │ │ ├── w_dreml.c │ │ ├── w_gamma.c │ │ ├── w_gamma_r.c │ │ ├── w_gammaf.c │ │ ├── w_gammaf_r.c │ │ ├── w_lgamma.c │ │ └── w_lgammaf.c │ ├── stdio │ │ ├── fileext.h │ │ ├── floatio.h │ │ ├── fvwrite.c │ │ ├── fvwrite.h │ │ ├── local.h │ │ ├── snprintf.c │ │ ├── swprintf.c │ │ ├── vfprintf.c │ │ ├── vfwprintf.c │ │ ├── vsnprintf.c │ │ ├── vswprintf.c │ │ └── wcio.h │ ├── stdlib │ │ ├── abs.c │ │ ├── atof.c │ │ ├── atoi.c │ │ ├── atol.c │ │ ├── atoll.c │ │ ├── bsearch.c │ │ ├── div.c │ │ ├── imaxabs.c │ │ ├── imaxdiv.c │ │ ├── labs.c │ │ ├── ldiv.c │ │ ├── llabs.c │ │ ├── lldiv.c │ │ ├── malloc.c │ │ ├── qsort.c │ │ ├── strtoimax.c │ │ ├── strtol.c │ │ ├── strtoll.c │ │ ├── strtoul.c │ │ ├── strtoull.c │ │ └── strtoumax.c │ ├── string │ │ ├── bcmp.c │ │ ├── bcopy.c │ │ ├── bzero.c │ │ ├── consttime_memequal.c │ │ ├── ffs.c │ │ ├── ffsl.c │ │ ├── ffsll.c │ │ ├── index.c │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmove.c │ │ ├── mempcpy.c │ │ ├── memset.c │ │ ├── memset_s.c │ │ ├── rindex.c │ │ ├── se_string_init.c │ │ ├── stpncpy.c │ │ ├── strcasecmp.c │ │ ├── strchr.c │ │ ├── strcmp.c │ │ ├── strcoll.c │ │ ├── strcspn.c │ │ ├── strerror.c │ │ ├── strerror_r.c │ │ ├── strlcpy.c │ │ ├── strlen.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strndup.c │ │ ├── strnlen.c │ │ ├── strpbrk.c │ │ ├── strrchr.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ ├── strtok.c │ │ ├── strxfrm.c │ │ ├── wcschr.c │ │ ├── wcscmp.c │ │ ├── wcscspn.c │ │ ├── wcslcpy.c │ │ ├── wcslen.c │ │ ├── wcsncat.c │ │ ├── wcsncmp.c │ │ ├── wcsncpy.c │ │ ├── wcspbrk.c │ │ ├── wcsrchr.c │ │ ├── wcsspn.c │ │ ├── wcsstr.c │ │ ├── wcstok.c │ │ ├── wcswcs.c │ │ ├── wmemchr.c │ │ ├── wmemcmp.c │ │ ├── wmemcpy.c │ │ ├── wmemmove.c │ │ └── wmemset.c │ ├── time │ │ ├── asctime.c │ │ ├── difftime.c │ │ ├── private.h │ │ ├── strftime.c │ │ └── tzfile.h │ └── tstdc_version.cpp ├── tlibcrypto │ ├── Makefile │ ├── ipp │ │ ├── init_tcrypto_lib.cpp │ │ ├── ipp_disp │ │ │ ├── ippcpsgx_disp00000.c │ │ │ ├── ippcpsgx_disp00001.c │ │ │ ├── ippcpsgx_disp00002.c │ │ │ ├── ippcpsgx_disp00003.c │ │ │ ├── ippcpsgx_disp00004.c │ │ │ ├── ippcpsgx_disp00005.c │ │ │ ├── ippcpsgx_disp00006.c │ │ │ ├── ippcpsgx_disp00007.c │ │ │ ├── ippcpsgx_disp00008.c │ │ │ ├── ippcpsgx_disp00009.c │ │ │ ├── ippcpsgx_disp00010.c │ │ │ ├── ippcpsgx_disp00011.c │ │ │ ├── ippcpsgx_disp00012.c │ │ │ ├── ippcpsgx_disp00013.c │ │ │ ├── ippcpsgx_disp00014.c │ │ │ ├── ippcpsgx_disp00015.c │ │ │ ├── ippcpsgx_disp00016.c │ │ │ ├── ippcpsgx_disp00017.c │ │ │ ├── ippcpsgx_disp00018.c │ │ │ ├── ippcpsgx_disp00019.c │ │ │ ├── ippcpsgx_disp00020.c │ │ │ ├── ippcpsgx_disp00021.c │ │ │ ├── ippcpsgx_disp00022.c │ │ │ ├── ippcpsgx_disp00023.c │ │ │ ├── ippcpsgx_disp00024.c │ │ │ ├── ippcpsgx_disp00025.c │ │ │ ├── ippcpsgx_disp00026.c │ │ │ ├── ippcpsgx_disp00027.c │ │ │ ├── ippcpsgx_disp00028.c │ │ │ ├── ippcpsgx_disp00029.c │ │ │ ├── ippcpsgx_disp00030.c │ │ │ ├── ippcpsgx_disp00031.c │ │ │ ├── ippcpsgx_disp00032.c │ │ │ ├── ippcpsgx_disp00033.c │ │ │ ├── ippcpsgx_disp00034.c │ │ │ ├── ippcpsgx_disp00035.c │ │ │ ├── ippcpsgx_disp00036.c │ │ │ ├── ippcpsgx_disp00037.c │ │ │ ├── ippcpsgx_disp00038.c │ │ │ ├── ippcpsgx_disp00039.c │ │ │ ├── ippcpsgx_disp00040.c │ │ │ ├── ippcpsgx_disp00041.c │ │ │ ├── ippcpsgx_disp00042.c │ │ │ ├── ippcpsgx_disp00043.c │ │ │ ├── ippcpsgx_disp00044.c │ │ │ ├── ippcpsgx_disp00045.c │ │ │ ├── ippcpsgx_disp00046.c │ │ │ ├── ippcpsgx_disp00047.c │ │ │ ├── ippcpsgx_disp00048.c │ │ │ ├── ippcpsgx_disp00049.c │ │ │ ├── ippcpsgx_disp00050.c │ │ │ ├── ippcpsgx_disp00051.c │ │ │ ├── ippcpsgx_disp00052.c │ │ │ ├── ippcpsgx_disp00053.c │ │ │ ├── ippcpsgx_disp00054.c │ │ │ ├── ippcpsgx_disp00055.c │ │ │ ├── ippcpsgx_disp00056.c │ │ │ ├── ippcpsgx_disp00057.c │ │ │ ├── ippcpsgx_disp00058.c │ │ │ ├── ippcpsgx_disp00059.c │ │ │ ├── ippcpsgx_disp00060.c │ │ │ ├── ippcpsgx_disp00061.c │ │ │ ├── ippcpsgx_disp00062.c │ │ │ ├── ippcpsgx_disp00063.c │ │ │ ├── ippcpsgx_disp00064.c │ │ │ ├── ippcpsgx_disp00065.c │ │ │ ├── ippcpsgx_disp00066.c │ │ │ ├── ippcpsgx_disp00067.c │ │ │ ├── ippcpsgx_disp00068.c │ │ │ ├── ippcpsgx_disp00069.c │ │ │ ├── ippcpsgx_disp00070.c │ │ │ ├── ippcpsgx_disp00071.c │ │ │ ├── ippcpsgx_disp00072.c │ │ │ ├── ippcpsgx_disp00073.c │ │ │ ├── ippcpsgx_disp00074.c │ │ │ ├── ippcpsgx_disp00075.c │ │ │ ├── ippcpsgx_disp00076.c │ │ │ ├── ippcpsgx_disp00077.c │ │ │ ├── ippcpsgx_disp00078.c │ │ │ ├── ippcpsgx_disp00079.c │ │ │ ├── ippcpsgx_disp00080.c │ │ │ ├── ippcpsgx_disp00081.c │ │ │ ├── ippcpsgx_disp00082.c │ │ │ ├── ippcpsgx_disp00083.c │ │ │ ├── ippcpsgx_disp00084.c │ │ │ ├── ippcpsgx_disp00085.c │ │ │ ├── ippcpsgx_disp00086.c │ │ │ ├── ippcpsgx_disp00087.c │ │ │ ├── ippcpsgx_disp00088.c │ │ │ ├── ippcpsgx_disp00089.c │ │ │ ├── ippcpsgx_disp00090.c │ │ │ ├── ippcpsgx_disp00091.c │ │ │ ├── ippcpsgx_disp00092.c │ │ │ ├── ippcpsgx_disp00093.c │ │ │ ├── ippcpsgx_disp00094.c │ │ │ ├── ippcpsgx_disp00095.c │ │ │ ├── ippcpsgx_disp00096.c │ │ │ ├── ippcpsgx_disp00097.c │ │ │ ├── ippcpsgx_disp00098.c │ │ │ ├── ippcpsgx_disp00099.c │ │ │ ├── ippcpsgx_disp00100.c │ │ │ ├── ippcpsgx_disp00101.c │ │ │ ├── ippcpsgx_disp00102.c │ │ │ ├── ippcpsgx_disp00103.c │ │ │ ├── ippcpsgx_disp00104.c │ │ │ ├── ippcpsgx_disp00105.c │ │ │ ├── ippcpsgx_disp00106.c │ │ │ ├── ippcpsgx_disp00107.c │ │ │ ├── ippcpsgx_disp00108.c │ │ │ ├── ippcpsgx_disp00109.c │ │ │ ├── ippcpsgx_disp00110.c │ │ │ ├── ippcpsgx_disp00111.c │ │ │ ├── ippcpsgx_disp00112.c │ │ │ ├── ippcpsgx_disp00113.c │ │ │ ├── ippcpsgx_disp00114.c │ │ │ ├── ippcpsgx_disp00115.c │ │ │ ├── ippcpsgx_disp00116.c │ │ │ ├── ippcpsgx_disp00117.c │ │ │ ├── ippcpsgx_disp00118.c │ │ │ ├── ippcpsgx_disp00119.c │ │ │ ├── ippcpsgx_disp00120.c │ │ │ ├── ippcpsgx_disp00121.c │ │ │ ├── ippcpsgx_disp00122.c │ │ │ ├── ippcpsgx_disp00123.c │ │ │ ├── ippcpsgx_disp00124.c │ │ │ ├── ippcpsgx_disp00125.c │ │ │ ├── ippcpsgx_disp00126.c │ │ │ ├── ippcpsgx_disp00127.c │ │ │ ├── ippcpsgx_disp00128.c │ │ │ ├── ippcpsgx_disp00129.c │ │ │ ├── ippcpsgx_disp00130.c │ │ │ ├── ippcpsgx_disp00131.c │ │ │ ├── ippcpsgx_disp00132.c │ │ │ ├── ippcpsgx_disp00133.c │ │ │ ├── ippcpsgx_disp00134.c │ │ │ ├── ippcpsgx_disp00135.c │ │ │ ├── ippcpsgx_disp00136.c │ │ │ ├── ippcpsgx_disp00137.c │ │ │ ├── ippcpsgx_disp00138.c │ │ │ ├── ippcpsgx_disp00139.c │ │ │ ├── ippcpsgx_disp00140.c │ │ │ ├── ippcpsgx_disp00141.c │ │ │ ├── ippcpsgx_disp00142.c │ │ │ ├── ippcpsgx_disp00143.c │ │ │ ├── ippcpsgx_disp00144.c │ │ │ ├── ippcpsgx_disp00145.c │ │ │ ├── ippcpsgx_disp00146.c │ │ │ ├── ippcpsgx_disp00147.c │ │ │ ├── ippcpsgx_disp00148.c │ │ │ ├── ippcpsgx_disp00149.c │ │ │ ├── ippcpsgx_disp00150.c │ │ │ ├── ippcpsgx_disp00151.c │ │ │ ├── ippcpsgx_disp00152.c │ │ │ ├── ippcpsgx_disp00153.c │ │ │ ├── ippcpsgx_disp00154.c │ │ │ ├── ippcpsgx_disp00155.c │ │ │ ├── ippcpsgx_disp00156.c │ │ │ ├── ippcpsgx_disp00157.c │ │ │ ├── ippcpsgx_disp00158.c │ │ │ ├── ippcpsgx_disp00159.c │ │ │ ├── ippcpsgx_disp00160.c │ │ │ ├── ippcpsgx_disp00161.c │ │ │ ├── ippcpsgx_disp00162.c │ │ │ ├── ippcpsgx_disp00163.c │ │ │ ├── ippcpsgx_disp00164.c │ │ │ ├── ippcpsgx_disp00165.c │ │ │ ├── ippcpsgx_disp00166.c │ │ │ ├── ippcpsgx_disp00167.c │ │ │ ├── ippcpsgx_disp00168.c │ │ │ ├── ippcpsgx_disp00169.c │ │ │ ├── ippcpsgx_disp00170.c │ │ │ ├── ippcpsgx_disp00171.c │ │ │ ├── ippcpsgx_disp00172.c │ │ │ ├── ippcpsgx_disp00173.c │ │ │ ├── ippcpsgx_disp00174.c │ │ │ ├── ippcpsgx_disp00175.c │ │ │ ├── ippcpsgx_disp00176.c │ │ │ ├── ippcpsgx_disp00177.c │ │ │ ├── ippcpsgx_disp00178.c │ │ │ ├── ippcpsgx_disp00179.c │ │ │ ├── ippcpsgx_disp00180.c │ │ │ ├── ippcpsgx_disp00181.c │ │ │ ├── ippcpsgx_disp00182.c │ │ │ ├── ippcpsgx_disp00183.c │ │ │ ├── ippcpsgx_disp00184.c │ │ │ ├── ippcpsgx_disp00185.c │ │ │ ├── ippcpsgx_disp00186.c │ │ │ ├── ippcpsgx_disp00187.c │ │ │ ├── ippcpsgx_disp00188.c │ │ │ ├── ippcpsgx_disp00189.c │ │ │ ├── ippcpsgx_disp00190.c │ │ │ ├── ippcpsgx_disp00191.c │ │ │ ├── ippcpsgx_disp00192.c │ │ │ ├── ippcpsgx_disp00193.c │ │ │ ├── ippcpsgx_disp00194.c │ │ │ ├── ippcpsgx_disp00195.c │ │ │ ├── ippcpsgx_disp00196.c │ │ │ ├── ippcpsgx_disp00197.c │ │ │ ├── ippcpsgx_disp00198.c │ │ │ ├── ippcpsgx_disp00199.c │ │ │ ├── ippcpsgx_disp00200.c │ │ │ ├── ippcpsgx_disp00201.c │ │ │ ├── ippcpsgx_disp00202.c │ │ │ ├── ippcpsgx_disp00203.c │ │ │ ├── ippcpsgx_disp00204.c │ │ │ ├── ippcpsgx_disp00205.c │ │ │ ├── ippcpsgx_disp00206.c │ │ │ ├── ippcpsgx_disp00207.c │ │ │ ├── ippcpsgx_disp00208.c │ │ │ ├── ippcpsgx_disp00209.c │ │ │ ├── ippcpsgx_disp00210.c │ │ │ ├── ippcpsgx_disp00211.c │ │ │ ├── ippcpsgx_disp00212.c │ │ │ ├── ippcpsgx_disp00213.c │ │ │ ├── ippcpsgx_disp00214.c │ │ │ ├── ippcpsgx_disp00215.c │ │ │ ├── ippcpsgx_disp00216.c │ │ │ ├── ippcpsgx_disp00217.c │ │ │ ├── ippcpsgx_disp00218.c │ │ │ ├── ippcpsgx_disp00219.c │ │ │ ├── ippcpsgx_disp00220.c │ │ │ ├── ippcpsgx_disp00221.c │ │ │ ├── ippcpsgx_disp00222.c │ │ │ ├── ippcpsgx_disp00223.c │ │ │ ├── ippcpsgx_disp00224.c │ │ │ ├── ippcpsgx_disp00225.c │ │ │ ├── ippcpsgx_disp00226.c │ │ │ ├── ippcpsgx_disp00227.c │ │ │ ├── ippcpsgx_disp00228.c │ │ │ ├── ippcpsgx_disp00229.c │ │ │ ├── ippcpsgx_disp00230.c │ │ │ ├── ippcpsgx_disp00231.c │ │ │ ├── ippcpsgx_disp00232.c │ │ │ ├── ippcpsgx_disp00233.c │ │ │ ├── ippcpsgx_disp00234.c │ │ │ ├── ippcpsgx_disp00235.c │ │ │ ├── ippcpsgx_disp00236.c │ │ │ ├── ippcpsgx_disp00237.c │ │ │ ├── ippcpsgx_disp00238.c │ │ │ ├── ippcpsgx_disp00239.c │ │ │ ├── ippcpsgx_disp00240.c │ │ │ ├── ippcpsgx_disp00241.c │ │ │ ├── ippcpsgx_disp00242.c │ │ │ ├── ippcpsgx_disp00243.c │ │ │ ├── ippcpsgx_disp00244.c │ │ │ ├── ippcpsgx_disp00245.c │ │ │ ├── ippcpsgx_disp00246.c │ │ │ ├── ippcpsgx_disp00247.c │ │ │ ├── ippcpsgx_disp00248.c │ │ │ ├── ippcpsgx_disp00249.c │ │ │ ├── ippcpsgx_disp00250.c │ │ │ ├── ippcpsgx_disp00251.c │ │ │ ├── ippcpsgx_disp00252.c │ │ │ ├── ippcpsgx_disp00253.c │ │ │ ├── ippcpsgx_disp00254.c │ │ │ ├── ippcpsgx_disp00255.c │ │ │ ├── ippcpsgx_disp00256.c │ │ │ ├── ippcpsgx_disp00257.c │ │ │ ├── ippcpsgx_disp00258.c │ │ │ ├── ippcpsgx_disp00259.c │ │ │ ├── ippcpsgx_disp00260.c │ │ │ ├── ippcpsgx_disp00261.c │ │ │ ├── ippcpsgx_disp00262.c │ │ │ ├── ippcpsgx_disp00263.c │ │ │ ├── ippcpsgx_disp00264.c │ │ │ ├── ippcpsgx_disp00265.c │ │ │ ├── ippcpsgx_disp00266.c │ │ │ ├── ippcpsgx_disp00267.c │ │ │ ├── ippcpsgx_disp00268.c │ │ │ ├── ippcpsgx_disp00269.c │ │ │ ├── ippcpsgx_disp00270.c │ │ │ ├── ippcpsgx_disp00271.c │ │ │ ├── ippcpsgx_disp00272.c │ │ │ ├── ippcpsgx_disp00273.c │ │ │ ├── ippcpsgx_disp00274.c │ │ │ ├── ippcpsgx_disp00275.c │ │ │ ├── ippcpsgx_disp00276.c │ │ │ ├── ippcpsgx_disp00277.c │ │ │ ├── ippcpsgx_disp00278.c │ │ │ ├── ippcpsgx_disp00279.c │ │ │ ├── ippcpsgx_disp00280.c │ │ │ ├── ippcpsgx_disp00281.c │ │ │ ├── ippcpsgx_disp00282.c │ │ │ ├── ippcpsgx_disp00283.c │ │ │ ├── ippcpsgx_disp00284.c │ │ │ ├── ippcpsgx_disp00285.c │ │ │ ├── ippcpsgx_disp00286.c │ │ │ ├── ippcpsgx_disp00287.c │ │ │ ├── ippcpsgx_disp00288.c │ │ │ ├── ippcpsgx_disp00289.c │ │ │ ├── ippcpsgx_disp00290.c │ │ │ ├── ippcpsgx_disp00291.c │ │ │ ├── ippcpsgx_disp00292.c │ │ │ ├── ippcpsgx_disp00293.c │ │ │ ├── ippcpsgx_disp00294.c │ │ │ ├── ippcpsgx_disp00295.c │ │ │ ├── ippcpsgx_disp00296.c │ │ │ ├── ippcpsgx_disp00297.c │ │ │ ├── ippcpsgx_disp00298.c │ │ │ ├── ippcpsgx_disp00299.c │ │ │ ├── ippcpsgx_disp00300.c │ │ │ ├── ippcpsgx_disp00301.c │ │ │ ├── ippcpsgx_disp00302.c │ │ │ ├── ippcpsgx_disp00303.c │ │ │ ├── ippcpsgx_disp00304.c │ │ │ ├── ippcpsgx_disp00305.c │ │ │ ├── ippcpsgx_disp00306.c │ │ │ ├── ippcpsgx_disp00307.c │ │ │ ├── ippcpsgx_disp00308.c │ │ │ ├── ippcpsgx_disp00309.c │ │ │ ├── ippcpsgx_disp00310.c │ │ │ ├── ippcpsgx_disp00311.c │ │ │ ├── ippcpsgx_disp00312.c │ │ │ ├── ippcpsgx_disp00313.c │ │ │ ├── ippcpsgx_disp00314.c │ │ │ ├── ippcpsgx_disp00315.c │ │ │ ├── ippcpsgx_disp00316.c │ │ │ ├── ippcpsgx_disp00317.c │ │ │ ├── ippcpsgx_disp00318.c │ │ │ ├── ippcpsgx_disp00319.c │ │ │ ├── ippcpsgx_disp00320.c │ │ │ ├── ippcpsgx_disp00321.c │ │ │ ├── ippcpsgx_disp00322.c │ │ │ ├── ippcpsgx_disp00323.c │ │ │ ├── ippcpsgx_disp00324.c │ │ │ ├── ippcpsgx_disp00325.c │ │ │ ├── ippcpsgx_disp00326.c │ │ │ ├── ippcpsgx_disp00327.c │ │ │ ├── ippcpsgx_disp00328.c │ │ │ ├── ippcpsgx_disp00329.c │ │ │ ├── ippcpsgx_disp00330.c │ │ │ ├── ippcpsgx_disp00331.c │ │ │ ├── ippcpsgx_disp00332.c │ │ │ ├── ippcpsgx_disp00333.c │ │ │ ├── ippcpsgx_disp00334.c │ │ │ ├── ippcpsgx_disp00335.c │ │ │ ├── ippcpsgx_disp00336.c │ │ │ ├── ippcpsgx_disp00337.c │ │ │ ├── ippcpsgx_disp00338.c │ │ │ ├── ippcpsgx_disp00339.c │ │ │ ├── ippcpsgx_disp00340.c │ │ │ ├── ippcpsgx_disp00341.c │ │ │ ├── ippcpsgx_disp00342.c │ │ │ ├── ippcpsgx_disp00343.c │ │ │ ├── ippcpsgx_disp00344.c │ │ │ ├── ippcpsgx_disp00345.c │ │ │ ├── ippcpsgx_disp00346.c │ │ │ ├── ippcpsgx_disp00347.c │ │ │ ├── ippcpsgx_disp00348.c │ │ │ ├── ippcpsgx_disp00349.c │ │ │ ├── ippcpsgx_disp00350.c │ │ │ ├── ippcpsgx_disp00351.c │ │ │ ├── ippcpsgx_disp00352.c │ │ │ ├── ippcpsgx_disp00353.c │ │ │ ├── ippcpsgx_disp00354.c │ │ │ ├── ippcpsgx_disp00355.c │ │ │ ├── ippcpsgx_disp00356.c │ │ │ ├── ippcpsgx_disp00357.c │ │ │ ├── ippcpsgx_disp00358.c │ │ │ ├── ippcpsgx_disp00359.c │ │ │ ├── ippcpsgx_disp00360.c │ │ │ ├── ippcpsgx_disp00361.c │ │ │ ├── ippcpsgx_disp00362.c │ │ │ ├── ippcpsgx_disp00363.c │ │ │ ├── ippcpsgx_disp00364.c │ │ │ ├── ippcpsgx_disp00365.c │ │ │ ├── ippcpsgx_disp00366.c │ │ │ ├── ippcpsgx_disp00367.c │ │ │ ├── ippcpsgx_disp00368.c │ │ │ ├── ippcpsgx_disp00369.c │ │ │ ├── ippcpsgx_disp00370.c │ │ │ ├── ippcpsgx_disp00371.c │ │ │ ├── ippcpsgx_disp00372.c │ │ │ ├── ippcpsgx_disp00373.c │ │ │ ├── ippcpsgx_disp00374.c │ │ │ ├── ippcpsgx_disp00375.c │ │ │ ├── ippcpsgx_disp00376.c │ │ │ ├── ippcpsgx_disp00377.c │ │ │ ├── ippcpsgx_disp00378.c │ │ │ ├── ippcpsgx_disp00379.c │ │ │ ├── ippcpsgx_disp00380.c │ │ │ ├── ippcpsgx_disp00381.c │ │ │ ├── ippcpsgx_disp00382.c │ │ │ ├── ippcpsgx_disp00383.c │ │ │ ├── ippcpsgx_disp00384.c │ │ │ ├── ippcpsgx_disp00385.c │ │ │ ├── ippcpsgx_disp00386.c │ │ │ ├── ippcpsgx_disp00387.c │ │ │ ├── ippcpsgx_disp00388.c │ │ │ ├── ippcpsgx_disp00389.c │ │ │ ├── ippcpsgx_disp00390.c │ │ │ ├── ippcpsgx_disp00391.c │ │ │ ├── ippcpsgx_disp00392.c │ │ │ ├── ippcpsgx_disp00393.c │ │ │ ├── ippcpsgx_disp00394.c │ │ │ ├── ippcpsgx_disp00395.c │ │ │ ├── ippcpsgx_disp00396.c │ │ │ ├── ippcpsgx_disp00397.c │ │ │ ├── ippcpsgx_disp00398.c │ │ │ ├── ippcpsgx_disp00399.c │ │ │ ├── ippcpsgx_disp00400.c │ │ │ ├── ippcpsgx_disp00401.c │ │ │ ├── ippcpsgx_disp00402.c │ │ │ ├── ippcpsgx_disp00403.c │ │ │ ├── ippcpsgx_disp00404.c │ │ │ ├── ippcpsgx_disp00405.c │ │ │ ├── ippcpsgx_disp00406.c │ │ │ ├── ippcpsgx_disp00407.c │ │ │ ├── ippcpsgx_disp00408.c │ │ │ ├── ippcpsgx_disp00409.c │ │ │ ├── ippcpsgx_disp00410.c │ │ │ ├── ippcpsgx_disp00411.c │ │ │ ├── ippcpsgx_disp00412.c │ │ │ ├── ippcpsgx_disp00413.c │ │ │ ├── ippcpsgx_disp00414.c │ │ │ ├── ippcpsgx_disp00415.c │ │ │ ├── ippcpsgx_disp00416.c │ │ │ ├── ippcpsgx_disp00417.c │ │ │ ├── ippcpsgx_disp00418.c │ │ │ ├── ippcpsgx_disp00419.c │ │ │ ├── ippcpsgx_disp00420.c │ │ │ ├── ippcpsgx_disp00421.c │ │ │ ├── ippcpsgx_disp00422.c │ │ │ ├── ippcpsgx_disp00423.c │ │ │ ├── ippcpsgx_disp00424.c │ │ │ ├── ippcpsgx_disp00425.c │ │ │ ├── ippcpsgx_disp00426.c │ │ │ ├── ippcpsgx_disp00427.c │ │ │ ├── ippcpsgx_disp00428.c │ │ │ ├── ippcpsgx_disp00429.c │ │ │ ├── ippcpsgx_disp00430.c │ │ │ ├── ippcpsgx_disp00431.c │ │ │ ├── ippcpsgx_disp00432.c │ │ │ ├── ippcpsgx_disp00433.c │ │ │ ├── ippcpsgx_disp00434.c │ │ │ ├── ippcpsgx_disp00435.c │ │ │ ├── ippcpsgx_disp00436.c │ │ │ ├── ippcpsgx_disp00437.c │ │ │ ├── ippcpsgx_disp00438.c │ │ │ ├── ippcpsgx_disp00439.c │ │ │ ├── ippcpsgx_disp00440.c │ │ │ ├── ippcpsgx_disp00441.c │ │ │ ├── ippcpsgx_disp00442.c │ │ │ ├── ippcpsgx_disp00443.c │ │ │ ├── ippcpsgx_disp00444.c │ │ │ ├── ippcpsgx_disp00445.c │ │ │ ├── ippcpsgx_disp00446.c │ │ │ ├── ippcpsgx_disp00447.c │ │ │ ├── ippcpsgx_disp00448.c │ │ │ ├── ippcpsgx_disp00449.c │ │ │ ├── ippcpsgx_disp00450.c │ │ │ ├── ippcpsgx_disp00451.c │ │ │ ├── ippcpsgx_disp00452.c │ │ │ ├── ippcpsgx_disp00453.c │ │ │ ├── ippcpsgx_disp00454.c │ │ │ ├── ippcpsgx_disp00455.c │ │ │ ├── ippcpsgx_disp00456.c │ │ │ ├── ippcpsgx_disp00457.c │ │ │ ├── ippcpsgx_disp00458.c │ │ │ ├── ippcpsgx_disp00459.c │ │ │ ├── ippcpsgx_disp00460.c │ │ │ ├── ippcpsgx_disp00461.c │ │ │ ├── ippcpsgx_disp00462.c │ │ │ ├── ippcpsgx_disp00463.c │ │ │ ├── ippcpsgx_disp00464.c │ │ │ ├── ippcpsgx_disp00465.c │ │ │ ├── ippcpsgx_disp00466.c │ │ │ ├── ippcpsgx_disp00467.c │ │ │ ├── ippcpsgx_disp00468.c │ │ │ ├── ippcpsgx_disp00469.c │ │ │ ├── ippcpsgx_disp00470.c │ │ │ ├── ippcpsgx_disp00471.c │ │ │ ├── ippcpsgx_disp00472.c │ │ │ ├── ippcpsgx_disp00473.c │ │ │ ├── ippcpsgx_disp00474.c │ │ │ ├── ippcpsgx_disp00475.c │ │ │ ├── ippcpsgx_disp00476.c │ │ │ ├── ippcpsgx_disp00477.c │ │ │ ├── ippcpsgx_disp00478.c │ │ │ ├── ippcpsgx_disp00479.c │ │ │ ├── ippcpsgx_disp00480.c │ │ │ ├── ippcpsgx_disp00481.c │ │ │ ├── ippcpsgx_disp00482.c │ │ │ ├── ippcpsgx_disp00483.c │ │ │ ├── ippcpsgx_disp00484.c │ │ │ ├── ippcpsgx_disp00485.c │ │ │ ├── ippcpsgx_disp00486.c │ │ │ ├── ippcpsgx_disp00487.c │ │ │ ├── ippcpsgx_disp00488.c │ │ │ ├── ippcpsgx_disp00489.c │ │ │ ├── ippcpsgx_disp00490.c │ │ │ ├── ippcpsgx_disp00491.c │ │ │ ├── ippcpsgx_disp00492.c │ │ │ ├── ippcpsgx_disp00493.c │ │ │ └── ippcpsgx_disp00494.c │ │ ├── sgx_aes_ctr.cpp │ │ ├── sgx_aes_gcm.cpp │ │ ├── sgx_cmac128.cpp │ │ ├── sgx_ecc256.cpp │ │ ├── sgx_ecc256_ecdsa.cpp │ │ ├── sgx_ecc256_internal.cpp │ │ ├── sgx_hmac.cpp │ │ ├── sgx_internal.cpp │ │ ├── sgx_rsa3072.cpp │ │ ├── sgx_rsa_encryption.cpp │ │ ├── sgx_rsa_internal.cpp │ │ ├── sgx_sha1.cpp │ │ ├── sgx_sha256.cpp │ │ ├── sgx_sha256_msg.cpp │ │ └── sgx_tcrypto_common.cpp │ ├── sgx_common_init_ipp.cpp │ ├── sgxssl │ │ ├── init_tcrypto_lib.cpp │ │ ├── sgx_aes_ctr.cpp │ │ ├── sgx_aes_gcm.cpp │ │ ├── sgx_cmac128.cpp │ │ ├── sgx_ecc256.cpp │ │ ├── sgx_ecc256_ecdsa.cpp │ │ ├── sgx_ecc256_internal.cpp │ │ ├── sgx_hmac.cpp │ │ ├── sgx_internal.cpp │ │ ├── sgx_rsa3072.cpp │ │ ├── sgx_rsa_encryption.cpp │ │ ├── sgx_sha1.cpp │ │ ├── sgx_sha256.cpp │ │ └── sgx_sha256_msg.cpp │ └── tcrypto_version.cpp ├── tlibcxx │ ├── LICENSE.TXT │ ├── Makefile │ ├── README.sgx │ ├── include │ │ ├── CMakeLists.txt │ │ ├── __bit_reference │ │ ├── __bsd_locale_defaults.h │ │ ├── __bsd_locale_fallbacks.h │ │ ├── __config │ │ ├── __config_site.in │ │ ├── __debug │ │ ├── __functional_03 │ │ ├── __functional_base │ │ ├── __functional_base_03 │ │ ├── __hash_table │ │ ├── __locale │ │ ├── __mutex_base │ │ ├── __nullptr │ │ ├── __refstring │ │ ├── __sgx │ │ ├── __split_buffer │ │ ├── __sso_allocator │ │ ├── __std_stream │ │ ├── __threading_support │ │ ├── __tree │ │ ├── __tuple │ │ ├── __undef___deallocate │ │ ├── __undef_min_max │ │ ├── algorithm │ │ ├── array │ │ ├── atomic │ │ ├── bitset │ │ ├── cassert │ │ ├── ccomplex │ │ ├── cctype │ │ ├── cerrno │ │ ├── cfenv │ │ ├── cfloat │ │ ├── chrono │ │ ├── cinttypes │ │ ├── ciso646 │ │ ├── climits │ │ ├── clocale │ │ ├── cmath │ │ ├── codecvt │ │ ├── complex │ │ ├── complex.h │ │ ├── condition_variable │ │ ├── csetjmp │ │ ├── csignal │ │ ├── cstdarg │ │ ├── cstdbool │ │ ├── cstddef │ │ ├── cstdint │ │ ├── cstdio │ │ ├── cstdlib │ │ ├── cstring │ │ ├── ctgmath │ │ ├── ctime │ │ ├── cwchar │ │ ├── cwctype │ │ ├── deque │ │ ├── exception │ │ ├── experimental │ │ │ ├── __config │ │ │ ├── __memory │ │ │ ├── algorithm │ │ │ ├── any │ │ │ ├── chrono │ │ │ ├── deque │ │ │ ├── dynarray │ │ │ ├── filesystem │ │ │ ├── forward_list │ │ │ ├── functional │ │ │ ├── iterator │ │ │ ├── list │ │ │ ├── map │ │ │ ├── memory_resource │ │ │ ├── optional │ │ │ ├── propagate_const │ │ │ ├── ratio │ │ │ ├── regex │ │ │ ├── set │ │ │ ├── string │ │ │ ├── string_view │ │ │ ├── system_error │ │ │ ├── tuple │ │ │ ├── type_traits │ │ │ ├── unordered_map │ │ │ ├── unordered_set │ │ │ ├── utility │ │ │ └── vector │ │ ├── ext │ │ │ ├── __hash │ │ │ ├── hash_map │ │ │ └── hash_set │ │ ├── forward_list │ │ ├── fstream │ │ ├── functional │ │ ├── future │ │ ├── initializer_list │ │ ├── inttypes.h │ │ ├── iomanip │ │ ├── ios │ │ ├── iosfwd │ │ ├── iostream │ │ ├── istream │ │ ├── iterator │ │ ├── limits │ │ ├── list │ │ ├── locale │ │ ├── map │ │ ├── memory │ │ ├── module.modulemap │ │ ├── mutex │ │ ├── new │ │ ├── numeric │ │ ├── ostream │ │ ├── queue │ │ ├── random │ │ ├── ratio │ │ ├── regex │ │ ├── scoped_allocator │ │ ├── set │ │ ├── shared_mutex │ │ ├── sstream │ │ ├── stack │ │ ├── stdbool.h │ │ ├── stdexcept │ │ ├── streambuf │ │ ├── string │ │ ├── strstream │ │ ├── support │ │ │ ├── android │ │ │ │ └── locale_bionic.h │ │ │ ├── ibm │ │ │ │ ├── limits.h │ │ │ │ ├── locale_mgmt_aix.h │ │ │ │ ├── support.h │ │ │ │ └── xlocale.h │ │ │ ├── musl │ │ │ │ └── xlocale.h │ │ │ ├── newlib │ │ │ │ └── xlocale.h │ │ │ ├── sgx │ │ │ │ ├── __sgx_mutex_base │ │ │ │ ├── sgx_condition_variable │ │ │ │ ├── sgx_invoke │ │ │ │ └── sgx_mutex │ │ │ ├── solaris │ │ │ │ ├── floatingpoint.h │ │ │ │ ├── wchar.h │ │ │ │ └── xlocale.h │ │ │ ├── win32 │ │ │ │ ├── limits_win32.h │ │ │ │ ├── locale_mgmt_win32.h │ │ │ │ ├── locale_win32.h │ │ │ │ ├── math_win32.h │ │ │ │ └── support.h │ │ │ └── xlocale │ │ │ │ ├── __nop_locale_mgmt.h │ │ │ │ ├── __posix_l_fallback.h │ │ │ │ ├── __strtonum_fallback.h │ │ │ │ └── xlocale.h │ │ ├── system_error │ │ ├── tgmath.h │ │ ├── thread │ │ ├── tuple │ │ ├── type_traits │ │ ├── typeindex │ │ ├── typeinfo │ │ ├── unordered_map │ │ ├── unordered_set │ │ ├── utility │ │ ├── valarray │ │ └── vector │ └── src │ │ ├── algorithm.cpp │ │ ├── any.cpp │ │ ├── bind.cpp │ │ ├── chrono.cpp │ │ ├── condition_variable.cpp │ │ ├── debug.cpp │ │ ├── exception.cpp │ │ ├── experimental │ │ ├── filesystem │ │ │ ├── directory_iterator.cpp │ │ │ ├── operations.cpp │ │ │ └── path.cpp │ │ └── memory_resource.cpp │ │ ├── future.cpp │ │ ├── hash.cpp │ │ ├── include │ │ ├── atomic_support.h │ │ └── config_elast.h │ │ ├── ios.cpp │ │ ├── iostream.cpp │ │ ├── locale.cpp │ │ ├── memory.cpp │ │ ├── mutex.cpp │ │ ├── new.cpp │ │ ├── optional.cpp │ │ ├── random.cpp │ │ ├── regex.cpp │ │ ├── sgx_condition_variable.cpp │ │ ├── sgx_mutex.cpp │ │ ├── shared_mutex.cpp │ │ ├── stdexcept.cpp │ │ ├── string.cpp │ │ ├── strstream.cpp │ │ ├── support │ │ ├── solaris │ │ │ ├── README │ │ │ ├── mbsnrtowcs.inc │ │ │ ├── wcsnrtombs.inc │ │ │ └── xlocale.c │ │ └── win32 │ │ │ ├── locale_win32.cpp │ │ │ └── support.cpp │ │ ├── system_error.cpp │ │ ├── thread.cpp │ │ ├── typeinfo.cpp │ │ ├── utility.cpp │ │ └── valarray.cpp ├── tlibthread │ ├── Makefile │ ├── sethread_cond.cpp │ ├── sethread_internal.h │ ├── sethread_mutex.cpp │ ├── sethread_rwlock.cpp │ └── sethread_utils.cpp ├── tmm_rsrv │ ├── Makefile │ ├── mm_vrd.cpp │ ├── mm_vrd.h │ ├── mm_vrd_util.cpp │ ├── mm_vrd_util.h │ ├── sgx_rsrv_mem.cpp │ └── sgx_rsrv_mem_init.cpp ├── trts │ ├── Makefile │ ├── check_point.cpp │ ├── check_point_cwrapper.cpp │ ├── init_enclave.cpp │ ├── init_optimized_lib.cpp │ ├── init_optimized_lib.h │ ├── linux │ │ ├── Makefile │ │ ├── elf_parser.c │ │ ├── elf_parser.h │ │ ├── global_init.c │ │ ├── metadata_sec.S │ │ ├── thunk.S │ │ ├── tls_support.c │ │ ├── trts_pic.S │ │ └── trts_pic.h │ ├── trts.cpp │ ├── trts_add_trim.cpp │ ├── trts_ecall.cpp │ ├── trts_emodpr.cpp │ ├── trts_emodpr.h │ ├── trts_internal.h │ ├── trts_internal_types.h │ ├── trts_nsp.cpp │ ├── trts_ocall.cpp │ ├── trts_shared_constants.h │ ├── trts_trim.cpp │ ├── trts_trim.h │ ├── trts_util.cpp │ ├── trts_util.h │ ├── trts_veh.cpp │ ├── trts_version.cpp │ └── trts_xsave.cpp ├── tsafecrt │ ├── Makefile │ └── pal │ │ ├── inc │ │ └── pal_mstypes.h │ │ └── src │ │ └── safecrt │ │ ├── internal_securecrt.h │ │ ├── mbusafecrt.c │ │ ├── mbusafecrt_internal.h │ │ ├── memcpy_s.c │ │ ├── memomve_s.c │ │ ├── output.inl │ │ ├── safecrt_output_s.c │ │ ├── safecrt_woutput_s.c │ │ ├── sprintf.c │ │ ├── strcat_s.c │ │ ├── strcpy_s.c │ │ ├── strncat_s.c │ │ ├── strncpy_s.c │ │ ├── strtok_s.c │ │ ├── swprintf_s.c │ │ ├── tcscat_s.inl │ │ ├── tcscpy_s.inl │ │ ├── tcsncat_s.inl │ │ ├── tcsncpy_s.inl │ │ ├── tcstok_s.inl │ │ ├── vsprintf.c │ │ ├── vswprint.c │ │ ├── wcscat_s.c │ │ ├── wcscpy_s.c │ │ ├── wcslen_s.c │ │ ├── wcsncat_s.c │ │ ├── wcsncpy_s.c │ │ ├── wcstok_s.c │ │ ├── xtoa_s.c │ │ ├── xtow_s.c │ │ └── xtox_s.inl ├── tseal │ ├── linux │ │ └── Makefile │ ├── tSeal.cpp │ ├── tSeal_aad.cpp │ ├── tSeal_internal.cpp │ ├── tSeal_internal.h │ └── tSeal_util.cpp ├── tsetjmp │ ├── Makefile │ └── _setjmp.S └── ukey_exchange │ ├── Makefile │ ├── ukey_exchange.cpp │ └── ukey_exchange_version.cpp ├── uninstall.sh ├── 陈力恒 针对Intel SGX SDK的安全增强框架技术研究与实现.docx ├── 陈力恒 针对Intel SGX SDK的安全增强框架技术研究与实现.pdf └── 陈力恒 针对Intel SGX SDK的安全增强框架技术研究与实现.pptx /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/License.txt -------------------------------------------------------------------------------- /Linux_SGXEclipsePlugin/build_directory/plugins/com.intel.sgx/discovery/test.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Linux_SGXEclipsePlugin/build_directory/plugins/com.intel.sgx/discovery/test.cpp: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/README.md -------------------------------------------------------------------------------- /SampleCode/SampleDNNL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/SampleCode/SampleDNNL/Makefile -------------------------------------------------------------------------------- /SampleCode/SampleEnclave/.gitignore: -------------------------------------------------------------------------------- 1 | .config_HW_DEBUG_x64 2 | app -------------------------------------------------------------------------------- /SampleCode/SealUnseal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/SampleCode/SealUnseal/Makefile -------------------------------------------------------------------------------- /SampleCode/Switchless/.gitignore: -------------------------------------------------------------------------------- 1 | app 2 | Enclave/policy_sgx_sef.cpp -------------------------------------------------------------------------------- /SampleCode/Switchless/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/SampleCode/Switchless/Makefile -------------------------------------------------------------------------------- /common/buildenv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/buildenv.mk -------------------------------------------------------------------------------- /common/inc/check_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/check_point.h -------------------------------------------------------------------------------- /common/inc/check_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/check_point.hpp -------------------------------------------------------------------------------- /common/inc/internal/ae_ipp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/ae_ipp.h -------------------------------------------------------------------------------- /common/inc/internal/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/arch.h -------------------------------------------------------------------------------- /common/inc/internal/cpputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/cpputil.h -------------------------------------------------------------------------------- /common/inc/internal/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/cpuid.h -------------------------------------------------------------------------------- /common/inc/internal/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/dh.h -------------------------------------------------------------------------------- /common/inc/internal/elf_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/elf_util.h -------------------------------------------------------------------------------- /common/inc/internal/inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/inst.h -------------------------------------------------------------------------------- /common/inc/internal/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/metadata.h -------------------------------------------------------------------------------- /common/inc/internal/routine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/routine.h -------------------------------------------------------------------------------- /common/inc/internal/rts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/rts.h -------------------------------------------------------------------------------- /common/inc/internal/rts_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/rts_cmd.h -------------------------------------------------------------------------------- /common/inc/internal/se_cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/se_cdefs.h -------------------------------------------------------------------------------- /common/inc/internal/se_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/se_event.h -------------------------------------------------------------------------------- /common/inc/internal/se_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/se_macro.h -------------------------------------------------------------------------------- /common/inc/internal/se_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/se_map.h -------------------------------------------------------------------------------- /common/inc/internal/se_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/se_stdio.h -------------------------------------------------------------------------------- /common/inc/internal/se_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/se_time.h -------------------------------------------------------------------------------- /common/inc/internal/se_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/se_trace.h -------------------------------------------------------------------------------- /common/inc/internal/se_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/se_types.h -------------------------------------------------------------------------------- /common/inc/internal/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/util.h -------------------------------------------------------------------------------- /common/inc/internal/xsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/internal/xsave.h -------------------------------------------------------------------------------- /common/inc/sgx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx.h -------------------------------------------------------------------------------- /common/inc/sgx_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_attributes.h -------------------------------------------------------------------------------- /common/inc/sgx_capable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_capable.h -------------------------------------------------------------------------------- /common/inc/sgx_cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_cpuid.h -------------------------------------------------------------------------------- /common/inc/sgx_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_defs.h -------------------------------------------------------------------------------- /common/inc/sgx_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_dh.h -------------------------------------------------------------------------------- /common/inc/sgx_ecp_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_ecp_types.h -------------------------------------------------------------------------------- /common/inc/sgx_edger8r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_edger8r.h -------------------------------------------------------------------------------- /common/inc/sgx_eid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_eid.h -------------------------------------------------------------------------------- /common/inc/sgx_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_error.h -------------------------------------------------------------------------------- /common/inc/sgx_intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_intrin.h -------------------------------------------------------------------------------- /common/inc/sgx_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_key.h -------------------------------------------------------------------------------- /common/inc/sgx_key_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_key_exchange.h -------------------------------------------------------------------------------- /common/inc/sgx_lfence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_lfence.h -------------------------------------------------------------------------------- /common/inc/sgx_pcl_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_pcl_guid.h -------------------------------------------------------------------------------- /common/inc/sgx_printf_dbg.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_printf_dbg.edl -------------------------------------------------------------------------------- /common/inc/sgx_pthread.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_pthread.edl -------------------------------------------------------------------------------- /common/inc/sgx_quote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_quote.h -------------------------------------------------------------------------------- /common/inc/sgx_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_report.h -------------------------------------------------------------------------------- /common/inc/sgx_rsrv_mem_mngr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_rsrv_mem_mngr.h -------------------------------------------------------------------------------- /common/inc/sgx_secure_align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_secure_align.h -------------------------------------------------------------------------------- /common/inc/sgx_spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_spinlock.h -------------------------------------------------------------------------------- /common/inc/sgx_tcrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_tcrypto.h -------------------------------------------------------------------------------- /common/inc/sgx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_thread.h -------------------------------------------------------------------------------- /common/inc/sgx_tkey_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_tkey_exchange.h -------------------------------------------------------------------------------- /common/inc/sgx_tprotected_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_tprotected_fs.h -------------------------------------------------------------------------------- /common/inc/sgx_trts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_trts.h -------------------------------------------------------------------------------- /common/inc/sgx_tseal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_tseal.h -------------------------------------------------------------------------------- /common/inc/sgx_tstdc.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_tstdc.edl -------------------------------------------------------------------------------- /common/inc/sgx_tswitchless.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_tswitchless.edl -------------------------------------------------------------------------------- /common/inc/sgx_uae_epid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_uae_epid.h -------------------------------------------------------------------------------- /common/inc/sgx_uae_launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_uae_launch.h -------------------------------------------------------------------------------- /common/inc/sgx_uae_quote_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_uae_quote_ex.h -------------------------------------------------------------------------------- /common/inc/sgx_uae_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_uae_service.h -------------------------------------------------------------------------------- /common/inc/sgx_ukey_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_ukey_exchange.h -------------------------------------------------------------------------------- /common/inc/sgx_urts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_urts.h -------------------------------------------------------------------------------- /common/inc/sgx_uswitchless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_uswitchless.h -------------------------------------------------------------------------------- /common/inc/sgx_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/sgx_utils.h -------------------------------------------------------------------------------- /common/inc/stdc++/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/stdc++/exception -------------------------------------------------------------------------------- /common/inc/stdc++/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/stdc++/new -------------------------------------------------------------------------------- /common/inc/stdc++/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/stdc++/typeinfo -------------------------------------------------------------------------------- /common/inc/tlibc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/assert.h -------------------------------------------------------------------------------- /common/inc/tlibc/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/complex.h -------------------------------------------------------------------------------- /common/inc/tlibc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/ctype.h -------------------------------------------------------------------------------- /common/inc/tlibc/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/endian.h -------------------------------------------------------------------------------- /common/inc/tlibc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/errno.h -------------------------------------------------------------------------------- /common/inc/tlibc/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/fenv.h -------------------------------------------------------------------------------- /common/inc/tlibc/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/float.h -------------------------------------------------------------------------------- /common/inc/tlibc/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/inttypes.h -------------------------------------------------------------------------------- /common/inc/tlibc/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/iso646.h -------------------------------------------------------------------------------- /common/inc/tlibc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/limits.h -------------------------------------------------------------------------------- /common/inc/tlibc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/math.h -------------------------------------------------------------------------------- /common/inc/tlibc/mbusafecrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/mbusafecrt.h -------------------------------------------------------------------------------- /common/inc/tlibc/printf_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/printf_dbg.h -------------------------------------------------------------------------------- /common/inc/tlibc/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/pthread.h -------------------------------------------------------------------------------- /common/inc/tlibc/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/setjmp.h -------------------------------------------------------------------------------- /common/inc/tlibc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/stdarg.h -------------------------------------------------------------------------------- /common/inc/tlibc/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/stdbool.h -------------------------------------------------------------------------------- /common/inc/tlibc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/stddef.h -------------------------------------------------------------------------------- /common/inc/tlibc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/stdint.h -------------------------------------------------------------------------------- /common/inc/tlibc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/stdio.h -------------------------------------------------------------------------------- /common/inc/tlibc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/stdlib.h -------------------------------------------------------------------------------- /common/inc/tlibc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/string.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/sys/_types.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/sys/cdefs.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/sys/endian.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/sys/fpu.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/sys/ieee.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/sys/limits.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/sys/stdint.h -------------------------------------------------------------------------------- /common/inc/tlibc/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/sys/types.h -------------------------------------------------------------------------------- /common/inc/tlibc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/time.h -------------------------------------------------------------------------------- /common/inc/tlibc/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/unistd.h -------------------------------------------------------------------------------- /common/inc/tlibc/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/wchar.h -------------------------------------------------------------------------------- /common/inc/tlibc/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/inc/tlibc/wctype.h -------------------------------------------------------------------------------- /common/se_wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/se_wrapper/Makefile -------------------------------------------------------------------------------- /common/se_wrapper_psw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/se_wrapper_psw/Makefile -------------------------------------------------------------------------------- /common/src/crypto_cmac_128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/crypto_cmac_128.cpp -------------------------------------------------------------------------------- /common/src/dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/dh.cpp -------------------------------------------------------------------------------- /common/src/ecp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/ecp.cpp -------------------------------------------------------------------------------- /common/src/linux/xsave_gnu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/linux/xsave_gnu.S -------------------------------------------------------------------------------- /common/src/se_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/se_event.c -------------------------------------------------------------------------------- /common/src/se_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/se_map.c -------------------------------------------------------------------------------- /common/src/se_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/se_memory.c -------------------------------------------------------------------------------- /common/src/se_rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/se_rwlock.c -------------------------------------------------------------------------------- /common/src/se_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/se_thread.c -------------------------------------------------------------------------------- /common/src/se_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/se_time.c -------------------------------------------------------------------------------- /common/src/se_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/se_trace.c -------------------------------------------------------------------------------- /common/src/sgx_memset_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/sgx_memset_s.cpp -------------------------------------------------------------------------------- /common/src/sgx_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/sgx_profile.cpp -------------------------------------------------------------------------------- /common/src/sgx_read_rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/sgx_read_rand.cpp -------------------------------------------------------------------------------- /common/src/sgx_sha256_128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/common/src/sgx_sha256_128.cpp -------------------------------------------------------------------------------- /docker/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/docker/build/Dockerfile -------------------------------------------------------------------------------- /docker/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/docker/build/README.md -------------------------------------------------------------------------------- /download_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/download_prebuilt.sh -------------------------------------------------------------------------------- /external/CppMicroServices/VERSION: -------------------------------------------------------------------------------- 1 | 4.0.0 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/doc/snippets/uServices-resources-cmake/hello.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libBWithStatic/resources/dynamic.txt: -------------------------------------------------------------------------------- 1 | dynamic 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libBWithStatic/resources/res.txt: -------------------------------------------------------------------------------- 1 | dynamic resource 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libBWithStatic/resources_static/res.txt: -------------------------------------------------------------------------------- 1 | static resource 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libBWithStatic/resources_static/static.txt: -------------------------------------------------------------------------------- 1 | static 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libRWithResources/resources/foo.txt: -------------------------------------------------------------------------------- 1 | foo and 2 | bar 3 | 4 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/bundles/libRWithResources/resources/icons/readme.txt: -------------------------------------------------------------------------------- 1 | icons 2 | -------------------------------------------------------------------------------- /external/CppMicroServices/framework/test/driver/TestResource.txt: -------------------------------------------------------------------------------- 1 | meant to be compiled into the test driver 2 | -------------------------------------------------------------------------------- /external/dnnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/dnnl/Makefile -------------------------------------------------------------------------------- /external/dnnl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/dnnl/README -------------------------------------------------------------------------------- /external/dnnl/sgx_dnnl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/dnnl/sgx_dnnl.patch -------------------------------------------------------------------------------- /external/epid-sdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/epid-sdk/CHANGELOG.md -------------------------------------------------------------------------------- /external/epid-sdk/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/epid-sdk/LICENSE.txt -------------------------------------------------------------------------------- /external/epid-sdk/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/epid-sdk/Makefile.in -------------------------------------------------------------------------------- /external/epid-sdk/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/epid-sdk/NOTICE.txt -------------------------------------------------------------------------------- /external/epid-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/epid-sdk/README.md -------------------------------------------------------------------------------- /external/epid-sdk/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/epid-sdk/SConstruct -------------------------------------------------------------------------------- /external/epid-sdk/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/epid-sdk/configure -------------------------------------------------------------------------------- /external/openmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/openmp/Makefile -------------------------------------------------------------------------------- /external/rdrand/rdrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/rdrand/rdrand.h -------------------------------------------------------------------------------- /external/rdrand/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/rdrand/src/README -------------------------------------------------------------------------------- /external/rdrand/src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/rdrand/src/configure -------------------------------------------------------------------------------- /external/rdrand/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/rdrand/src/main.c -------------------------------------------------------------------------------- /external/rdrand/src/rdrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/rdrand/src/rdrand.c -------------------------------------------------------------------------------- /external/rdrand/src/rdrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/rdrand/src/rdrand.h -------------------------------------------------------------------------------- /external/tinyxml2/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/tinyxml2/tinyxml2.cpp -------------------------------------------------------------------------------- /external/tinyxml2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/external/tinyxml2/tinyxml2.h -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/install.sh -------------------------------------------------------------------------------- /linux-sgx README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/linux-sgx README.md -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-enclave-common/libsgx-enclave-common-1.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-enclave-common/libsgx-enclave-common-1.0/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-enclave-common/libsgx-enclave-common-1.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-epid/libsgx-epid-1.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-epid/libsgx-epid-1.0/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-epid/libsgx-epid-1.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-headers/libsgx-headers-1.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-headers/libsgx-headers-1.0/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-headers/libsgx-headers-1.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-launch/libsgx-launch-1.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-launch/libsgx-launch-1.0/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-launch/libsgx-launch-1.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-quote-ex/libsgx-quote-ex-1.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-quote-ex/libsgx-quote-ex-1.0/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-quote-ex/libsgx-quote-ex-1.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-uae-service/libsgx-uae-service-1.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-uae-service/libsgx-uae-service-1.0/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-uae-service/libsgx-uae-service-1.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-urts/libsgx-urts-1.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-urts/libsgx-urts-1.0/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/installer/deb/libsgx-urts/libsgx-urts-1.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/installer/deb/sgx-aesm-service/sgx-aesm-service-1.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/installer/deb/sgx-aesm-service/sgx-aesm-service-1.0/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/installer/deb/sgx-aesm-service/sgx-aesm-service-1.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pre_ubuntu_20.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/pre_ubuntu_20.04.sh -------------------------------------------------------------------------------- /psw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/Makefile -------------------------------------------------------------------------------- /psw/ae/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/Makefile -------------------------------------------------------------------------------- /psw/ae/aesm_service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/aesm_service/Makefile -------------------------------------------------------------------------------- /psw/ae/buildenv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/buildenv.mk -------------------------------------------------------------------------------- /psw/ae/common/pek_pub_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/common/pek_pub_key.cpp -------------------------------------------------------------------------------- /psw/ae/common/se_sig_rl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/common/se_sig_rl.cpp -------------------------------------------------------------------------------- /psw/ae/common/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/common/version.cpp -------------------------------------------------------------------------------- /psw/ae/inc/aeerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/inc/aeerror.h -------------------------------------------------------------------------------- /psw/ae/inc/byte_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/inc/byte_order.h -------------------------------------------------------------------------------- /psw/ae/inc/internal/Epid_rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/inc/internal/Epid_rl.h -------------------------------------------------------------------------------- /psw/ae/inc/internal/pce_cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/inc/internal/pce_cert.h -------------------------------------------------------------------------------- /psw/ae/inc/internal/ref_le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/inc/internal/ref_le.h -------------------------------------------------------------------------------- /psw/ae/inc/internal/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/inc/internal/utility.h -------------------------------------------------------------------------------- /psw/ae/inc/se_sig_rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/inc/se_sig_rl.h -------------------------------------------------------------------------------- /psw/ae/le/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/le/Makefile -------------------------------------------------------------------------------- /psw/ae/le/config_linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/le/config_linux.xml -------------------------------------------------------------------------------- /psw/ae/le/launch_enclave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/le/launch_enclave.cpp -------------------------------------------------------------------------------- /psw/ae/le/launch_enclave.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/le/launch_enclave.edl -------------------------------------------------------------------------------- /psw/ae/le/launch_enclave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/le/launch_enclave.h -------------------------------------------------------------------------------- /psw/ae/pce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pce/Makefile -------------------------------------------------------------------------------- /psw/ae/pce/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pce/config.xml -------------------------------------------------------------------------------- /psw/ae/pce/pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pce/pce.cpp -------------------------------------------------------------------------------- /psw/ae/pce/pce.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pce/pce.edl -------------------------------------------------------------------------------- /psw/ae/pce/pce_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pce/pce_helper.cpp -------------------------------------------------------------------------------- /psw/ae/pve/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/Makefile -------------------------------------------------------------------------------- /psw/ae/pve/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/cipher.h -------------------------------------------------------------------------------- /psw/ae/pve/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/config.xml -------------------------------------------------------------------------------- /psw/ae/pve/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/helper.cpp -------------------------------------------------------------------------------- /psw/ae/pve/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/helper.h -------------------------------------------------------------------------------- /psw/ae/pve/msg3_parm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/msg3_parm.h -------------------------------------------------------------------------------- /psw/ae/pve/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/protocol.h -------------------------------------------------------------------------------- /psw/ae/pve/provision_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/provision_msg.h -------------------------------------------------------------------------------- /psw/ae/pve/provision_msg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/provision_msg1.cpp -------------------------------------------------------------------------------- /psw/ae/pve/provision_msg2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/provision_msg2.cpp -------------------------------------------------------------------------------- /psw/ae/pve/provision_msg3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/provision_msg3.cpp -------------------------------------------------------------------------------- /psw/ae/pve/provision_msg4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/provision_msg4.cpp -------------------------------------------------------------------------------- /psw/ae/pve/pve_rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/pve/pve_rng.cpp -------------------------------------------------------------------------------- /psw/ae/qe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/qe/Makefile -------------------------------------------------------------------------------- /psw/ae/qe/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/qe/config.xml -------------------------------------------------------------------------------- /psw/ae/qe/quoting_enclave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/qe/quoting_enclave.cpp -------------------------------------------------------------------------------- /psw/ae/qe/quoting_enclave.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/qe/quoting_enclave.edl -------------------------------------------------------------------------------- /psw/ae/ref_le/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/ref_le/Makefile -------------------------------------------------------------------------------- /psw/ae/ref_le/config_linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/ref_le/config_linux.xml -------------------------------------------------------------------------------- /psw/ae/ref_le/ref_le.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/ref_le/ref_le.cpp -------------------------------------------------------------------------------- /psw/ae/ref_le/ref_le.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/ref_le/ref_le.edl -------------------------------------------------------------------------------- /psw/ae/ref_le/ref_le.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/ae/ref_le/ref_le.md -------------------------------------------------------------------------------- /psw/enclave_common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/enclave_common/Makefile -------------------------------------------------------------------------------- /psw/uae_service/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/uae_service/config.h -------------------------------------------------------------------------------- /psw/uae_service/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/uae_service/linux/Makefile -------------------------------------------------------------------------------- /psw/urts/cpu_features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/cpu_features.cpp -------------------------------------------------------------------------------- /psw/urts/cpu_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/cpu_features.h -------------------------------------------------------------------------------- /psw/urts/cpu_features_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/cpu_features_ext.cpp -------------------------------------------------------------------------------- /psw/urts/create_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/create_param.h -------------------------------------------------------------------------------- /psw/urts/enclave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/enclave.cpp -------------------------------------------------------------------------------- /psw/urts/enclave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/enclave.h -------------------------------------------------------------------------------- /psw/urts/enclave_creator_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/enclave_creator_hw.h -------------------------------------------------------------------------------- /psw/urts/enclave_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/enclave_mutex.cpp -------------------------------------------------------------------------------- /psw/urts/enclave_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/enclave_thread.cpp -------------------------------------------------------------------------------- /psw/urts/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/file.h -------------------------------------------------------------------------------- /psw/urts/launch_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/launch_checker.cpp -------------------------------------------------------------------------------- /psw/urts/launch_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/launch_checker.h -------------------------------------------------------------------------------- /psw/urts/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/Makefile -------------------------------------------------------------------------------- /psw/urts/linux/edmm_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/edmm_utility.h -------------------------------------------------------------------------------- /psw/urts/linux/enter_enclave.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/enter_enclave.S -------------------------------------------------------------------------------- /psw/urts/linux/enter_enclave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/enter_enclave.h -------------------------------------------------------------------------------- /psw/urts/linux/get_thread_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/get_thread_id.h -------------------------------------------------------------------------------- /psw/urts/linux/isgx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/isgx_user.h -------------------------------------------------------------------------------- /psw/urts/linux/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/misc.cpp -------------------------------------------------------------------------------- /psw/urts/linux/read_xcr0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/read_xcr0.h -------------------------------------------------------------------------------- /psw/urts/linux/sig_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/sig_handler.cpp -------------------------------------------------------------------------------- /psw/urts/linux/sig_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/sig_handler.h -------------------------------------------------------------------------------- /psw/urts/linux/urts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/urts.cpp -------------------------------------------------------------------------------- /psw/urts/linux/urts.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/urts.lds -------------------------------------------------------------------------------- /psw/urts/linux/urts_emodpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/urts_emodpr.cpp -------------------------------------------------------------------------------- /psw/urts/linux/urts_emodpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/urts_emodpr.h -------------------------------------------------------------------------------- /psw/urts/linux/urts_trim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/urts_trim.cpp -------------------------------------------------------------------------------- /psw/urts/linux/urts_trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/linux/urts_trim.h -------------------------------------------------------------------------------- /psw/urts/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/loader.cpp -------------------------------------------------------------------------------- /psw/urts/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/loader.h -------------------------------------------------------------------------------- /psw/urts/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/node.cpp -------------------------------------------------------------------------------- /psw/urts/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/node.h -------------------------------------------------------------------------------- /psw/urts/parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/parser/Makefile -------------------------------------------------------------------------------- /psw/urts/parser/binparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/parser/binparser.h -------------------------------------------------------------------------------- /psw/urts/parser/clearvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/parser/clearvars.h -------------------------------------------------------------------------------- /psw/urts/parser/elf32parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/parser/elf32parser.h -------------------------------------------------------------------------------- /psw/urts/parser/elf64parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/parser/elf64parser.h -------------------------------------------------------------------------------- /psw/urts/parser/elfparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/parser/elfparser.cpp -------------------------------------------------------------------------------- /psw/urts/parser/elfparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/parser/elfparser.h -------------------------------------------------------------------------------- /psw/urts/parser/section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/parser/section.cpp -------------------------------------------------------------------------------- /psw/urts/parser/section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/parser/section.h -------------------------------------------------------------------------------- /psw/urts/prd_css_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/prd_css_util.cpp -------------------------------------------------------------------------------- /psw/urts/prd_css_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/prd_css_util.h -------------------------------------------------------------------------------- /psw/urts/routine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/routine.cpp -------------------------------------------------------------------------------- /psw/urts/se_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/se_detect.cpp -------------------------------------------------------------------------------- /psw/urts/se_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/se_detect.h -------------------------------------------------------------------------------- /psw/urts/se_ocalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/se_ocalls.cpp -------------------------------------------------------------------------------- /psw/urts/section_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/section_info.h -------------------------------------------------------------------------------- /psw/urts/tcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/tcs.cpp -------------------------------------------------------------------------------- /psw/urts/tcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/tcs.h -------------------------------------------------------------------------------- /psw/urts/urts_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/urts_com.h -------------------------------------------------------------------------------- /psw/urts/urts_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/urts_version.cpp -------------------------------------------------------------------------------- /psw/urts/urts_xsave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/psw/urts/urts_xsave.cpp -------------------------------------------------------------------------------- /reinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/reinstall.sh -------------------------------------------------------------------------------- /sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/Makefile -------------------------------------------------------------------------------- /sdk/Makefile.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/Makefile.source -------------------------------------------------------------------------------- /sdk/compiler-rt/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/LICENSE.TXT -------------------------------------------------------------------------------- /sdk/compiler-rt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/Makefile -------------------------------------------------------------------------------- /sdk/compiler-rt/addtf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/addtf3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ashldi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/ashldi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ashlti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/ashlti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ashrdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/ashrdi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ashrti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/ashrti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/clear_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/clear_cache.c -------------------------------------------------------------------------------- /sdk/compiler-rt/clzdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/clzdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/clzsi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/clzsi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/clzti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/clzti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/cmpdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/cmpdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/cmpti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/cmpti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/comparetf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/comparetf2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ctzdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/ctzdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ctzsi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/ctzsi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ctzti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/ctzti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/divdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/divdi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/divsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/divsi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/divtf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/divtf3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/divti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/divti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/extenddftf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/extenddftf2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ffsdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/ffsdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ffsti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/ffsti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/fixtfsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/fixtfsi.c -------------------------------------------------------------------------------- /sdk/compiler-rt/floatsitf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/floatsitf.c -------------------------------------------------------------------------------- /sdk/compiler-rt/fp_extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/fp_extend.h -------------------------------------------------------------------------------- /sdk/compiler-rt/fp_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/fp_lib.h -------------------------------------------------------------------------------- /sdk/compiler-rt/fp_trunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/fp_trunc.h -------------------------------------------------------------------------------- /sdk/compiler-rt/int_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/int_lib.h -------------------------------------------------------------------------------- /sdk/compiler-rt/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/int_types.h -------------------------------------------------------------------------------- /sdk/compiler-rt/int_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/int_util.h -------------------------------------------------------------------------------- /sdk/compiler-rt/lshrdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/lshrdi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/lshrti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/lshrti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/moddi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/moddi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/modsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/modsi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/modti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/modti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/muldi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/muldi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/multf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/multf3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/multi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/multi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/negdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/negdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/negti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/negti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/paritydi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/paritydi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/paritysi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/paritysi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/parityti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/parityti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/stack_chk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/stack_chk.c -------------------------------------------------------------------------------- /sdk/compiler-rt/subtf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/subtf3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ucmpdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/ucmpdi2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/ucmpti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/ucmpti2.c -------------------------------------------------------------------------------- /sdk/compiler-rt/udivdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/udivdi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/udivsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/udivsi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/udivti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/udivti3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/umoddi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/umoddi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/umodsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/umodsi3.c -------------------------------------------------------------------------------- /sdk/compiler-rt/umodti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/compiler-rt/umodti3.c -------------------------------------------------------------------------------- /sdk/cpprt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/cpprt/Makefile -------------------------------------------------------------------------------- /sdk/cpprt/linux/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/cpprt/linux/atomic.h -------------------------------------------------------------------------------- /sdk/cpprt/linux/cxxabi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/cpprt/linux/cxxabi.h -------------------------------------------------------------------------------- /sdk/cpprt/linux/dwarf_eh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/cpprt/linux/dwarf_eh.h -------------------------------------------------------------------------------- /sdk/cpprt/linux/guard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/cpprt/linux/guard.cc -------------------------------------------------------------------------------- /sdk/cpprt/linux/libunwind/doc/unw_init_local2.man: -------------------------------------------------------------------------------- 1 | .so man3/unw_init_local.3 2 | -------------------------------------------------------------------------------- /sdk/cpprt/linux/libunwind/src/ia64/mk_Lcursor_i.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include "mk_Gcursor_i.c" 3 | -------------------------------------------------------------------------------- /sdk/cpprt/linux/libunwind/tests/run-ptrace-mapper: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./test-ptrace -c -n -t ./mapper $* 3 | -------------------------------------------------------------------------------- /sdk/cpprt/linux/typeinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/cpprt/linux/typeinfo.cc -------------------------------------------------------------------------------- /sdk/cpprt/linux/typeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/cpprt/linux/typeinfo.h -------------------------------------------------------------------------------- /sdk/cpprt/linux/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/cpprt/linux/unwind.h -------------------------------------------------------------------------------- /sdk/cpprt/tcxx_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/cpprt/tcxx_version.cpp -------------------------------------------------------------------------------- /sdk/ec_dh_lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/ec_dh_lib/Makefile -------------------------------------------------------------------------------- /sdk/ec_dh_lib/ec_dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/ec_dh_lib/ec_dh.cpp -------------------------------------------------------------------------------- /sdk/edger8r/linux/Ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/edger8r/linux/Ast.ml -------------------------------------------------------------------------------- /sdk/edger8r/linux/Lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/edger8r/linux/Lexer.mll -------------------------------------------------------------------------------- /sdk/edger8r/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/edger8r/linux/Makefile -------------------------------------------------------------------------------- /sdk/edger8r/linux/Plugin.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/edger8r/linux/Plugin.ml -------------------------------------------------------------------------------- /sdk/edger8r/linux/Util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/edger8r/linux/Util.ml -------------------------------------------------------------------------------- /sdk/gperftools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/gperftools/Makefile -------------------------------------------------------------------------------- /sdk/gperftools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/gperftools/README -------------------------------------------------------------------------------- /sdk/gperftools/gperftools-2.7/packages/deb/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /sdk/gperftools/gperftools-2.7/packages/deb/libgperftools0.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | usr/bin 3 | -------------------------------------------------------------------------------- /sdk/gperftools/gperftools-2.7/packages/deb/libgperftools0.manpages: -------------------------------------------------------------------------------- 1 | docs/pprof.1 2 | -------------------------------------------------------------------------------- /sdk/printf_dbg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/printf_dbg/Makefile -------------------------------------------------------------------------------- /sdk/pthread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/pthread/Makefile -------------------------------------------------------------------------------- /sdk/pthread/pthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/pthread/pthread.cpp -------------------------------------------------------------------------------- /sdk/pthread/pthread_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/pthread/pthread_imp.h -------------------------------------------------------------------------------- /sdk/pthread/pthread_tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/pthread/pthread_tls.cpp -------------------------------------------------------------------------------- /sdk/selib/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/selib/linux/Makefile -------------------------------------------------------------------------------- /sdk/selib/sgx_get_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/selib/sgx_get_key.cpp -------------------------------------------------------------------------------- /sdk/simulation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/simulation/Makefile -------------------------------------------------------------------------------- /sdk/switchless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/switchless/README.md -------------------------------------------------------------------------------- /sdk/tkey_exchange/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tkey_exchange/Makefile -------------------------------------------------------------------------------- /sdk/tlibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/Makefile -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/arith.h -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/dmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/dmisc.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/dtoa.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gd_qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/gd_qnan.h -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/gdtoa.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gdtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/gdtoa.h -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gdtoaimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/gdtoaimp.h -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gethex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/gethex.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/gmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/gmisc.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/hd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/hd_init.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/hdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/hdtoa.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/hexnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/hexnan.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/ldtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/ldtoa.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/locks.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/misc.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/smisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/smisc.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/strtod.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtodg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/strtodg.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/strtof.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/strtold.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/strtord.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/strtorx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/strtorx.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/sum.c -------------------------------------------------------------------------------- /sdk/tlibc/gdtoa/ulp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gdtoa/ulp.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/alloca.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/alloca.S -------------------------------------------------------------------------------- /sdk/tlibc/gen/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/assert.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/ctype_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/ctype_.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/errlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/errlist.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/errno.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/fpclassify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/fpclassify.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/fpclassifyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/fpclassifyl.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/getpagesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/getpagesize.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/infinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/infinity.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/isctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/isctype.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/isfinite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/isfinite.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/isfinitel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/isfinitel.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/isinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/isinf.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/isinfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/isinfl.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/isnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/isnan.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/isnanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/isnanl.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/isnormal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/isnormal.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/isnormall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/isnormall.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/nan.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/sbrk.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/se_cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/se_cpuid.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/signbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/signbit.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/signbitl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/signbitl.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/spinlock.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/tolower_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/tolower_.c -------------------------------------------------------------------------------- /sdk/tlibc/gen/toupper_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/gen/toupper_.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/btowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/locale/btowc.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/mblen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/locale/mblen.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/mbrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/locale/mbrlen.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/mbstowcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/locale/mbstowcs.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/mbtowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/locale/mbtowc.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/runetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/locale/runetype.h -------------------------------------------------------------------------------- /sdk/tlibc/locale/wcscoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/locale/wcscoll.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/wcstombs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/locale/wcstombs.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/wcsxfrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/locale/wcsxfrm.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/wctob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/locale/wctob.c -------------------------------------------------------------------------------- /sdk/tlibc/locale/wctomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/locale/wctomb.c -------------------------------------------------------------------------------- /sdk/tlibc/math/b_exp__D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/b_exp__D.c -------------------------------------------------------------------------------- /sdk/tlibc/math/b_log__D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/b_log__D.c -------------------------------------------------------------------------------- /sdk/tlibc/math/b_tgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/b_tgamma.c -------------------------------------------------------------------------------- /sdk/tlibc/math/cacos.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/cacos.S -------------------------------------------------------------------------------- /sdk/tlibc/math/cacosh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/cacosh.S -------------------------------------------------------------------------------- /sdk/tlibc/math/e_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_acos.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_acosf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_acosh.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_acoshf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_acoshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_acoshl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_acosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_acosl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_asin.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_asinf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_asinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_asinl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_atan2.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_atan2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_atan2f.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_atan2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_atan2l.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_atanh.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_atanhf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_atanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_atanhl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_cosh.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_coshf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_coshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_coshl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_exp.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_expf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_expl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_expl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_fmod.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_fmodf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_fmodl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_fmodl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_hypot.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_hypotf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_hypotl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_hypotl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_j0.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_j0f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_j0f.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_j1.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_j1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_j1f.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_jn.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_jnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_jnf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_lgamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_lgamma_r.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_log.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_log10.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_log10f.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_log10l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_log10l.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_log2.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_log2f.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_log2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_log2l.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_logf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_logl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_logl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_pow.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_powf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_powl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_powl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_rem_pio2.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_scalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_scalb.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_scalbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_scalbf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_sinh.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_sinhf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_sinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_sinhl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_sqrt.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_sqrtf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_sqrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_sqrtl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/e_tgammal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/e_tgammal.c -------------------------------------------------------------------------------- /sdk/tlibc/math/exp10_gen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/exp10_gen.S -------------------------------------------------------------------------------- /sdk/tlibc/math/exp10f_gen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/exp10f_gen.S -------------------------------------------------------------------------------- /sdk/tlibc/math/exp10l.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/exp10l.S -------------------------------------------------------------------------------- /sdk/tlibc/math/exp_table.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/exp_table.S -------------------------------------------------------------------------------- /sdk/tlibc/math/expf_table.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/expf_table.S -------------------------------------------------------------------------------- /sdk/tlibc/math/expl_table.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/expl_table.S -------------------------------------------------------------------------------- /sdk/tlibc/math/fenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/fenv.c -------------------------------------------------------------------------------- /sdk/tlibc/math/invtrig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/invtrig.c -------------------------------------------------------------------------------- /sdk/tlibc/math/invtrig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/invtrig.h -------------------------------------------------------------------------------- /sdk/tlibc/math/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_cos.c -------------------------------------------------------------------------------- /sdk/tlibc/math/k_cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_cosf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/k_cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_cosl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_rem_pio2.c -------------------------------------------------------------------------------- /sdk/tlibc/math/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_sin.c -------------------------------------------------------------------------------- /sdk/tlibc/math/k_sincos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_sincos.h -------------------------------------------------------------------------------- /sdk/tlibc/math/k_sincosf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_sincosf.h -------------------------------------------------------------------------------- /sdk/tlibc/math/k_sincosl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_sincosl.h -------------------------------------------------------------------------------- /sdk/tlibc/math/k_sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_sinf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/k_sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_sinl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_tan.c -------------------------------------------------------------------------------- /sdk/tlibc/math/k_tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_tanf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/k_tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/k_tanl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/lgammal.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/lgammal.S -------------------------------------------------------------------------------- /sdk/tlibc/math/logl_table.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/logl_table.S -------------------------------------------------------------------------------- /sdk/tlibc/math/polevll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/polevll.c -------------------------------------------------------------------------------- /sdk/tlibc/math/rcp_table.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/rcp_table.S -------------------------------------------------------------------------------- /sdk/tlibc/math/s_asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_asinh.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_asinhf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_asinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_asinhl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_atan.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_atanf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_atanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_atanl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cabs.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cabsf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cabsl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cacoshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cacoshl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cacosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cacosl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_carg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_carg.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cargf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cargf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cargl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cargl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_casin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_casin.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_casinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_casinf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_casinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_casinh.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_casinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_casinhf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_casinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_casinhl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_casinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_casinl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_catan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_catan.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_catanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_catanf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_catanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_catanh.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_catanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_catanhf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_catanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_catanhl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_catanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_catanl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cbrt.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cbrtf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cbrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cbrtl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ccos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ccos.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ccosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ccosf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ccosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ccosh.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ccoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ccoshf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ccoshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ccoshl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ccosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ccosl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ceil.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ceilf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ceill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ceill.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cexp.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cexpf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cexpl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cimag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cimag.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cimagf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cimagf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cimagl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cimagl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_clog.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_clogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_clogf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_clogl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_clogl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_conj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_conj.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_conjf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_conjf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_conjl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_conjl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_copysign.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cos.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cosf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cosl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cpow.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cpowf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cpowf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cpowl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cpowl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cproj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cproj.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cprojf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cprojf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_cprojl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_cprojl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_creal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_creal.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_crealf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_crealf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_creall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_creall.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_csin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_csin.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_csinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_csinf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_csinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_csinh.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_csinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_csinhf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_csinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_csinhl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_csinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_csinl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_csqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_csqrt.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_csqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_csqrtf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_csqrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_csqrtl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ctan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ctan.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ctanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ctanf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ctanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ctanh.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ctanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ctanhf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ctanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ctanhl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ctanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ctanl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_erf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_erff.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_erfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_erfl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_exp2.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_exp2f.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_exp2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_exp2l.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_expm1.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_expm1f.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_expm1l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_expm1l.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fabs.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fabsf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fabsl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fdim.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_floor.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_floorf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_floorl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_floorl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fma.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fmaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fmaf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fmal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fmal.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fmax.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fmaxf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fmaxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fmaxl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fmin.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fminf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_fminl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_fminl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_frexp.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_frexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_frexpf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_frexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_frexpl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ilogb.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ilogbf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_ilogbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_ilogbl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_llrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_llrint.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_llrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_llrintf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_llrintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_llrintl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_llround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_llround.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_llroundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_llroundf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_llroundl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_llroundl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_log1p.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_log1pf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_log1pl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_log1pl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_logb.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_logbf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_logbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_logbl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_lrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_lrint.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_lrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_lrintf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_lrintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_lrintl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_lround.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_lroundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_lroundf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_lroundl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_lroundl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_modf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_modff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_modff.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_modfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_modfl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_nan.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_nanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_nanl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_remquo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_remquo.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_remquof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_remquof.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_remquol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_remquol.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_rint.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_rintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_rintf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_rintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_rintl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_round.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_roundf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_roundl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_roundl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_scalbln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_scalbln.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_scalbn.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_scalbnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_scalbnf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_scalbnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_scalbnl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_signgam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_signgam.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_sin.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_sincos.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_sincosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_sincosf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_sincosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_sincosl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_sinf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_sinl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_tan.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_tanf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_tanh.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_tanhf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_tanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_tanhl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_tanl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_trunc.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_truncf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_truncf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/s_truncl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/s_truncl.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_drem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/w_drem.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_dremf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/w_dremf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_dreml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/w_dreml.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/w_gamma.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_gamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/w_gamma_r.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_gammaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/w_gammaf.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_gammaf_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/w_gammaf_r.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_lgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/w_lgamma.c -------------------------------------------------------------------------------- /sdk/tlibc/math/w_lgammaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/math/w_lgammaf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/fileext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/fileext.h -------------------------------------------------------------------------------- /sdk/tlibc/stdio/floatio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/floatio.h -------------------------------------------------------------------------------- /sdk/tlibc/stdio/fvwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/fvwrite.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/fvwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/fvwrite.h -------------------------------------------------------------------------------- /sdk/tlibc/stdio/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/local.h -------------------------------------------------------------------------------- /sdk/tlibc/stdio/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/snprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/swprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/swprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/vfprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/vfprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/vfwprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/vfwprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/vsnprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/vswprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/vswprintf.c -------------------------------------------------------------------------------- /sdk/tlibc/stdio/wcio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdio/wcio.h -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/abs.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/atof.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/atoi.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/atol.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/atoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/atoll.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/bsearch.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/div.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/imaxabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/imaxabs.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/imaxdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/imaxdiv.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/labs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/labs.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/ldiv.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/llabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/llabs.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/lldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/lldiv.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/malloc.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/qsort.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/strtol.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/strtoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/strtoll.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/strtoul.c -------------------------------------------------------------------------------- /sdk/tlibc/stdlib/strtoull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/stdlib/strtoull.c -------------------------------------------------------------------------------- /sdk/tlibc/string/bcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/bcmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/bcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/bcopy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/bzero.c -------------------------------------------------------------------------------- /sdk/tlibc/string/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/ffs.c -------------------------------------------------------------------------------- /sdk/tlibc/string/ffsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/ffsl.c -------------------------------------------------------------------------------- /sdk/tlibc/string/ffsll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/ffsll.c -------------------------------------------------------------------------------- /sdk/tlibc/string/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/index.c -------------------------------------------------------------------------------- /sdk/tlibc/string/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/memchr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/memcmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/memcpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/memmove.c -------------------------------------------------------------------------------- /sdk/tlibc/string/mempcpy.c: -------------------------------------------------------------------------------- 1 | #define MEMPCPY 2 | #include "./bcopy.c" 3 | -------------------------------------------------------------------------------- /sdk/tlibc/string/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/memset.c -------------------------------------------------------------------------------- /sdk/tlibc/string/memset_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/memset_s.c -------------------------------------------------------------------------------- /sdk/tlibc/string/rindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/rindex.c -------------------------------------------------------------------------------- /sdk/tlibc/string/stpncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/stpncpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strchr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strcmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strcoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strcoll.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strcspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strcspn.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strerror.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strlcpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strlen.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strncat.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strncmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strncpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strndup.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strnlen.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strpbrk.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strrchr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strspn.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strstr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strtok.c -------------------------------------------------------------------------------- /sdk/tlibc/string/strxfrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/strxfrm.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcschr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcschr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcscmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcscmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcscspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcscspn.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcslcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcslcpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcslen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcslen.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcsncat.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcsncmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcsncpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcspbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcspbrk.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcsrchr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcsspn.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcsstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcsstr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcstok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcstok.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wcswcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wcswcs.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wmemchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wmemchr.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wmemcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wmemcmp.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wmemcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wmemcpy.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wmemmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wmemmove.c -------------------------------------------------------------------------------- /sdk/tlibc/string/wmemset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/string/wmemset.c -------------------------------------------------------------------------------- /sdk/tlibc/time/asctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/time/asctime.c -------------------------------------------------------------------------------- /sdk/tlibc/time/difftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/time/difftime.c -------------------------------------------------------------------------------- /sdk/tlibc/time/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/time/private.h -------------------------------------------------------------------------------- /sdk/tlibc/time/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/time/strftime.c -------------------------------------------------------------------------------- /sdk/tlibc/time/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/time/tzfile.h -------------------------------------------------------------------------------- /sdk/tlibc/tstdc_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibc/tstdc_version.cpp -------------------------------------------------------------------------------- /sdk/tlibcrypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcrypto/Makefile -------------------------------------------------------------------------------- /sdk/tlibcxx/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/LICENSE.TXT -------------------------------------------------------------------------------- /sdk/tlibcxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/Makefile -------------------------------------------------------------------------------- /sdk/tlibcxx/README.sgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/README.sgx -------------------------------------------------------------------------------- /sdk/tlibcxx/include/__debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/__debug -------------------------------------------------------------------------------- /sdk/tlibcxx/include/__sgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/__sgx -------------------------------------------------------------------------------- /sdk/tlibcxx/include/__tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/__tree -------------------------------------------------------------------------------- /sdk/tlibcxx/include/__tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/__tuple -------------------------------------------------------------------------------- /sdk/tlibcxx/include/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/array -------------------------------------------------------------------------------- /sdk/tlibcxx/include/atomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/atomic -------------------------------------------------------------------------------- /sdk/tlibcxx/include/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/bitset -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cassert -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cctype -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cerrno -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cfenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cfenv -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cfloat -------------------------------------------------------------------------------- /sdk/tlibcxx/include/chrono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/chrono -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ciso646: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/ciso646 -------------------------------------------------------------------------------- /sdk/tlibcxx/include/climits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/climits -------------------------------------------------------------------------------- /sdk/tlibcxx/include/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/clocale -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cmath -------------------------------------------------------------------------------- /sdk/tlibcxx/include/codecvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/codecvt -------------------------------------------------------------------------------- /sdk/tlibcxx/include/complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/complex -------------------------------------------------------------------------------- /sdk/tlibcxx/include/csetjmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/csetjmp -------------------------------------------------------------------------------- /sdk/tlibcxx/include/csignal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/csignal -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cstdarg -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cstddef -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstdint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cstdint -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cstdio -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cstdlib -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cstring -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ctgmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/ctgmath -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/ctime -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cwchar -------------------------------------------------------------------------------- /sdk/tlibcxx/include/cwctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/cwctype -------------------------------------------------------------------------------- /sdk/tlibcxx/include/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/deque -------------------------------------------------------------------------------- /sdk/tlibcxx/include/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/fstream -------------------------------------------------------------------------------- /sdk/tlibcxx/include/future: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/future -------------------------------------------------------------------------------- /sdk/tlibcxx/include/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/iomanip -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/ios -------------------------------------------------------------------------------- /sdk/tlibcxx/include/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/iosfwd -------------------------------------------------------------------------------- /sdk/tlibcxx/include/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/istream -------------------------------------------------------------------------------- /sdk/tlibcxx/include/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/limits -------------------------------------------------------------------------------- /sdk/tlibcxx/include/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/list -------------------------------------------------------------------------------- /sdk/tlibcxx/include/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/locale -------------------------------------------------------------------------------- /sdk/tlibcxx/include/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/map -------------------------------------------------------------------------------- /sdk/tlibcxx/include/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/memory -------------------------------------------------------------------------------- /sdk/tlibcxx/include/mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/mutex -------------------------------------------------------------------------------- /sdk/tlibcxx/include/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/new -------------------------------------------------------------------------------- /sdk/tlibcxx/include/numeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/numeric -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/ostream -------------------------------------------------------------------------------- /sdk/tlibcxx/include/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/queue -------------------------------------------------------------------------------- /sdk/tlibcxx/include/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/random -------------------------------------------------------------------------------- /sdk/tlibcxx/include/ratio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/ratio -------------------------------------------------------------------------------- /sdk/tlibcxx/include/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/regex -------------------------------------------------------------------------------- /sdk/tlibcxx/include/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/set -------------------------------------------------------------------------------- /sdk/tlibcxx/include/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/sstream -------------------------------------------------------------------------------- /sdk/tlibcxx/include/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/stack -------------------------------------------------------------------------------- /sdk/tlibcxx/include/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/string -------------------------------------------------------------------------------- /sdk/tlibcxx/include/support/xlocale/xlocale.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/tlibcxx/include/thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/thread -------------------------------------------------------------------------------- /sdk/tlibcxx/include/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/tuple -------------------------------------------------------------------------------- /sdk/tlibcxx/include/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/utility -------------------------------------------------------------------------------- /sdk/tlibcxx/include/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/include/vector -------------------------------------------------------------------------------- /sdk/tlibcxx/src/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/any.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/bind.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/chrono.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/debug.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/future.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/hash.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/ios.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/locale.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/memory.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/mutex.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/new.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/random.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/regex.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/string.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/thread.cpp -------------------------------------------------------------------------------- /sdk/tlibcxx/src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibcxx/src/utility.cpp -------------------------------------------------------------------------------- /sdk/tlibthread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tlibthread/Makefile -------------------------------------------------------------------------------- /sdk/tmm_rsrv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tmm_rsrv/Makefile -------------------------------------------------------------------------------- /sdk/tmm_rsrv/mm_vrd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tmm_rsrv/mm_vrd.cpp -------------------------------------------------------------------------------- /sdk/tmm_rsrv/mm_vrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tmm_rsrv/mm_vrd.h -------------------------------------------------------------------------------- /sdk/tmm_rsrv/mm_vrd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tmm_rsrv/mm_vrd_util.h -------------------------------------------------------------------------------- /sdk/trts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/Makefile -------------------------------------------------------------------------------- /sdk/trts/check_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/check_point.cpp -------------------------------------------------------------------------------- /sdk/trts/init_enclave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/init_enclave.cpp -------------------------------------------------------------------------------- /sdk/trts/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/linux/Makefile -------------------------------------------------------------------------------- /sdk/trts/linux/elf_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/linux/elf_parser.c -------------------------------------------------------------------------------- /sdk/trts/linux/elf_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/linux/elf_parser.h -------------------------------------------------------------------------------- /sdk/trts/linux/thunk.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/linux/thunk.S -------------------------------------------------------------------------------- /sdk/trts/linux/trts_pic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/linux/trts_pic.S -------------------------------------------------------------------------------- /sdk/trts/linux/trts_pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/linux/trts_pic.h -------------------------------------------------------------------------------- /sdk/trts/trts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_add_trim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_add_trim.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_ecall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_ecall.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_emodpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_emodpr.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_emodpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_emodpr.h -------------------------------------------------------------------------------- /sdk/trts/trts_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_internal.h -------------------------------------------------------------------------------- /sdk/trts/trts_nsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_nsp.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_ocall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_ocall.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_trim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_trim.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_trim.h -------------------------------------------------------------------------------- /sdk/trts/trts_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_util.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_util.h -------------------------------------------------------------------------------- /sdk/trts/trts_veh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_veh.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_version.cpp -------------------------------------------------------------------------------- /sdk/trts/trts_xsave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/trts/trts_xsave.cpp -------------------------------------------------------------------------------- /sdk/tsafecrt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tsafecrt/Makefile -------------------------------------------------------------------------------- /sdk/tseal/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tseal/linux/Makefile -------------------------------------------------------------------------------- /sdk/tseal/tSeal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tseal/tSeal.cpp -------------------------------------------------------------------------------- /sdk/tseal/tSeal_aad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tseal/tSeal_aad.cpp -------------------------------------------------------------------------------- /sdk/tseal/tSeal_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tseal/tSeal_internal.h -------------------------------------------------------------------------------- /sdk/tseal/tSeal_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tseal/tSeal_util.cpp -------------------------------------------------------------------------------- /sdk/tsetjmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tsetjmp/Makefile -------------------------------------------------------------------------------- /sdk/tsetjmp/_setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/tsetjmp/_setjmp.S -------------------------------------------------------------------------------- /sdk/ukey_exchange/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/sdk/ukey_exchange/Makefile -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoneChen/SGX-SEF/HEAD/uninstall.sh --------------------------------------------------------------------------------