HomeSort by: relevance | last modified time | path
    Searched refs:DType (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
debuginfo_ocaml.c 812 value llvm_di_type_get_name(LLVMMetadataRef DType) {
814 const char *Name = LLVMDITypeGetName(DType, &Len);
818 value llvm_di_type_get_size_in_bits(LLVMMetadataRef DType) {
819 uint64_t Size = LLVMDITypeGetSizeInBits(DType);
823 value llvm_di_type_get_offset_in_bits(LLVMMetadataRef DType) {
824 uint64_t Size = LLVMDITypeGetOffsetInBits(DType);
828 value llvm_di_type_get_align_in_bits(LLVMMetadataRef DType) {
829 uint32_t Size = LLVMDITypeGetAlignInBits(DType);
833 value llvm_di_type_get_line(LLVMMetadataRef DType) {
834 unsigned Line = LLVMDITypeGetLine(DType);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm-c/
DebugInfo.h 1016 * \param DType The DIType.
1021 const char *LLVMDITypeGetName(LLVMMetadataRef DType, size_t *Length);
1025 * \param DType The DIType.
1029 uint64_t LLVMDITypeGetSizeInBits(LLVMMetadataRef DType);
1033 * \param DType The DIType.
1037 uint64_t LLVMDITypeGetOffsetInBits(LLVMMetadataRef DType);
1041 * \param DType The DIType.
1045 uint32_t LLVMDITypeGetAlignInBits(LLVMMetadataRef DType);
1049 * \param DType The DIType.
1053 unsigned LLVMDITypeGetLine(LLVMMetadataRef DType);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 458 StringRef DType;
459 if (DToken.endswith(DType="-error"))
461 else if (DToken.endswith(DType="-warning"))
463 else if (DToken.endswith(DType="-remark"))
465 else if (DToken.endswith(DType="-note"))
467 else if (DToken.endswith(DType="-no-diagnostics")) {
474 DToken = DToken.substr(0, DToken.size()-DType.size());
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DebugInfo.cpp 1351 const char *LLVMDITypeGetName(LLVMMetadataRef DType, size_t *Length) {
1352 StringRef Str = unwrap<DIType>(DType)->getName();
1357 uint64_t LLVMDITypeGetSizeInBits(LLVMMetadataRef DType) {
1358 return unwrapDI<DIType>(DType)->getSizeInBits();
1361 uint64_t LLVMDITypeGetOffsetInBits(LLVMMetadataRef DType) {
1362 return unwrapDI<DIType>(DType)->getOffsetInBits();
1365 uint32_t LLVMDITypeGetAlignInBits(LLVMMetadataRef DType) {
1366 return unwrapDI<DIType>(DType)->getAlignInBits();
1369 unsigned LLVMDITypeGetLine(LLVMMetadataRef DType) {
1370 return unwrapDI<DIType>(DType)->getLine()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ExpandPseudoInsts.cpp 400 uint64_t DType = TII->get(Opcode).TSFlags & AArch64::DestructiveInstTypeMask;
407 if (DType == AArch64::DestructiveBinary)
412 switch (DType) {
447 switch (DType) {
537 switch (DType) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BTFDebug.cpp 1355 for (auto &DType : Fixup.second.second) {
1356 DType->setPointeeType(StructTypeId);
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGParser.cpp 1013 DagRecTy *DType = dyn_cast<DagRecTy>(LHSt->getType());
1014 if (!LType && !SType && !DType) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp 16824 // BI__hmma_m16n16k16_mma_<Dtype><CType>(d, a, b, c, layout, satf) -->
16825 // Intrinsic::nvvm_wmma_m16n16k16_mma_sync<layout A,B><DType><CType><Satf>
16906 llvm::Type *DType = Dst.getElementType();
16909 Builder.CreateBitCast(Builder.CreateExtractValue(Result, i), DType),

Completed in 66 milliseconds