| /freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | DebugInfo.h | 1112 LLVM_C_ABI const char *LLVMDITypeGetName(LLVMMetadataRef DType, size_t *Length); 1120 LLVM_C_ABI uint64_t LLVMDITypeGetSizeInBits(LLVMMetadataRef DType); 1128 LLVM_C_ABI uint64_t LLVMDITypeGetOffsetInBits(LLVMMetadataRef DType); 1136 LLVM_C_ABI uint32_t LLVMDITypeGetAlignInBits(LLVMMetadataRef DType); 1144 LLVM_C_ABI unsigned LLVMDITypeGetLine(LLVMMetadataRef DType); 1152 LLVM_C_ABI LLVMDIFlags LLVMDITypeGetFlags(LLVMMetadataRef DType);
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | JMCInstrumenter.cpp | 117 auto *DType = in attachDebugInfo() local 123 /*LineNo=*/0, DType, /*IsLocalToUnit=*/true, /*IsDefined=*/true); in attachDebugInfo()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | VerifyDiagnosticConsumer.cpp | 464 StringRef DType; in ParseDirective() local 465 if (DToken.ends_with(DType = "-error")) in ParseDirective() 467 else if (DToken.ends_with(DType = "-warning")) in ParseDirective() 469 else if (DToken.ends_with(DType = "-remark")) in ParseDirective() 471 else if (DToken.ends_with(DType = "-note")) in ParseDirective() 473 else if (DToken.ends_with(DType = "-no-diagnostics")) { in ParseDirective() 479 DToken = DToken.substr(0, DToken.size()-DType.size()); in ParseDirective()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ExpandPseudoInsts.cpp | 494 uint64_t DType = TII->get(Opcode).TSFlags & AArch64::DestructiveInstTypeMask; in expand_DestructiveOp() local 502 switch (DType) { in expand_DestructiveOp() 539 switch (DType) { in expand_DestructiveOp() 608 assert((DOPRegIsUnique || DType == AArch64::DestructiveBinary || in expand_DestructiveOp() 609 DType == AArch64::DestructiveBinaryComm || in expand_DestructiveOp() 610 DType == AArch64::DestructiveBinaryCommWithRev) && in expand_DestructiveOp() 627 if ((DType == AArch64::DestructiveBinary || in expand_DestructiveOp() 628 DType == AArch64::DestructiveBinaryComm || in expand_DestructiveOp() 629 DType == AArch64::DestructiveBinaryCommWithRev) && in expand_DestructiveOp() 651 switch (DType) { in expand_DestructiveOp()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DebugInfo.cpp | 1642 const char *LLVMDITypeGetName(LLVMMetadataRef DType, size_t *Length) { in LLVMDITypeGetName() argument 1643 StringRef Str = unwrapDI<DIType>(DType)->getName(); in LLVMDITypeGetName() 1648 uint64_t LLVMDITypeGetSizeInBits(LLVMMetadataRef DType) { in LLVMDITypeGetSizeInBits() argument 1649 return unwrapDI<DIType>(DType)->getSizeInBits(); in LLVMDITypeGetSizeInBits() 1652 uint64_t LLVMDITypeGetOffsetInBits(LLVMMetadataRef DType) { in LLVMDITypeGetOffsetInBits() argument 1653 return unwrapDI<DIType>(DType)->getOffsetInBits(); in LLVMDITypeGetOffsetInBits() 1656 uint32_t LLVMDITypeGetAlignInBits(LLVMMetadataRef DType) { in LLVMDITypeGetAlignInBits() argument 1657 return unwrapDI<DIType>(DType)->getAlignInBits(); in LLVMDITypeGetAlignInBits() 1660 unsigned LLVMDITypeGetLine(LLVMMetadataRef DType) { in LLVMDITypeGetLine() argument 1661 return unwrapDI<DIType>(DType)->getLine(); in LLVMDITypeGetLine() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | OpenACCKinds.h | 274 DType, enumerator 480 case OpenACCClauseKind::DType: in printOpenACCClauseKind()
|
| H A D | OpenACCClauses.def | 50 CLAUSE_ALIAS(DType, DeviceType, false)
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseOpenACC.cpp | 129 .Case("dtype", OpenACCClauseKind::DType) in getOpenACCClauseKind() 536 case OpenACCClauseKind::DType: in getClauseParensKind() 1146 case OpenACCClauseKind::DType: in ParseOpenACCClauseParams()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaOpenACC.h | 535 ClauseKind == OpenACCClauseKind::DType) && in getDeviceTypeArchitectures() 726 ClauseKind == OpenACCClauseKind::DType) && in setDeviceTypeDetails()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/TargetBuiltins/ |
| H A D | NVPTX.cpp | 905 llvm::Type *DType = Dst.getElementType(); in EmitNVPTXBuiltinExpr() local 908 Builder.CreateBitCast(Builder.CreateExtractValue(Result, i), DType), in EmitNVPTXBuiltinExpr()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenACCClause.h | 281 (K == OpenACCClauseKind::DeviceType || K == OpenACCClauseKind::DType) && in OpenACCDeviceTypeClause() 301 return C->getClauseKind() == OpenACCClauseKind::DType || in classof()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenACCClause.cpp | 33 if (NewClause.getClauseKind() == OpenACCClauseKind::DType || in checkValidAfterDeviceType()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | TextNodeDumper.cpp | 500 case OpenACCClauseKind::DType: in Visit()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 8840 case OpenACCClauseKind::DType: { in writeOpenACCClause()
|
| H A D | ASTReader.cpp | 12853 case OpenACCClauseKind::DType: { in readOpenACCClause()
|