Home
last modified time | relevance | path

Searched refs:Skip (Results 1 – 25 of 141) sorted by relevance

123456

/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMIRFormatter.cpp59 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 DAMDGPUInsertDelayAlu.cpp305 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 DUppercaseLiteralSuffixCheck.cpp141 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 Dtrydecode-emission2.td34 // 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 Dtrydecode-emission3.td38 // 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 Dtrydecode-emission4.td37 // 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 Dtrydecode-emission.td37 // 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 DVarLenDecoder.td50 // 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 DMemberwiseConstructor.cpp80 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 DIntegerLiteralSeparatorFixer.cpp89 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 Dgfx11_delay.rst70 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 DFileLineColLocBreakpointManagerTest.cpp46 [](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 DMLxExpansionPass.cpp331 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 DPPCallbacks.h501 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 DELF_riscv.cpp703 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 DProfileList.cpp95 return Skip; in getDefault()
110 return Skip; in inSection()
/llvm-project/clang/lib/Frontend/
H A DMultiplexConsumer.cpp401 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 DCMakeLists.txt3 # Skip setjmp tests under sanitizers
/llvm-project/llvm/unittests/IR/
H A DLegacyPassManagerTest.cpp360 bool Skip; member
361 CustomOptPassGate(bool Skip) : Skip(Skip) { } in CustomOptPassGate()
363 return !Skip; in shouldRunPass()
/llvm-project/llvm/lib/Analysis/
H A DMLInlineAdvisor.cpp342 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 DProfileList.h35 Skip, enumerator
/llvm-project/mlir/include/mlir/IR/
H A DVisitors.h34 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 Dirreducible-cfg.ll240 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 Drewrite-partial-reg-uses-gen.mir2780 # 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 DLLVMLibCTargetNameUtils.cmake16 # Skip over the first '.' character.

123456