Home
last modified time | relevance | path

Searched refs:DType (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h1112 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 DJMCInstrumenter.cpp117 auto *DType = in attachDebugInfo() local
123 /*LineNo=*/0, DType, /*IsLocalToUnit=*/true, /*IsDefined=*/true); in attachDebugInfo()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp464 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 DAArch64ExpandPseudoInsts.cpp494 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 DDebugInfo.cpp1642 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 DOpenACCKinds.h274 DType, enumerator
480 case OpenACCClauseKind::DType: in printOpenACCClauseKind()
H A DOpenACCClauses.def50 CLAUSE_ALIAS(DType, DeviceType, false)
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenACC.cpp129 .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 DSemaOpenACC.h535 ClauseKind == OpenACCClauseKind::DType) && in getDeviceTypeArchitectures()
726 ClauseKind == OpenACCClauseKind::DType) && in setDeviceTypeDetails()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/TargetBuiltins/
H A DNVPTX.cpp905 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 DOpenACCClause.h281 (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 DSemaOpenACCClause.cpp33 if (NewClause.getClauseKind() == OpenACCClauseKind::DType || in checkValidAfterDeviceType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DTextNodeDumper.cpp500 case OpenACCClauseKind::DType: in Visit()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp8840 case OpenACCClauseKind::DType: { in writeOpenACCClause()
H A DASTReader.cpp12853 case OpenACCClauseKind::DType: { in readOpenACCClause()