| /freebsd/sys/contrib/device-tree/Bindings/arm/ |
| H A D | arm,embedded-trace-extension.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 4 --- 5 $id: http://devicetree.org/schemas/arm/arm,embedded-trace-extension.yaml# 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 - Suzuki K Poulose <suzuki.poulose@arm.com> 12 - Mathieu Poirier <mathieu.poirier@linaro.org> 15 Arm Embedded Trace Extension(ETE) is a per CPU trace component that 18 The trace generated by the ETE could be stored via legacy CoreSight 19 components (e.g, TMC-ETR) or other means (e.g, using a per CPU buffer 20 Arm Trace Buffer Extension (TRBE)). Since the ETE can be connected to [all …]
|
| /freebsd/contrib/opencsd/decoder/include/opencsd/etmv4/ |
| H A D | trc_pkt_types_etmv4.h | 3 * \brief OpenCSD : ETMv4 / ETE packet info 13 * 1. Redistributions of source code must retain the above copyright notice, 44 /** @name ETMv4 Packet Types, ETE packet Types 73 ETM4_PKT_I_EXCEPT_RTN = 0x07, /*!< b00000111 (ETE invalid) */ 76 ETE_PKT_I_ITE = 0x09, /*! b00001001 (ETE only) */ 77 ETE_PKT_I_TRANS_ST = 0x0A, /*! b00001010 (ETE only) */ 78 ETE_PKT_I_TRANS_COMMIT = 0x0B, /*! b00001011 (ETE only) */ 97 /* conditional instruction tracing - (reserved encodings ETE) */ 98 ETM4_PKT_I_COND_I_F2 = 0x40, /*!< b01000000 - b01000010 */ 105 /* unused encodings 0x60-0x67 b01100xxx */ [all …]
|
| H A D | trc_pkt_decode_etmv4i.h | 12 * 1. Redistributions of source code must retain the above copyright notice, 71 …to trace elements. return true to indicate decode complete - can change FSM to commit state - retu… 72 …ancel trace elements generated from latest / prior packets & send to output - may get wait respons… 73 …ocsd_err_t commitElements(); // commit elements - process element stack to generate output packets. 85 // process an exception element - output instruction trace + exception generic type. 109 // sequencing error on packet processing - optionally continue 151 // true if we are ETE configured. 153 return (m_config->MajVersion() >= ETE_ARCH_VERSION); in isETEConfig() 158 //** intra packet state (see ETMv4 spec 6.2.1); 176 int m_max_spec_depth; // nax depth - from ID reg, beyond which auto-commit occurs [all …]
|
| /freebsd/contrib/opencsd/decoder/include/opencsd/ete/ |
| H A D | trc_cmp_cfg_ete.h | 3 * \brief OpenCSD : ETE configuration 12 * 1. Redistributions of source code must retain the above copyright notice, 44 /** @name ETE configuration 49 * @brief Interpreter class for ETE config structure 51 * ETE trace and config are a superset of ETMv4 trace and config - hence
|
| H A D | trc_pkt_types_ete.h | 3 * \brief OpenCSD : ETE types 12 * 1. Redistributions of source code must retain the above copyright notice, 43 /** @name ETE config Types 52 uint32_t reg_idr8; /**< ID8 - maxspec */
|
| /freebsd/lib/libopencsd/ |
| H A D | Makefile | 3 .PATH: ${OPENCSDSRC}/decoder/source/ete/ \ 13 ${OPENCSDSRC}/decoder/include/opencsd/ete/ \ 25 # Embedded Trace Extensions (ETE) 101 -I${OPENCSDSRC}/decoder/include/ \ 102 -I${.CURDIR} 127 ETEINCSDIR=${INCLUDEDIR}/opencsd/ete 179 WARNS?= 1
|
| /freebsd/sys/contrib/device-tree/src/arm64/arm/ |
| H A D | fvp-base-revc.dts | 1 // SPDX-License-Identifier: GPL-2.0 5 * Architecture Envelope Model (AEM) ARMv8-A 11 /dts-v1/; 13 #include <dt-bindings/interrupt-controller/arm-gic.h> 17 #include "rtsm_ve-motherboard.dtsi" 18 #include "rtsm_ve-motherboard-rs2.dtsi" 22 compatible = "arm,fvp-base-revc", "arm,vexpress"; 23 interrupt-parent = <&gic>; 24 #address-cells = <2>; 25 #size-cells = <2>; [all …]
|
| /freebsd/contrib/opencsd/decoder/source/ete/ |
| H A D | trc_cmp_cfg_ete.cpp | 3 * \brief OpenCSD : ETE config class 12 * 1. Redistributions of source code must retain the above copyright notice, 35 #include "opencsd/ete/trc_cmp_cfg_ete.h" 75 // ete superset of etmv4 - move info to underlying structure. 78 // copy over 1:1 regs in copyV4()
|
| /freebsd/contrib/opencsd/decoder/source/etmv4/ |
| H A D | trc_pkt_proc_etmv4i.cpp | 12 * 1. Redistributions of source code must retain the above copyright notice, 48 // test defines - if testing with ETMv4 sources, disable error on ERET. 117 // unsynced - process data until we see a sync point in processData() 129 (this->*m_pIPktFn)(nextByte); in processData() 161 statsAddBadHdrCount(1); in processData() 163 statsAddBadSeqCount(1); in processData() 276 if (m_currPacketData.size() > 1) in iNotSync() 278 m_dump_unsynced_bytes = m_currPacketData.size() - 1; in iNotSync() 281 m_update_on_unsync_packet_index = m_blockIndex + m_trcIn.processed() - 1; in iNotSync() 284 m_packet_index = m_blockIndex + m_trcIn.processed() - 1; // set it up now otherwise. in iNotSync() [all …]
|
| H A D | trc_pkt_decode_etmv4i.cpp | 12 * 1. Redistributions of source code must retain the above copyright notice, 91 if(m_curr_packet_in->getType() == ETM4_PKT_I_ASYNC) in processPacket() 99 if(m_curr_packet_in->getType() == ETM4_PKT_I_TRACE_INFO) in processPacket() 105 /* ETE spec allows early event packets. */ in processPacket() 106 else if ((m_config->MajVersion() >= 0x5) && in processPacket() 107 (m_curr_packet_in->getType() == ETM4_PKT_I_EVENT)) in processPacket() 185 m_CSID = m_config->getTraceID(); in onProtocolConfig() 186 m_max_spec_depth = m_config->MaxSpecDepth(); in onProtocolConfig() 190 m_p0_key_max = m_config->P0_Key_Max(); in onProtocolConfig() 191 m_cond_key_max_incr = m_config->CondKeyMaxIncr(); in onProtocolConfig() [all …]
|
| /freebsd/contrib/opencsd/decoder/include/ |
| H A D | opencsd.h | 3 * \brief OpenCSD: Open CoreSight Trace Decoder -Master include file for C++ library 12 * 1. Redistributions of source code must retain the above copyright notice, 66 #include "opencsd/ete/ete_decoder.h"
|
| /freebsd/contrib/opencsd/decoder/include/opencsd/c_api/ |
| H A D | ocsd_c_api_types.h | 12 * 1. Redistributions of source code must retain the above copyright notice, 38 /* select the library types that are C compatible - the interface data types */ 49 #include "opencsd/ete/trc_pkt_types_ete.h" 55 /* Specific C-API only types */ 63 /** Logger output printer - no output. */ 65 /** Logger output printer - output to file. */ 67 /** Logger output printer - output to stderr. */ 69 /** Logger output printer - output to stdout. */ 71 /** Logger output printer - mask of valid flags. */ 80 /** function pointer type for packet processor packet output sink, packet analyser/decoder input - … [all …]
|
| /freebsd/contrib/opencsd/decoder/include/opencsd/ |
| H A D | ocsd_if_types.h | 12 * 1. Redistributions of source code must retain the above copyright notice, 41 /** VS2010 does not support inttypes - remove when VS2010 support is dropped */ 64 typedef uint64_t ocsd_trc_index_t; /**< Trace source index type - 64 bit size */ 67 typedef uint32_t ocsd_trc_index_t; /**< Trace source index type - 32 bit size */ 72 #define OCSD_BAD_TRC_INDEX ((ocsd_trc_index_t)-1) 74 #define OCSD_BAD_CS_SRC_ID ((uint8_t)-1) 99 OCSD_ERR_ATTACH_TOO_MANY, /**< Cannot attach - attach device limit reached. */ 100 OCSD_ERR_ATTACH_INVALID_PARAM, /**< Cannot attach - invalid parameter. */ 101 OCSD_ERR_ATTACH_COMP_NOT_FOUND,/**< Cannot detach - component not found. */ 103 OCSD_ERR_RDR_FILE_NOT_FOUND, /**< source reader - file not found. */ [all …]
|
| /freebsd/contrib/opencsd/decoder/source/ |
| H A D | ocsd_lib_dcd_register.cpp | 12 * 1. Redistributions of source code must retain the above copyright notice, 37 // include built-in decode manager headers 42 #include "opencsd/ete/trc_dcd_mngr_ete.h" 44 // create array of built-in decoders to register with library 72 m_nextCustomProtocolID = (ocsd_trace_protocol_t)(((int)m_nextCustomProtocolID)+1); in getNextCustomProtocolID() 79 m_nextCustomProtocolID = (ocsd_trace_protocol_t)(((int)m_nextCustomProtocolID)-1); in releaseLastCustomProtocolID() 100 …mplace(std::pair<const ocsd_trace_protocol_t, IDecoderMngr *>(p_decoder_fact->getProtocolType(),p_… in registerDecoderTypeByName() 130 m_p_libMngr->deRegisterCustomDecoders(); in deregisterAllDecoders() 141 IDecoderMngr *pMngr = iter->second; in deRegisterCustomDecoders() 142 if(pMngr->getProtocolType() >= OCSD_PROTOCOL_CUSTOM_0) in deRegisterCustomDecoders() [all …]
|
| /freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
| H A D | sm8450.dtsi | 1 // SPDX-License-Identifier: BSD-3-Clause 6 #include <dt-bindings/interrupt-controller/arm-gic.h> 7 #include <dt-bindings/clock/qcom,dsi-phy-28nm.h> 8 #include <dt-bindings/clock/qcom,gcc-sm8450.h> 9 #include <dt-bindings/clock/qcom,rpmh.h> 10 #include <dt-bindings/clock/qcom,sm8450-camcc.h> 11 #include <dt-bindings/clock/qcom,sm8450-dispcc.h> 12 #include <dt-bindings/clock/qcom,sm8450-gpucc.h> 13 #include <dt-bindings/clock/qcom,sm8450-videocc.h> 14 #include <dt-bindings/dma/qcom-gpi.h> [all …]
|
| H A D | sm8650.dtsi | 1 // SPDX-License-Identifier: BSD-3-Clause 6 #include <dt-bindings/clock/qcom,dsi-phy-28nm.h> 7 #include <dt-bindings/clock/qcom,rpmh.h> 8 #include <dt-bindings/clock/qcom,sm8650-camcc.h> 9 #include <dt-bindings/clock/qcom,sm8650-dispcc.h> 10 #include <dt-bindings/clock/qcom,sm8650-gcc.h> 11 #include <dt-bindings/clock/qcom,sm8650-gpucc.h> 12 #include <dt-bindings/clock/qcom,sm8650-tcsr.h> 13 #include <dt-bindings/clock/qcom,sm8650-videocc.h> 14 #include <dt-bindings/dma/qcom-gpi.h> [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64Features.td | 1 //=- AArch64Features.td - Describe AArch64 SubtargetFeatures -*- tablegen -*-=// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 //===----------------------------------------------------------------------===// 17 string TargetFeatureName, // String used for -target-feature, unless overridden. 28 // The user visible name used by -march/-mcpu modifiers and target attribute 37 // An Extension that can be toggled via a '-march'/'-mcpu' modifier or a target 40 …string TargetFeatureName, // String used for -target-feature and -march, unless overrid… 47 // used for -target-feature. However, there are exceptions. Therefore we 62 //===----------------------------------------------------------------------===// [all …]
|
| H A D | AArch64Processors.td | 1 //=- AArch64Processors.td - Describe AArch64 Processors ------*- tablegen -*-=// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===// 18 "Cortex-A35 ARM processors">; 21 "Cortex-A53 ARM processors", [ 28 "Cortex-A55 ARM processors", [ 35 "Cortex-A510 ARM processors", [ [all …]
|
| H A D | AArch64InstrInfo.td | 1 //=- AArch64InstrInfo.td - Describe the AArch64 Instructions -*- tablegen -*-=// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===// 21 def HasV8_0a : Predicate<"Subtarget->hasV8_0aOps()">, 23 def HasV8_1a : Predicate<"Subtarget->hasV8_1aOps()">, 24 AssemblerPredicateWithAll<(all_of HasV8_1aOps), "armv8.1a">; 25 def HasV8_2a : Predicate<"Subtarget->hasV8_2aOps()">, 27 def HasV8_3a : Predicate<"Subtarget->hasV8_3aOps()">, [all …]
|
| /freebsd/contrib/tzdata/ |
| H A D | africa | 4 # 2009-05-17 by Arthur David Olson. 11 # From Paul Eggert (2018-05-27): 30 # Milne J. Civil time. Geogr J. 1899 Feb;13(2):173-94. 37 # European-style abbreviations are commonly used along the Mediterranean. 38 # For sub-Saharan Africa abbreviations were less standardized. 54 # I vaguely recall 'WAT' also being used for -01 in the past but 64 # they are paired with better-attested non-DST abbreviations. 68 # Rule NAME FROM TO - IN ON AT SAVE LETTER/S 69 Rule Algeria 1916 only - Jun 14 23:00s 1:00 S 70 Rule Algeria 1916 1919 - Oct Sun>=1 23:00s 0 - [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 1 //===- SLPVectorizer.cpp - A bottom up SLP Vectorizer -------- 13894 if (const TreeEntry *ETE = getTreeEntry(V)) vectorizeTree() local [all...] |
| /freebsd/tests/sys/geom/class/eli/ |
| H A D | testvect.h | 1 /* Test Vectors for PBKDF2-SHA512 */ 3 …\300!tp\367\257\347c'\000\243F\246\376\274H\263\312m\336\304\3515P\222Cb\037-\313W\0067\232\024%\2… 4 …356?alD\231I[%A\372\367\027\267,\303\022\324\004\302a\302t\257\306S\251\250;-pa\246Z\200\003*+\026… 10 …4\334\005O,\374\225\234\014\266\365\030i6\210a\205", 100, "\220\006\216\2420-8m\2766\353(6\212\306… 16 …00, "\334\222G\300~'\042LS\0218\006,\261\207]\277\245GH\007\246\357f\205\325-\3044\337\347\007\373… 17 …212\377\257\177\350f\276\330\3035\204\215\327f\256\300\364\212\271\306q\242?-\307\324\317y^\201t\2… 18 …{ "\234^\035\320rt-B", 8, "\357\274\204\366N9\273:\216\331,D\300t\320\361\324F\313\220E\250u\203\3… 21 …6L$\203\026.T\223\205\364\362@\204*\316\232u\033\321\212;l\202\313s\205\333<1~\211\267\213\336Z\27… 25 …5\317 w\034u?", 300, "\276\317.\310Gj \217\3502.za\021\230\322C6\255\301\354-\263\247\002\352\377\… 26 …{ "\265G\357\330S\302?8", 8, "7S-\203\036\340\015\356\027\253\302\376\222\037\2276\0141|p\255\313\… [all …]
|