Home
last modified time | relevance | path

Searched refs:fallthrough (Results 1 – 25 of 505) sorted by relevance

12345678910>>...21

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86InstComments.cpp303 [[fallthrough]]; in printFMAComments()
318 [[fallthrough]]; in printFMAComments()
335 [[fallthrough]]; in printFMAComments()
352 [[fallthrough]]; in printFMAComments()
370 [[fallthrough]]; in printFMAComments()
384 [[fallthrough]]; in printFMAComments()
400 [[fallthrough]]; in printFMAComments()
411 [[fallthrough]]; in printFMAComments()
422 [[fallthrough]]; in printFMAComments()
433 [[fallthrough]]; in printFMAComments()
[all …]
/freebsd/contrib/processor-trace/include/
H A Dpt_compiler.h38 #if !defined(fallthrough)
39 # if (__has_attribute(fallthrough))
40 # define fallthrough __attribute__((fallthrough)) macro
42 # define fallthrough /* Fall through. */ macro
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DDemangleConfig.h75 #if __cplusplus > 201402L && __has_cpp_attribute(fallthrough)
76 #define DEMANGLE_FALLTHROUGH [[fallthrough]]
77 #elif __has_cpp_attribute(gnu::fallthrough)
78 #define DEMANGLE_FALLTHROUGH [[gnu::fallthrough]]
83 #elif __has_cpp_attribute(clang::fallthrough)
84 #define DEMANGLE_FALLTHROUGH [[clang::fallthrough]]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCompiler.h300 #if defined(__cplusplus) && __cplusplus > 201402L && LLVM_HAS_CPP_ATTRIBUTE(fallthrough)
301 #define LLVM_FALLTHROUGH [[fallthrough]]
302 #elif LLVM_HAS_CPP_ATTRIBUTE(gnu::fallthrough)
303 #define LLVM_FALLTHROUGH [[gnu::fallthrough]]
304 #elif __has_attribute(fallthrough)
305 #define LLVM_FALLTHROUGH __attribute__((fallthrough))
306 #elif LLVM_HAS_CPP_ATTRIBUTE(clang::fallthrough)
307 #define LLVM_FALLTHROUGH [[clang::fallthrough]]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600AsmPrinter.cpp74 default: [[fallthrough]]; in EmitProgramInfoR600()
83 default: [[fallthrough]]; in EmitProgramInfoR600()
84 case CallingConv::AMDGPU_GS: [[fallthrough]]; in EmitProgramInfoR600()
85 case CallingConv::AMDGPU_CS: [[fallthrough]]; in EmitProgramInfoR600()
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DX86.cpp568 [[fallthrough]]; in getTargetDefines()
577 [[fallthrough]]; in getTargetDefines()
581 [[fallthrough]]; in getTargetDefines()
663 [[fallthrough]]; in getTargetDefines()
672 [[fallthrough]]; in getTargetDefines()
804 [[fallthrough]]; in getTargetDefines()
807 [[fallthrough]]; in getTargetDefines()
810 [[fallthrough]]; in getTargetDefines()
979 [[fallthrough]]; in getTargetDefines()
982 [[fallthrough]]; in getTargetDefines()
[all …]
H A DWebAssembly.cpp118 [[fallthrough]]; in setSIMDLevel()
121 [[fallthrough]]; in setSIMDLevel()
132 [[fallthrough]]; in setSIMDLevel()
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.cpp123 case SPCC::CPCC_3: [[fallthrough]]; in GetOppositeBranchCondition()
124 case SPCC::CPCC_2: [[fallthrough]]; in GetOppositeBranchCondition()
125 case SPCC::CPCC_23: [[fallthrough]]; in GetOppositeBranchCondition()
126 case SPCC::CPCC_1: [[fallthrough]]; in GetOppositeBranchCondition()
127 case SPCC::CPCC_13: [[fallthrough]]; in GetOppositeBranchCondition()
128 case SPCC::CPCC_12: [[fallthrough]]; in GetOppositeBranchCondition()
129 case SPCC::CPCC_123: [[fallthrough]]; in GetOppositeBranchCondition()
130 case SPCC::CPCC_0: [[fallthrough]]; in GetOppositeBranchCondition()
131 case SPCC::CPCC_03: [[fallthrough]]; in GetOppositeBranchCondition()
132 case SPCC::CPCC_02: [[fallthrough]]; in GetOppositeBranchCondition()
[all …]
/freebsd/sys/contrib/zstd/lib/common/
H A Dcompiler.h229 # if ZSTD_HAS_C_ATTRIBUTE(fallthrough)
230 # define ZSTD_FALLTHROUGH [[fallthrough]]
231 # elif ZSTD_HAS_CPP_ATTRIBUTE(fallthrough)
232 # define ZSTD_FALLTHROUGH [[fallthrough]]
/freebsd/contrib/libfido2/src/
H A Dfallthrough.h12 #if __has_attribute(fallthrough)
13 #define FALLTHROUGH __attribute__((fallthrough));
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DIncrementalParser.cpp135 [[fallthrough]]; in IncrementalAction()
137 [[fallthrough]]; in IncrementalAction()
142 [[fallthrough]]; in IncrementalAction()
144 [[fallthrough]]; in IncrementalAction()
146 [[fallthrough]]; in IncrementalAction()
148 [[fallthrough]]; in IncrementalAction()
150 [[fallthrough]]; in IncrementalAction()
/freebsd/sys/dev/qat/qat_common/
H A Dadf_pfvf_vf_msg.c124 fallthrough; in adf_vf2pf_get_capabilities()
131 fallthrough; in adf_vf2pf_get_capabilities()
139 fallthrough; in adf_vf2pf_get_capabilities()
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DTargetParser.cpp447 [[fallthrough]]; in fillAMDGPUFeatureMap()
498 [[fallthrough]]; in fillAMDGPUFeatureMap()
505 [[fallthrough]]; in fillAMDGPUFeatureMap()
512 [[fallthrough]]; in fillAMDGPUFeatureMap()
520 [[fallthrough]]; in fillAMDGPUFeatureMap()
530 [[fallthrough]]; in fillAMDGPUFeatureMap()
538 [[fallthrough]]; in fillAMDGPUFeatureMap()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCRegisterInfo.cpp86 [[fallthrough]]; in replaceFrameIndex()
90 [[fallthrough]]; in replaceFrameIndex()
101 [[fallthrough]]; in replaceFrameIndex()
104 [[fallthrough]]; in replaceFrameIndex()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCTargetDesc.cpp538 [[fallthrough]]; in completeHVXFeatures()
541 [[fallthrough]]; in completeHVXFeatures()
544 [[fallthrough]]; in completeHVXFeatures()
547 [[fallthrough]]; in completeHVXFeatures()
550 [[fallthrough]]; in completeHVXFeatures()
553 [[fallthrough]]; in completeHVXFeatures()
556 [[fallthrough]]; in completeHVXFeatures()
559 [[fallthrough]]; in completeHVXFeatures()
H A DHexagonAsmBackend.cpp446 [[fallthrough]]; in applyFixup()
456 [[fallthrough]]; in applyFixup()
468 [[fallthrough]]; in applyFixup()
479 [[fallthrough]]; in applyFixup()
491 [[fallthrough]]; in applyFixup()
589 [[fallthrough]]; in fixupNeedsRelaxationAdvanced()
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dparser_std_format_spec.h180 [[fallthrough]]; in __parse_chrono_specs()
238 [[fallthrough]]; in __parse_conversion_spec()
260 [[fallthrough]]; in __parse_conversion_spec()
274 [[fallthrough]]; in __parse_conversion_spec()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubCommon.cpp67 [[fallthrough]]; in output()
72 [[fallthrough]]; in output()
77 [[fallthrough]]; in output()
/freebsd/contrib/tcpdump/
H A Dnetdissect-stdinc.h376 #if __has_attribute(fallthrough) && !defined(__clang__)
377 # define ND_FALL_THROUGH __attribute__ ((fallthrough))
/freebsd/sys/contrib/openzfs/config/
H A Dalways-compiler-options.m4185 dnl # Check if cc supports -Wimplicit-fallthrough option.
188 AC_MSG_CHECKING([whether $CC supports -Wimplicit-fallthrough])
191 CFLAGS="$CFLAGS -Werror -Wimplicit-fallthrough"
194 IMPLICIT_FALLTHROUGH=-Wimplicit-fallthrough
196 [Define if compiler supports -Wimplicit-fallthrough])
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_internal_defs.h270 #if __has_cpp_attribute(clang::fallthrough)
271 # define FALLTHROUGH [[clang::fallthrough]]
272 #elif __has_cpp_attribute(fallthrough)
273 # define FALLTHROUGH [[fallthrough]]
/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DAArch64.cpp506 [[fallthrough]]; in relocate()
523 [[fallthrough]]; in relocate()
568 [[fallthrough]]; in relocate()
574 [[fallthrough]]; in relocate()
580 [[fallthrough]]; in relocate()
593 [[fallthrough]]; in relocate()
602 [[fallthrough]]; in relocate()
611 [[fallthrough]]; in relocate()
/freebsd/sys/contrib/dev/rtw89/
H A Dtxrx.h633 fallthrough;
654 fallthrough;
684 fallthrough;
/freebsd/contrib/libarchive/libarchive/test/
H A Dtest.h37 #define __LA_FALLTHROUGH __attribute__((fallthrough))
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMagic.cpp211 [[fallthrough]]; in identify_magic()
217 [[fallthrough]]; in identify_magic()

12345678910>>...21