Searched refs:DType (Results 1 – 8 of 8) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/bindings/ocaml/debuginfo/ |
| H A D | debuginfo_ocaml.c | 812 value llvm_di_type_get_name(LLVMMetadataRef DType) { in llvm_di_type_get_name() argument 814 const char *Name = LLVMDITypeGetName(DType, &Len); in llvm_di_type_get_name() 818 value llvm_di_type_get_size_in_bits(LLVMMetadataRef DType) { in llvm_di_type_get_size_in_bits() argument 819 uint64_t Size = LLVMDITypeGetSizeInBits(DType); in llvm_di_type_get_size_in_bits() 823 value llvm_di_type_get_offset_in_bits(LLVMMetadataRef DType) { in llvm_di_type_get_offset_in_bits() argument 824 uint64_t Size = LLVMDITypeGetOffsetInBits(DType); in llvm_di_type_get_offset_in_bits() 828 value llvm_di_type_get_align_in_bits(LLVMMetadataRef DType) { in llvm_di_type_get_align_in_bits() argument 829 uint32_t Size = LLVMDITypeGetAlignInBits(DType); in llvm_di_type_get_align_in_bits() 833 value llvm_di_type_get_line(LLVMMetadataRef DType) { in llvm_di_type_get_line() argument 834 unsigned Line = LLVMDITypeGetLine(DType); in llvm_di_type_get_line() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm-c/ |
| H A D | DebugInfo.h | 1045 const char *LLVMDITypeGetName(LLVMMetadataRef DType, size_t *Length); 1053 uint64_t LLVMDITypeGetSizeInBits(LLVMMetadataRef DType); 1061 uint64_t LLVMDITypeGetOffsetInBits(LLVMMetadataRef DType); 1069 uint32_t LLVMDITypeGetAlignInBits(LLVMMetadataRef DType); 1077 unsigned LLVMDITypeGetLine(LLVMMetadataRef DType); 1085 LLVMDIFlags LLVMDITypeGetFlags(LLVMMetadataRef DType);
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | VerifyDiagnosticConsumer.cpp | 456 StringRef DType; in ParseDirective() local 457 if (DToken.endswith(DType="-error")) in ParseDirective() 459 else if (DToken.endswith(DType="-warning")) in ParseDirective() 461 else if (DToken.endswith(DType="-remark")) in ParseDirective() 463 else if (DToken.endswith(DType="-note")) in ParseDirective() 465 else if (DToken.endswith(DType="-no-diagnostics")) { in ParseDirective() 472 DToken = DToken.substr(0, DToken.size()-DType.size()); in ParseDirective()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | JMCInstrumenter.cpp | 110 auto *DType = in attachDebugInfo() local 116 /*LineNo=*/0, DType, /*IsLocalToUnit=*/true, /*IsDefined=*/true); in attachDebugInfo()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | DebugInfo.cpp | 1447 const char *LLVMDITypeGetName(LLVMMetadataRef DType, size_t *Length) { in LLVMDITypeGetName() argument 1448 StringRef Str = unwrap<DIType>(DType)->getName(); in LLVMDITypeGetName() 1453 uint64_t LLVMDITypeGetSizeInBits(LLVMMetadataRef DType) { in LLVMDITypeGetSizeInBits() argument 1454 return unwrapDI<DIType>(DType)->getSizeInBits(); in LLVMDITypeGetSizeInBits() 1457 uint64_t LLVMDITypeGetOffsetInBits(LLVMMetadataRef DType) { in LLVMDITypeGetOffsetInBits() argument 1458 return unwrapDI<DIType>(DType)->getOffsetInBits(); in LLVMDITypeGetOffsetInBits() 1461 uint32_t LLVMDITypeGetAlignInBits(LLVMMetadataRef DType) { in LLVMDITypeGetAlignInBits() argument 1462 return unwrapDI<DIType>(DType)->getAlignInBits(); in LLVMDITypeGetAlignInBits() 1465 unsigned LLVMDITypeGetLine(LLVMMetadataRef DType) { in LLVMDITypeGetLine() argument 1466 return unwrapDI<DIType>(DType)->getLine(); in LLVMDITypeGetLine() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/ |
| H A D | AArch64ExpandPseudoInsts.cpp | 447 uint64_t DType = TII->get(Opcode).TSFlags & AArch64::DestructiveInstTypeMask; in expand_DestructiveOp() local 455 switch (DType) { in expand_DestructiveOp() 492 switch (DType) { in expand_DestructiveOp() 561 assert((DOPRegIsUnique || DType == AArch64::DestructiveBinary || in expand_DestructiveOp() 562 DType == AArch64::DestructiveBinaryComm) && in expand_DestructiveOp() 579 if ((DType == AArch64::DestructiveBinary || in expand_DestructiveOp() 580 DType == AArch64::DestructiveBinaryComm) && in expand_DestructiveOp() 602 switch (DType) { in expand_DestructiveOp()
|
| /openbsd-src/gnu/llvm/llvm/lib/TableGen/ |
| H A D | TGParser.cpp | 1042 DagRecTy *DType = dyn_cast<DagRecTy>(LHSt->getType()); in ParseOperation() local 1043 if (!LType && !SType && !DType) { in ParseOperation()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGBuiltin.cpp | 18549 llvm::Type *DType = Dst.getElementType(); in EmitNVPTXBuiltinExpr() local 18552 Builder.CreateBitCast(Builder.CreateExtractValue(Result, i), DType), in EmitNVPTXBuiltinExpr()
|