| /openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/Utils/ |
| H A D | WebAssemblyTypeUtilities.cpp | 45 WebAssembly::BlockType WebAssembly::parseBlockType(StringRef Type) { in parseBlockType() 47 return StringSwitch<WebAssembly::BlockType>(Type) in parseBlockType() 48 .Case("i32", WebAssembly::BlockType::I32) in parseBlockType() 49 .Case("i64", WebAssembly::BlockType::I64) in parseBlockType() 50 .Case("f32", WebAssembly::BlockType::F32) in parseBlockType() 51 .Case("f64", WebAssembly::BlockType::F64) in parseBlockType() 52 .Case("v128", WebAssembly::BlockType::V128) in parseBlockType() 53 .Case("funcref", WebAssembly::BlockType::Funcref) in parseBlockType() 54 .Case("externref", WebAssembly::BlockType::Externref) in parseBlockType() 55 .Case("void", WebAssembly::BlockType::Void) in parseBlockType() [all …]
|
| H A D | WebAssemblyTypeUtilities.h | 30 enum class BlockType : unsigned { enum 92 BlockType parseBlockType(StringRef Type);
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyMCInstLower.cpp | 225 auto BT = static_cast<WebAssembly::BlockType>(MO.getImm()); in lower() 226 assert(BT != WebAssembly::BlockType::Invalid); in lower() 227 if (BT == WebAssembly::BlockType::Multivalue) { in lower()
|
| H A D | WebAssemblyCFGStackify.cpp | 354 WebAssembly::BlockType ReturnType = WebAssembly::BlockType::Void; in placeBlockMarker() 437 .addImm(int64_t(WebAssembly::BlockType::Void)); in placeLoopMarker() 607 .addImm(int64_t(WebAssembly::BlockType::Void)); in placeTryMarker() 875 .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()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86SelectionDAGInfo.cpp | 225 const MVT BlockType = getOptimalRepmovsType(Subtarget, Align); in emitConstantSizeRepmov() local 226 const uint64_t BlockBytes = BlockType.getSizeInBits() / 8; in emitConstantSizeRepmov() 231 DAG.getIntPtrConstant(BlockCount, dl), BlockType); in emitConstantSizeRepmov()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | AnalysisBasedWarnings.h | 96 const Decl *D, QualType BlockType);
|
| H A D | Sema.h | 1980 QualType BlockType = QualType());
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmParser.cpp | 473 WebAssembly::BlockType BT) { in addBlockTypeOperand() 474 if (BT != WebAssembly::BlockType::Void) { in addBlockTypeOperand() 669 if (BT == WebAssembly::BlockType::Invalid) in ParseInstruction() 738 addBlockTypeOperand(Operands, NameLoc, WebAssembly::BlockType::Void); in ParseInstruction()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/Disassembler/ |
| H A D | WebAssemblyDisassembler.cpp | 230 MCOperand::createImm(int64_t(WebAssembly::BlockType::Invalid))); in getInstruction()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | AnalysisBasedWarnings.cpp | 642 QualType BlockType, in CheckFallThroughForBody() argument 664 BlockType->getPointeeType()->getAs<FunctionType>()) { in CheckFallThroughForBody() 2276 const Decl *D, QualType BlockType) { in IssueWarnings() argument 2400 CheckFallThroughForBody(S, D, Body, BlockType, CD, AC, fscope); in IssueWarnings()
|
| H A D | Sema.cpp | 2229 const Decl *D, QualType BlockType) { in PopFunctionScopeInfo() argument 2242 AnalysisWarnings.IssueWarnings(*WP, Scope.get(), D, BlockType); in PopFunctionScopeInfo()
|
| H A D | SemaDeclAttr.cpp | 3027 BlocksAttr::BlockType type; in handleBlocksAttr()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | CalledOnceCheck.cpp | 986 QualType BlockType = Ty->castAs<BlockPointerType>()->getPointeeType(); in isConventional() local 988 return BlockType->castAs<FunctionType>()->getReturnType()->isVoidType(); in isConventional()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | Attr.td | 972 let Args = [EnumArgument<"Type", "BlockType", ["byref"], ["ByRef"]>];
|