| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/Utils/ |
| H A D | WebAssemblyTypeUtilities.cpp | 47 WebAssembly::BlockType WebAssembly::parseBlockType(StringRef Type) { in parseBlockType() 49 return StringSwitch<WebAssembly::BlockType>(Type) in parseBlockType() 50 .Case("i32", WebAssembly::BlockType::I32) in parseBlockType() 51 .Case("i64", WebAssembly::BlockType::I64) in parseBlockType() 52 .Case("f32", WebAssembly::BlockType::F32) in parseBlockType() 53 .Case("f64", WebAssembly::BlockType::F64) in parseBlockType() 54 .Case("v128", WebAssembly::BlockType::V128) in parseBlockType() 55 .Case("funcref", WebAssembly::BlockType::Funcref) in parseBlockType() 56 .Case("externref", WebAssembly::BlockType::Externref) in parseBlockType() 57 .Case("void", WebAssembly::BlockType::Void) in parseBlockType() [all …]
|
| H A D | WebAssemblyTypeUtilities.h | 26 enum class BlockType : unsigned { enum 55 BlockType parseBlockType(StringRef Type);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyMCInstLower.cpp | 290 auto BT = static_cast<WebAssembly::BlockType>(MO.getImm()); in lower() 291 assert(BT != WebAssembly::BlockType::Invalid); in lower() 292 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() 894 .addImm(int64_t(WebAssembly::BlockType::Void)); in addTryDelegate() 1497 WebAssembly::BlockType RetType = in fixEndsAtEndOfFunction() 1499 ? WebAssembly::BlockType::Multivalue in fixEndsAtEndOfFunction() 1500 : WebAssembly::BlockType( in fixEndsAtEndOfFunction()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86SelectionDAGInfo.cpp | 256 const MVT BlockType = getOptimalRepmovsType(Subtarget, Align); in emitConstantSizeRepmov() local 257 const uint64_t BlockBytes = BlockType.getSizeInBits() / 8; in emitConstantSizeRepmov() 262 DAG.getIntPtrConstant(BlockCount, dl), BlockType); in emitConstantSizeRepmov()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | AnalysisBasedWarnings.h | 98 const Decl *D, QualType BlockType);
|
| H A D | Sema.h | 1844 QualType BlockType = QualType());
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | BranchProbabilityInfo.cpp | 214 uint32_t BlockType = Inner; in calculateSccBlockType() local 221 BlockType |= Header; in calculateSccBlockType() 226 BlockType |= Exiting; in calculateSccBlockType() 234 if (BlockType != Inner) { in calculateSccBlockType() 237 SccBlockTypes.insert(std::make_pair(BB, BlockType)); in calculateSccBlockType()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmParser.cpp | 448 WebAssembly::BlockType BT) { in addBlockTypeOperand() 639 if (BT == WebAssembly::BlockType::Invalid) in ParseInstruction() 716 addBlockTypeOperand(Operands, NameLoc, WebAssembly::BlockType::Void); in ParseInstruction()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/Disassembler/ |
| H A D | WebAssemblyDisassembler.cpp | 229 MCOperand::createImm(int64_t(WebAssembly::BlockType::Invalid))); in getInstruction()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | AnalysisBasedWarnings.cpp | 639 QualType BlockType, in CheckFallThroughForBody() argument 661 BlockType->getPointeeType()->getAs<FunctionType>()) { in CheckFallThroughForBody() 2217 const Decl *D, QualType BlockType) { in IssueWarnings() argument 2342 CheckFallThroughForBody(S, D, Body, BlockType, CD, AC, fscope); in IssueWarnings()
|
| H A D | Sema.cpp | 2016 const Decl *D, QualType BlockType) { in PopFunctionScopeInfo() argument 2029 AnalysisWarnings.IssueWarnings(*WP, Scope.get(), D, BlockType); in PopFunctionScopeInfo()
|
| H A D | SemaDeclAttr.cpp | 2747 BlocksAttr::BlockType type; in handleBlocksAttr()
|
| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | Attr.td | 905 let Args = [EnumArgument<"Type", "BlockType", ["byref"], ["ByRef"]>];
|