/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
H A D | WebAssemblyMCTypeUtilities.cpp | 34 WebAssembly::BlockType WebAssembly::parseBlockType(StringRef Type) { in parseBlockType() 36 return StringSwitch<WebAssembly::BlockType>(Type) in parseBlockType() 37 .Case("i32", WebAssembly::BlockType::I32) in parseBlockType() 38 .Case("i64", WebAssembly::BlockType::I64) in parseBlockType() 39 .Case("f32", WebAssembly::BlockType::F32) in parseBlockType() 40 .Case("f64", WebAssembly::BlockType::F64) in parseBlockType() 41 .Case("v128", WebAssembly::BlockType::V128) in parseBlockType() 42 .Case("funcref", WebAssembly::BlockType::Funcref) in parseBlockType() 43 .Case("externref", WebAssembly::BlockType::Externref) in parseBlockType() 44 .Case("exnref", WebAssembly::BlockType::Exnref) in parseBlockType() [all …]
|
H A D | WebAssemblyMCTypeUtilities.h | 25 enum class BlockType : unsigned { enum 70 BlockType parseBlockType(StringRef Type);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyMCInstLower.cpp | 224 auto BT = static_cast<WebAssembly::BlockType>(MO.getImm()); in lower() 225 assert(BT != WebAssembly::BlockType::Invalid); in lower() 226 if (BT == WebAssembly::BlockType::Multivalue) { in lower()
|
H A D | WebAssemblyCFGStackify.cpp | 353 WebAssembly::BlockType ReturnType = WebAssembly::BlockType::Void; in placeBlockMarker() 436 .addImm(int64_t(WebAssembly::BlockType::Void)); in placeLoopMarker() 606 .addImm(int64_t(WebAssembly::BlockType::Void)); in placeTryMarker() 874 .addImm(int64_t(WebAssembly::BlockType::Void)); in addTryDelegate() 1478 WebAssembly::BlockType RetType = in fixEndsAtEndOfFunction() 1480 ? WebAssembly::BlockType::Multivalue in fixEndsAtEndOfFunction() 1481 : WebAssembly::BlockType( in fixEndsAtEndOfFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86SelectionDAGInfo.cpp | 228 const MVT BlockType = getOptimalRepmovsType(Subtarget, Alignment); in emitConstantSizeRepmov() local 229 const uint64_t BlockBytes = BlockType.getSizeInBits() / 8; in emitConstantSizeRepmov() 234 DAG.getIntPtrConstant(BlockCount, dl), BlockType); in emitConstantSizeRepmov()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | AnalysisBasedWarnings.h | 101 const Decl *D, QualType BlockType);
|
H A D | Sema.h | 756 QualType BlockType = QualType());
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | BranchProbabilityInfo.cpp | 287 uint32_t BlockType = Inner; in calculateSccBlockType() local 294 BlockType |= Header; in calculateSccBlockType() 299 BlockType |= Exiting; in calculateSccBlockType() 307 if (BlockType != Inner) { in calculateSccBlockType() 310 SccBlockTypes.insert(std::make_pair(BB, BlockType)); in calculateSccBlockType()
|
/freebsd/sys/contrib/edk2/Include/Uefi/ |
H A D | UefiInternalFormRepresentation.h | 217 UINT8 BlockType; member 347 UINT8 BlockType; member 479 UINT8 BlockType; member 1858 UINT8 BlockType; member
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
H A D | WebAssemblyAsmParser.cpp | 470 WebAssembly::BlockType BT) { in addBlockTypeOperand() 471 if (BT != WebAssembly::BlockType::Void) { in addBlockTypeOperand() 662 if (BT == WebAssembly::BlockType::Invalid) in ParseInstruction() 731 addBlockTypeOperand(Operands, NameLoc, WebAssembly::BlockType::Void); in ParseInstruction()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/ |
H A D | WebAssemblyDisassembler.cpp | 232 MCOperand::createImm(int64_t(WebAssembly::BlockType::Invalid))); in getInstruction()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | CalledOnceCheck.cpp | 987 QualType BlockType = Ty->castAs<BlockPointerType>()->getPointeeType(); in isConventional() local 989 return BlockType->castAs<FunctionType>()->getReturnType()->isVoidType(); in isConventional()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | AnalysisBasedWarnings.cpp | 666 QualType BlockType, in CheckFallThroughForBody() argument 688 BlockType->getPointeeType()->getAs<FunctionType>()) { in CheckFallThroughForBody() 2558 const Decl *D, QualType BlockType) { in IssueWarnings() argument 2682 CheckFallThroughForBody(S, D, Body, BlockType, CD, AC, fscope); in IssueWarnings()
|
H A D | Sema.cpp | 2277 const Decl *D, QualType BlockType) { in PopFunctionScopeInfo() argument 2290 AnalysisWarnings.IssueWarnings(*WP, Scope.get(), D, BlockType); in PopFunctionScopeInfo()
|
H A D | SemaObjC.cpp | 1709 BlocksAttr::BlockType type; in handleBlocksAttr()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Attr.td | 1116 let Args = [EnumArgument<"Type", "BlockType", /*is_string=*/true,
|