Home
last modified time | relevance | path

Searched refs:CurInfo (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingPlatformAIX.c49 struct ld_xinfo *CurInfo = (struct ld_xinfo *)BufPtr; in FindBinaryId() local
51 unsigned long CurTextStart = (uint64_t)CurInfo->ldinfo_textorg; in FindBinaryId()
52 unsigned long CurTextEnd = CurTextStart + CurInfo->ldinfo_textsize; in FindBinaryId()
55 char *p = (char *)CurInfo->ldinfo_textorg; in FindBinaryId()
79 if (CurInfo->ldinfo_next == 0u) in FindBinaryId()
81 CurInfo = (struct ld_xinfo *)((char *)CurInfo + CurInfo->ldinfo_next); in FindBinaryId()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInsertVSETVLI.cpp884 const VSETVLIInfo &CurInfo) const;
1157 const VSETVLIInfo &CurInfo) const { in needVSETVLI()
1158 if (!CurInfo.isValid() || CurInfo.isUnknown() || CurInfo.hasSEWLMULRatioOnly()) in needVSETVLI()
1161 if (CurInfo.isCompatible(Used, Require, LIS)) in needVSETVLI()
1403 VSETVLIInfo CurInfo = BlockInfo[MBB.getNumber()].Pred; in emitVSETVLIs() local
1408 const VSETVLIInfo PrevInfo = CurInfo; in emitVSETVLIs()
1409 transferBefore(CurInfo, MI); in emitVSETVLIs()
1424 if (!PrevInfo.isCompatible(DemandedFields::all(), CurInfo, LIS)) { in emitVSETVLIs()
1425 insertVSETVLI(MBB, MI, MI.getDebugLoc(), CurInfo, PrevInfo); in emitVSETVLIs()
1434 if (!PrevInfo.isCompatible(DemandedFields::all(), CurInfo, LIS)) { in emitVSETVLIs()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h2442 void append(MapInfosTy &CurInfo) { in append()
2443 BasePointers.append(CurInfo.BasePointers.begin(), in append()
2444 CurInfo.BasePointers.end()); in append()
2445 Pointers.append(CurInfo.Pointers.begin(), CurInfo.Pointers.end()); in append()
2446 DevicePointers.append(CurInfo.DevicePointers.begin(), in append()
2447 CurInfo.DevicePointers.end()); in append()
2448 Sizes.append(CurInfo.Sizes.begin(), CurInfo.Sizes.end()); in append()
2449 Types.append(CurInfo.Types.begin(), CurInfo.Types.end()); in append()
2450 Names.append(CurInfo.Names.begin(), CurInfo.Names.end()); in append()
2451 NonContigInfo.Dims.append(CurInfo.NonContigInfo.Dims.begin(), in append()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGPointerAuth.cpp716 CGPointerAuthInfo CurInfo = getPointerAuthInfo(); in getResignedAddress() local
720 if (!CurInfo.isSigned() && !NewInfo.isSigned()) in getResignedAddress()
729 if (CurInfo == NewInfo && !hasOffset()) in getResignedAddress()
732 Val = CGF.emitPointerAuthResign(getBasePointer(), QualType(), CurInfo, in getResignedAddress()
H A DCGOpenMPRuntime.cpp6819 void append(MapCombinedInfoTy &CurInfo) { in append()
6820 Exprs.append(CurInfo.Exprs.begin(), CurInfo.Exprs.end()); in append()
6821 DevicePtrDecls.append(CurInfo.DevicePtrDecls.begin(), in append()
6822 CurInfo.DevicePtrDecls.end()); in append()
6823 Mappers.append(CurInfo.Mappers.begin(), CurInfo.Mappers.end()); in append()
6824 llvm::OpenMPIRBuilder::MapInfosTy::append(CurInfo); in append()
8300 MapCombinedInfoTy CurInfo; in generateAllInfoForClauses() local
8326 unsigned CurrentBasePointersIdx = CurInfo.BasePointers.size(); in generateAllInfoForClauses()
8329 CurInfo.NonContigInfo.IsNonContiguous = in generateAllInfoForClauses()
8333 CurInfo, StructBaseCurInfo, PartialStruct, in generateAllInfoForClauses()
[all …]
H A DCodeGenFunction.h4593 const CGPointerAuthInfo &CurInfo,