/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | DebugInfo.h | 1059 const char *LLVMDITypeGetName(LLVMMetadataRef DType, size_t *Length); 1067 uint64_t LLVMDITypeGetSizeInBits(LLVMMetadataRef DType); 1075 uint64_t LLVMDITypeGetOffsetInBits(LLVMMetadataRef DType); 1083 uint32_t LLVMDITypeGetAlignInBits(LLVMMetadataRef DType); 1091 unsigned LLVMDITypeGetLine(LLVMMetadataRef DType); 1099 LLVMDIFlags LLVMDITypeGetFlags(LLVMMetadataRef DType);
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | VerifyDiagnosticConsumer.cpp | 461 StringRef DType; in ParseDirective() local 462 if (DToken.ends_with(DType = "-error")) in ParseDirective() 464 else if (DToken.ends_with(DType = "-warning")) in ParseDirective() 466 else if (DToken.ends_with(DType = "-remark")) in ParseDirective() 468 else if (DToken.ends_with(DType = "-note")) in ParseDirective() 470 else if (DToken.ends_with(DType = "-no-diagnostics")) { in ParseDirective() 476 DToken = DToken.substr(0, DToken.size()-DType.size()); in ParseDirective()
|
/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/include/clang/Basic/ |
H A D | OpenACCKinds.h | 277 DType, enumerator 431 case OpenACCClauseKind::DType: in printOpenACCClauseKind()
|
H A D | OpenACCClauses.def | 42 CLAUSE_ALIAS(DType, DeviceType, false)
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DebugInfo.cpp | 1547 const char *LLVMDITypeGetName(LLVMMetadataRef DType, size_t *Length) { in LLVMDITypeGetName() argument 1548 StringRef Str = unwrapDI<DIType>(DType)->getName(); in LLVMDITypeGetName() 1553 uint64_t LLVMDITypeGetSizeInBits(LLVMMetadataRef DType) { in LLVMDITypeGetSizeInBits() argument 1554 return unwrapDI<DIType>(DType)->getSizeInBits(); in LLVMDITypeGetSizeInBits() 1557 uint64_t LLVMDITypeGetOffsetInBits(LLVMMetadataRef DType) { in LLVMDITypeGetOffsetInBits() argument 1558 return unwrapDI<DIType>(DType)->getOffsetInBits(); in LLVMDITypeGetOffsetInBits() 1561 uint32_t LLVMDITypeGetAlignInBits(LLVMMetadataRef DType) { in LLVMDITypeGetAlignInBits() argument 1562 return unwrapDI<DIType>(DType)->getAlignInBits(); in LLVMDITypeGetAlignInBits() 1565 unsigned LLVMDITypeGetLine(LLVMMetadataRef DType) { in LLVMDITypeGetLine() argument 1566 return unwrapDI<DIType>(DType)->getLine(); in LLVMDITypeGetLine() [all …]
|
/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/clang/include/clang/Sema/ |
H A D | SemaOpenACC.h | 245 ClauseKind == OpenACCClauseKind::DType) && in getDeviceTypeArchitectures() 377 ClauseKind == OpenACCClauseKind::DType) && in setDeviceTypeDetails()
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseOpenACC.cpp | 124 .Case("dtype", OpenACCClauseKind::DType) in getOpenACCClauseKind() 532 case OpenACCClauseKind::DType: in getClauseParensKind() 1029 case OpenACCClauseKind::DType: in ParseOpenACCClauseParams()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenACCClause.h | 240 (K == OpenACCClauseKind::DeviceType || K == OpenACCClauseKind::DType) && in OpenACCDeviceTypeClause() 261 return C->getClauseKind() == OpenACCClauseKind::DType || in classof()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenACC.cpp | 326 case OpenACCClauseKind::DType: in doesClauseApplyToDirective() 384 if (NewClause.getClauseKind() == OpenACCClauseKind::DType || in checkValidAfterDeviceType()
|
/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | TGParser.cpp | 1304 DagRecTy *DType = dyn_cast<DagRecTy>(LHSt->getType()); in ParseOperation() local 1305 if (!LType && !SType && !DType) { in ParseOperation()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | TextNodeDumper.cpp | 451 case OpenACCClauseKind::DType: in Visit()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 8059 case OpenACCClauseKind::DType: { in writeOpenACCClause()
|
H A D | ASTReader.cpp | 12015 case OpenACCClauseKind::DType: { in readOpenACCClause()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 20610 llvm::Type *DType = Dst.getElementType(); in EmitNVPTXBuiltinExpr() local 20613 Builder.CreateBitCast(Builder.CreateExtractValue(Result, i), DType), in EmitNVPTXBuiltinExpr()
|