Home
last modified time | relevance | path

Searched refs:EM (Results 1 – 20 of 20) sorted by relevance

/llvm-project-15.0.7/llvm/test/MC/ARM/
H A Dthumb2-dsp-diag.s2 @ RUN: llvm-mc -triple=thumbv7em -show-encoding < %s | FileCheck --check-prefix=CHECK-7EM %s
14 @ CHECK-7EM: sxtab r0, r0, r0 @ encoding: [0x40,0xfa,0x80,0xf0]
15 @ CHECK-7EM: sxtah r0, r0, r0 @ encoding: [0x00,0xfa,0x80,0xf0]
16 @ CHECK-7EM: sxtab16 r0, r0, r0 @ encoding: [0x20,0xfa,0x80,0xf0]
17 @ CHECK-7EM: sxtb16 r0, r0 @ encoding: [0x2f,0xfa,0x80,0xf0]
18 @ CHECK-7EM: sxtb16 r0, r0, ror #8 @ encoding: [0x2f,0xfa,0x90,0xf0]
30 @ CHECK-7EM: uxtab r0, r0, r0 @ encoding: [0x50,0xfa,0x80,0xf0]
31 @ CHECK-7EM: uxtah r0, r0, r0 @ encoding: [0x10,0xfa,0x80,0xf0]
32 @ CHECK-7EM: uxtab16 r0, r0, r0 @ encoding: [0x30,0xfa,0x80,0xf0]
33 @ CHECK-7EM: uxtb16 r0, r0 @ encoding: [0x3f,0xfa,0x80,0xf0]
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/
H A DSerialSnippetGenerator.cpp73 ExecutionMode EM = ExecutionMode::UNKNOWN; in getExecutionModes() local
75 EM |= ExecutionMode::ALWAYS_SERIAL_IMPLICIT_REGS_ALIAS; in getExecutionModes()
77 EM |= ExecutionMode::ALWAYS_SERIAL_TIED_REGS_ALIAS; in getExecutionModes()
79 EM |= ExecutionMode::SERIAL_VIA_MEMORY_INSTR; in getExecutionModes()
82 EM |= ExecutionMode::SERIAL_VIA_EXPLICIT_REGS; in getExecutionModes()
84 EM |= ExecutionMode::SERIAL_VIA_NON_MEMORY_INSTR; in getExecutionModes()
86 return EM; in getExecutionModes()
165 const ExecutionMode EM = in generateCodeTemplates() local
168 for (const auto ExecutionModeBit : getExecutionModeBits(EM & EC.Mask)) in generateCodeTemplates()
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DRDFCopy.cpp40 bool CopyPropagation::interpretAsCopy(const MachineInstr *MI, EqualityMap &EM) { in interpretAsCopy() argument
54 EM.insert(std::make_pair(DstR, SrcR)); in interpretAsCopy()
63 void CopyPropagation::recordCopy(NodeAddr<StmtNode*> SA, EqualityMap &EM) { in recordCopy() argument
64 CopyMap.insert(std::make_pair(SA.Id, EM)); in recordCopy()
75 EqualityMap EM; in scanBlock() local
76 if (interpretAsCopy(SA.Addr->getCode(), EM)) in scanBlock()
77 recordCopy(SA, EM); in scanBlock()
143 EqualityMap &EM = FS->second; in run() local
146 auto FR = EM.find(DR); in run()
147 if (FR == EM.end()) in run()
H A DRDFCopy.h40 virtual bool interpretAsCopy(const MachineInstr *MI, EqualityMap &EM);
52 void recordCopy(NodeAddr<StmtNode*> SA, EqualityMap &EM);
H A DHexagonRDFOpt.cpp88 bool interpretAsCopy(const MachineInstr *MI, EqualityMap &EM) override;
112 bool HexagonCP::interpretAsCopy(const MachineInstr *MI, EqualityMap &EM) { in INITIALIZE_PASS_DEPENDENCY()
113 auto mapRegs = [&EM] (RegisterRef DstR, RegisterRef SrcR) -> void { in INITIALIZE_PASS_DEPENDENCY()
114 EM.insert(std::make_pair(DstR, SrcR)); in INITIALIZE_PASS_DEPENDENCY()
146 return CopyPropagation::interpretAsCopy(MI, EM); in INITIALIZE_PASS_DEPENDENCY()
/llvm-project-15.0.7/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h41 MachineInfo(uint16_t EM, uint8_t ABI, bool Is64, bool IsLittle) in MachineInfo()
42 : EMachine(EM), OSABI(ABI), Is64Bit(Is64), IsLittleEndian(IsLittle) {} in MachineInfo()
44 MachineInfo(uint16_t EM, bool Is64, bool IsLittle) in MachineInfo()
45 : MachineInfo(EM, ELF::ELFOSABI_NONE, Is64, IsLittle) {} in MachineInfo()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DLangOptions.h618 FPExceptionModeKind EM = getFPExceptionMode(); in getDefaultExceptionMode() local
619 if (EM == FPExceptionModeKind::FPE_Default) in getDefaultExceptionMode()
621 return EM; in getDefaultExceptionMode()
725 LangOptions::FPExceptionModeKind EM = getSpecifiedExceptionMode(); in getExceptionMode() local
726 if (EM == LangOptions::FPExceptionModeKind::FPE_Default) { in getExceptionMode()
732 return EM; in getExceptionMode()
/llvm-project-15.0.7/llvm/lib/Target/SPIRV/
H A DSPIRVAsmPrinter.cpp67 SPIRV::ExecutionMode EM);
379 SPIRV::ExecutionMode EM) { in outputExecutionModeFromMDNode() argument
383 Inst.addOperand(MCOperand::createImm(static_cast<unsigned>(EM))); in outputExecutionModeFromMDNode()
417 unsigned EM = static_cast<unsigned>(SPIRV::ExecutionMode::VecTypeHint); in outputExecutionMode() local
418 Inst.addOperand(MCOperand::createImm(EM)); in outputExecutionMode()
/llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/
H A Dlower-em-ehsjlj-options.ll4 …le-emscripten-cxx-exceptions -exception-model=wasm 2>&1 | FileCheck %s --check-prefix=WASM-EH-EM-EH
103 ; WASM-EH-EM-EH: LLVM ERROR: -exception-model=wasm not allowed with -enable-emscripten-cxx-exceptio…
/llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-shell/
H A Dvalid-shell.txt147 # NP-CAT-OUTPUT-NEXT: xyz{|}~^?M-^@M-^AM-^BM-^CM-^DM-^EM-^FM-^GM-^HM-^IM-^JM-^K
150 # NP-CAT-OUTPUT-NEXT: M-4M-5M-6M-7M-8M-9M-:M-;M-<M-=M->M-?M-@M-AM-BM-CM-DM-EM-FM-G
165 # NPLONG-CAT-OUTPUT-NEXT: xyz{|}~^?M-^@M-^AM-^BM-^CM-^DM-^EM-^FM-^GM-^HM-^IM-^JM-^K
168 # NPLONG-CAT-OUTPUT-NEXT: M-4M-5M-6M-7M-8M-9M-:M-;M-<M-=M->M-?M-@M-AM-BM-CM-DM-EM-FM-G
/llvm-project-15.0.7/mlir/test/Conversion/SPIRVToLLVM/
H A Dmisc-ops-to-llvm.mlir113 // CHECK-NEXT: %[[EM:.*]] = llvm.mlir.constant(18 : i32) : i32
114 // CHECK-NEXT: %[[T0:.*]] = llvm.insertvalue %[[EM]], %[[UNDEF]][0 : i32] : !llvm.struct<(i32, …
/llvm-project-15.0.7/llvm/test/Instrumentation/DataFlowSanitizer/
H A Darray.ll155 ; NO_COMBINE_LOAD_PTR: [[EM:%.*]] = extractvalue [4 x i[[#SBITS]]] [[AM]], 2
156 …; NO_COMBINE_LOAD_PTR: store i[[#SBITS]] [[EM]], i[[#SBITS]]* bitcast ([[TLS_ARR]]* @__dfsan_retva…
163 ; NO_COMBINE_LOAD_PTR: [[EM:%.*]] = load i[[#SBITS]], i[[#SBITS]]*
166 ; NO_COMBINE_LOAD_PTR: [[AM1:%.*]] = insertvalue [4 x i[[#SBITS]]] [[AM]], i[[#SBITS]] [[EM]], 0
H A Dstruct.ll108 ; FAST: [[EM:%.*]] = extractvalue { i[[#SBITS]], i[[#SBITS]] } [[SM]], 0
109 …; FAST: store i[[#SBITS]] [[EM]], i[[#SBITS]]* bitcast ([[TLS_ARR]]* @__dfsan_retval_tls to i[[#SB…
117 …; FAST: [[EM:%.*]] = load i[[#SBITS]], i[[#SBITS]]* inttoptr (i64 add (i64 ptrtoint ([[TLS_ARR]]* …
119 ; FAST: [[SM1:%.*]] = insertvalue { i[[#SBITS]], i[[#SBITS]] } [[SM]], i[[#SBITS]] [[EM]], 1
/llvm-project-15.0.7/clang/test/Driver/
H A Dhip-phases.hip317 // RUN: -fgpu-rdc 2>&1 | FileCheck -check-prefixes=L2,RL2,RL2-EM %s
339 // RL2-EM-DAG: [[P8:[0-9]+]]: linker, {[[P5]], [[P7]]}, object, (device-[[T]])
340 // RL2-EM-DAG: [[P9:[0-9]+]]: offload, "device-[[T]] (amdgcn-amd-amdhsa)" {[[P8]]}, object
345 // RL2-EM-DAG: [[P4:[0-9]+]]: linker, {[[P1]], [[P3]], [[P9]]}, image, (host-[[T]])
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDeclObjC.cpp2582 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(), in WarnConflictingTypedMethods() local
2584 IM != EM && IF != EF; ++IM, ++IF) { in WarnConflictingTypedMethods()
2605 IF = Overridden->param_begin(), EM = Method->param_end(), in CheckConflictingOverridingMethod() local
2607 IM != EM && IF != EF; ++IM, ++IF) { in CheckConflictingOverridingMethod()
2639 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(), in WarnExactTypedMethods() local
2641 IM != EM && IF != EF; ++IM, ++IF) { in WarnExactTypedMethods()
/llvm-project-15.0.7/llvm/docs/
H A DHowToCrossCompileBuiltinsOnArm.rst41 if you are using the BaremetalARM.cmake cache for v6-M, v7-M and v7-EM then
/llvm-project-15.0.7/clang/lib/AST/
H A DStmtPrinter.cpp196 LangOptions::FPExceptionModeKind EM = in PrintFPPragmas() local
198 if (!FEnvAccess || EM != LangOptions::FPE_Strict) { in PrintFPPragmas()
H A DASTContext.cpp12061 IF = MethodDecl->param_begin(), EM = MethodImpl->param_end(), in ObjCMethodsAreEqual() local
12063 IM != EM && IF != EF; ++IM, ++IF) { in ObjCMethodsAreEqual()
H A DExprConstant.cpp15091 EvalInfo::EvaluationMode EM = EvalInfo::EM_ConstantExpression; in EvaluateAsConstantExpr() local
15092 EvalInfo Info(Ctx, Result, EM); in EvaluateAsConstantExpr()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/ConfusableTable/
H A Dconfusables.txt234 2001 ; 0020 ; MA #* (   → ) EM QUAD → SPACE #
236 2003 ; 0020 ; MA #* (   → ) EM SPACE → SPACE #
237 2004 ; 0020 ; MA #* (   → ) THREE-PER-EM SPACE → SPACE #
238 2005 ; 0020 ; MA #* (   → ) FOUR-PER-EM SPACE → SPACE #
239 2006 ; 0020 ; MA #* (   → ) SIX-PER-EM SPACE → SPACE #
257 FE58 ; 002D ; MA #* ( ﹘ → - ) SMALL EM DASH → HYPHEN-MINUS #
1369 2014 ; 30FC ; MA #* ( — → ー ) EM DASH → KATAKANA-HIRAGANA PROLONGED SOUND MARK # →一→
2807 041C ; 004D ; MA # ( М → M ) CYRILLIC CAPITAL LETTER EM → LATIN CAPITAL LETTER M #
3135 1044B ; 0254 ; MA # ( �� → ɔ ) DESERET SMALL LETTER EM → LATIN SMALL LETTER OPEN O #
3140 10423 ; 0186 ; MA # ( �� → Ɔ ) DESERET CAPITAL LETTER EM → LATIN CAPITAL LETTER OPEN O #
[all …]