| /llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUMIRFormatter.cpp | 59 uint64_t Skip = ((Imm >> 4) & 0x7); in printSDelayAluImm() 77 if (Skip == Same && Id1 == None) in printSDelayAluImm() 82 if (Skip == 0) in printSDelayAluImm() 84 else if (Skip == 1) in printSDelayAluImm() 87 OS << "SKIP_" << Skip - 1; in printSDelayAluImm() 126 int64_t Skip = 0; in parseSDelayAluImmMnemonic() 146 Skip = 0; in parseSDelayAluImmMnemonic() 148 Skip = 1; in parseSDelayAluImmMnemonic() 150 if (Src.consumeInteger(10, Skip)) { in parseSDelayAluImmMnemonic() 151 return ErrorCallback(Src.begin(), "Expected integer Skip valu in parseSDelayAluImmMnemonic() 60 uint64_t Skip = ((Imm >> 4) & 0x7); printSDelayAluImm() local 127 int64_t Skip = 0; parseSDelayAluImmMnemonic() local [all...] |
| H A D | AMDGPUInsertDelayAlu.cpp | 305 unsigned Skip = 0; in emitDelayAlu() local 310 ++Skip; in emitDelayAlu() 312 if (Skip < 6) { in emitDelayAlu() 317 LastImm |= Imm << 7 | Skip << 4; in emitDelayAlu()
|
| /llvm-project/clang-tools-extra/clang-tidy/readability/ |
| H A D | UppercaseLiteralSuffixCheck.cpp | 141 size_t Skip = 0; in shouldReplaceLiteralSuffix() local 148 Skip = LiteralSourceText.find_first_of(LiteralType::SkipFirst); in shouldReplaceLiteralSuffix() 150 if (Skip == StringRef::npos) in shouldReplaceLiteralSuffix() 151 Skip = 0; in shouldReplaceLiteralSuffix() 157 Skip = LiteralSourceText.find_first_of(LiteralType::Suffixes, /*From=*/Skip); in shouldReplaceLiteralSuffix() 161 if (Skip == StringRef::npos) in shouldReplaceLiteralSuffix() 165 Range->setBegin(Range->getBegin().getLocWithOffset(Skip)); in shouldReplaceLiteralSuffix() 167 ReplacementDsc.OldSuffix = LiteralSourceText.drop_front(Skip); in shouldReplaceLiteralSuffix()
|
| /llvm-project/llvm/test/TableGen/ |
| H A D | trydecode-emission2.td | 34 // CHECK-NEXT: /* 3 */ MCD::OPC_FilterValue, 0, 36, 0, 0, // Skip to: 44 36 // CHECK-NEXT: /* 11 */ MCD::OPC_FilterValue, 0, 28, 0, 0, // Skip to: 44 37 // CHECK-NEXT: /* 16 */ MCD::OPC_CheckField, 0, 2, 3, 7, 0, 0, // Skip to: 30 39 // CHECK-NEXT: /* 30 */ MCD::OPC_CheckField, 3, 2, 0, 7, 0, 0, // Skip to: 44
|
| H A D | trydecode-emission3.td | 38 // CHECK-NEXT: /* 3 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 26 39 // CHECK-NEXT: /* 8 */ MCD::OPC_CheckField, 2, 2, 0, 7, 0, 0, // Skip to: 22
|
| H A D | trydecode-emission4.td | 37 // CHECK-NEXT: /* 4 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 28 38 // CHECK-NEXT: /* 9 */ MCD::OPC_CheckField, 248, 3, 2, 0, 7, 0, 0, // Skip to: 24
|
| H A D | trydecode-emission.td | 37 // CHECK-NEXT: /* 3 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 26 38 // CHECK-NEXT: /* 8 */ MCD::OPC_CheckField, 2, 2, 0, 7, 0, 0, // Skip to: 22
|
| H A D | VarLenDecoder.td | 50 // CHECK-NEXT: MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 12 52 // CHECK-NEXT: MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 21
|
| /llvm-project/clang-tools-extra/clangd/refactor/tweaks/ |
| H A D | MemberwiseConstructor.cpp | 80 case Skip: in prepare() 124 Skip, // Do not initialize this field, but allow the tweak anyway. enumerator 131 return Skip; in considerField() 182 return Skip; in considerClassValue() 215 return Skip; in considerClassValue()
|
| /llvm-project/clang/lib/Format/ |
| H A D | IntegerLiteralSeparatorFixer.cpp | 89 for (bool Skip = false; !Lex.LexFromRawLexer(Tok);) { in process() local 97 Skip = true; in process() 99 Skip = false; in process() 102 if (Skip || Tok.isNot(tok::numeric_constant) || Text[0] == '.' || in process()
|
| /llvm-project/llvm/docs/AMDGPU/ |
| H A D | gfx11_delay.rst | 70 SKIP_1 Skip 1 instruction then apply dependency. 71 SKIP_2 Skip 2 instructions then apply dependency. 72 SKIP_3 Skip 3 instructions then apply dependency. 73 SKIP_4 Skip 4 instructions then apply dependency.
|
| /llvm-project/mlir/unittests/Debug/ |
| H A D | FileLineColLocBreakpointManagerTest.cpp | 46 [](const ActionActiveStack *) { return ExecutionContext::Skip; }); in TEST() 145 [](const ActionActiveStack *) { return ExecutionContext::Skip; }); in TEST() 202 [](const ActionActiveStack *) { return ExecutionContext::Skip; }); in TEST()
|
| /llvm-project/llvm/lib/Target/ARM/ |
| H A D | MLxExpansionPass.cpp | 331 unsigned Skip = 0; in ExpandFPMLxInstructions() local 342 Skip = 0; in ExpandFPMLxInstructions() 348 if (++Skip == 2) in ExpandFPMLxInstructions() 352 Skip = 0; in ExpandFPMLxInstructions()
|
| /llvm-project/clang/include/clang/Lex/ |
| H A D | PPCallbacks.h | 501 bool Skip = First->FileNotFound(FileName); in EmbedFileNotFound() local 504 Skip |= Second->FileNotFound(FileName); in EmbedFileNotFound() 505 return Skip; in EmbedFileNotFound() 516 bool Skip = First->FileNotFound(FileName); in FileNotFound() local 519 Skip |= Second->FileNotFound(FileName); in FileNotFound() 520 return Skip; in FileNotFound()
|
| /llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | ELF_riscv.cpp | 703 uint32_t Skip = 0; in finalizeBlockRelax() local 714 Skip = E->getAddend() - Remove; in finalizeBlockRelax() 716 for (; J + 4 <= Skip; J += 4) in finalizeBlockRelax() 718 if (J != Skip) { in finalizeBlockRelax() 719 assert(J + 2 == Skip); in finalizeBlockRelax() 725 Skip = 2; in finalizeBlockRelax() 729 Skip = 4; in finalizeBlockRelax() 734 Dest += Skip; in finalizeBlockRelax() 735 Offset = E->getOffset() + Skip + Remove; in finalizeBlockRelax()
|
| /llvm-project/clang/lib/Basic/ |
| H A D | ProfileList.cpp | 95 return Skip; in getDefault() 110 return Skip; in inSection()
|
| /llvm-project/clang/lib/Frontend/ |
| H A D | MultiplexConsumer.cpp | 401 bool Skip = true; in ForgetSema() 403 Skip = Skip && Consumer->shouldSkipFunctionBody(D); in ForgetSema() 404 return Skip; in ForgetSema() 389 bool Skip = true; shouldSkipFunctionBody() local
|
| /llvm-project/libc/test/src/setjmp/ |
| H A D | CMakeLists.txt | 3 # Skip setjmp tests under sanitizers
|
| /llvm-project/llvm/unittests/IR/ |
| H A D | LegacyPassManagerTest.cpp | 360 bool Skip; member 361 CustomOptPassGate(bool Skip) : Skip(Skip) { } in CustomOptPassGate() 363 return !Skip; in shouldRunPass()
|
| /llvm-project/llvm/lib/Analysis/ |
| H A D | MLInlineAdvisor.cpp | 342 if (auto Skip = getSkipAdviceIfUnreachableCallsite(CB)) in getAdviceImpl() 343 return Skip; in getAdviceImpl() local 468 if (auto Skip = getSkipAdviceIfUnreachableCallsite(CB)) in getMandatoryAdvice() 469 return Skip; in getMandatoryAdvice() local
|
| /llvm-project/clang/include/clang/Basic/ |
| H A D | ProfileList.h | 35 Skip, enumerator
|
| /llvm-project/mlir/include/mlir/IR/ |
| H A D | Visitors.h | 34 enum ResultEnum { Interrupt, Advance, Skip } result; enumerator 52 static WalkResult skip() { return {Skip}; } in skip() 58 bool wasSkipped() const { return result == Skip; } in wasSkipped()
|
| /llvm-project/llvm/test/CodeGen/WebAssembly/ |
| H A D | irreducible-cfg.ll | 240 br i1 %cmp118, label %Skip, label %do.cond 245 for.cond: ; preds = %Skip, %psh 249 br i1 undef, label %Skip, label %do.body45 254 Skip: ; preds = %for.body39, %do.body
|
| /llvm-project/llvm/test/CodeGen/AMDGPU/ |
| H A D | rewrite-partial-reg-uses-gen.mir | 2780 # Skip test_vreg_96_align2_w64: the 64-bit subreg isn't fully supported for the regclass vreg_96_al… 2824 # Skip test_vreg_128_align2_w96: the 96-bit subreg isn't fully supported for the regclass vreg_128_… 2847 # Skip test_vreg_160_align2_w64: the 64-bit subreg isn't fully supported for the regclass vreg_160_… 2873 # Skip test_vreg_160_align2_w128: the 128-bit subreg isn't fully supported for the regclass vreg_16… 2924 # Skip test_vreg_192_align2_w96: the 96-bit subreg isn't fully supported for the regclass vreg_192_… 2954 # Skip test_vreg_192_align2_w160: the 160-bit subreg isn't fully supported for the regclass vreg_19… 2977 # Skip test_vreg_224_align2_w64: the 64-bit subreg isn't fully supported for the regclass vreg_224_… 3012 # Skip test_vreg_224_align2_w128: the 128-bit subreg isn't fully supported for the regclass vreg_22… 3046 # Skip test_vreg_224_align2_w192: the 192-bit subreg isn't fully supported for the regclass vreg_22… 3097 # Skip test_vreg_256_align2_w96: the 96-bit subreg isn't fully supported for the regclass vreg_256_… [all …]
|
| /llvm-project/libc/cmake/modules/ |
| H A D | LLVMLibCTargetNameUtils.cmake | 16 # Skip over the first '.' character.
|