Home
last modified time | relevance | path

Searched refs:HT (Results 1 – 18 of 18) sorted by relevance

/llvm-project-15.0.7/openmp/libomptarget/src/
H A Ddevice.cpp163 LR.Flags.IsContained = HP < HT.HstPtrEnd || HP < HT.HstPtrBase; in lookupMapping()
179 LR.Flags.IsContained = HP >= HT.HstPtrBegin && HP < HT.HstPtrEnd && in lookupMapping()
182 LR.Flags.ExtendsAfter = HP < HT.HstPtrEnd && (HP + Size) > HT.HstPtrEnd; in lookupMapping()
192 HP < HT.HstPtrBegin && (HP + Size) > HT.HstPtrBegin; in lookupMapping()
194 LR.Flags.ExtendsAfter = HP < HT.HstPtrEnd && (HP + Size) > HT.HstPtrEnd; in lookupMapping()
245 uintptr_t Ptr = HT.TgtPtrBegin + ((uintptr_t)HstPtrBegin - HT.HstPtrBegin); in getTargetPointer()
433 uintptr_t TP = HT.TgtPtrBegin + (HP - HT.HstPtrBegin); in getTgtPtrBegin()
451 auto &HT = *LR.Entry; in deallocTgtPtr() local
463 DPxPTR(HT.HstPtrBegin), DPxPTR(HT.TgtPtrBegin), Size, in deallocTgtPtr()
536 (HT && HT->HstPtrName) ? getNameFromMapping(HT->HstPtrName).c_str() in submitData()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DScopedHashTable.h87 ScopedHashTable<K, V, KInfo, AllocatorTy> &HT; variable
97 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, AllocatorTy> &HT);
228 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, Allocator> &ht) : HT(ht) { in ScopedHashTableScope()
229 PrevScope = HT.CurScope; in ScopedHashTableScope()
230 HT.CurScope = this; in ScopedHashTableScope()
236 assert(HT.CurScope == this && "Scope imbalance!"); in ~ScopedHashTableScope()
237 HT.CurScope = PrevScope; in ~ScopedHashTableScope()
243 assert(HT.TopLevelMap[ThisEntry->getKey()] == ThisEntry && in ~ScopedHashTableScope()
245 HT.TopLevelMap.erase(ThisEntry->getKey()); in ~ScopedHashTableScope()
247 ScopedHashTableVal<K, V> *&KeyEntry = HT.TopLevelMap[ThisEntry->getKey()]; in ~ScopedHashTableScope()
[all …]
/llvm-project-15.0.7/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h153 auto &HT = ODT->Table; in condense() local
154 Info &InfoObj = HT.getInfoObj(); in condense()
156 for (auto I = HT.data_begin(), E = HT.data_end(); I != E; ++I) { in condense()
249 auto &HT = ODT->Table; in find() local
250 auto It = HT.find_hashed(Key, KeyHash); in find()
251 if (It != HT.end()) in find()
252 HT.getInfoObj().ReadDataInto(Key, It.getDataPtr(), It.getDataLen(), in find()
274 auto &HT = ODT->Table; in findAll() local
275 Info &InfoObj = HT.getInfoObj(); in findAll()
276 for (auto I = HT.data_begin(), E = HT.data_end(); I != E; ++I) { in findAll()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp211 ScheduleHazardRecognizer::HazardType HT = in listScheduleTopDown() local
213 if (HT == ScheduleHazardRecognizer::NoHazard) { in listScheduleTopDown()
219 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard; in listScheduleTopDown()
H A DScheduleDAGRRList.cpp680 ScheduleHazardRecognizer::HazardType HT = in AdvancePastStalls() local
683 if (HT == ScheduleHazardRecognizer::NoHazard) in AdvancePastStalls()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp150 WinEHHandlerType HT; in addTryBlockMapEntry() local
153 HT.TypeDescriptor = nullptr; in addTryBlockMapEntry()
155 HT.TypeDescriptor = cast<GlobalVariable>(TypeInfo->stripPointerCasts()); in addTryBlockMapEntry()
156 HT.Adjectives = cast<ConstantInt>(CPI->getArgOperand(1))->getZExtValue(); in addTryBlockMapEntry()
157 HT.Handler = CPI->getParent(); in addTryBlockMapEntry()
160 HT.CatchObj.Alloca = AI; in addTryBlockMapEntry()
162 HT.CatchObj.Alloca = nullptr; in addTryBlockMapEntry()
163 TBME.HandlerArray.push_back(HT); in addTryBlockMapEntry()
H A DPostRASchedulerList.cpp571 ScheduleHazardRecognizer::HazardType HT = in ListScheduleTopDown() local
573 if (HT == ScheduleHazardRecognizer::NoHazard) { in ListScheduleTopDown()
590 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard; in ListScheduleTopDown()
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dhost.h207 template <typename... HT> constexpr inline bool FortranTypeExists() {
208 return (... && (!std::is_same_v<FortranType<HT>, UnknownType>));
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp857 for (const WinEHHandlerType &HT : TBME.HandlerArray) { in emitCXXFrameHandler3Table() local
862 if (HT.CatchObj.FrameIndex != INT_MAX) { in emitCXXFrameHandler3Table()
863 int Offset = getFrameIndexOffset(HT.CatchObj.FrameIndex, FuncInfo); in emitCXXFrameHandler3Table()
871 getMCSymbolForMBB(Asm, HT.Handler.dyn_cast<MachineBasicBlock *>()); in emitCXXFrameHandler3Table()
874 OS.emitInt32(HT.Adjectives); in emitCXXFrameHandler3Table()
877 OS.emitValue(create32bitRef(HT.TypeDescriptor), 4); in emitCXXFrameHandler3Table()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DSemanticHighlighting.cpp356 HighlightingToken HT; in addToken() local
357 HT.R = std::move(R); in addToken()
358 HT.Kind = Kind; in addToken()
359 Tokens.push_back(std::move(HT)); in addToken()
430 HighlightingToken HT; in collect() local
H A DClangdLSPServer.cpp1487 llvm::Expected<std::vector<HighlightingToken>> HT) mutable { in onSemanticTokens() argument
1488 if (!HT) in onSemanticTokens()
1489 return CB(HT.takeError()); in onSemanticTokens()
1491 Result.tokens = toSemanticTokens(*HT, *Code); in onSemanticTokens()
1512 llvm::Expected<std::vector<HighlightingToken>> HT) mutable { in onSemanticTokensDelta() argument
1513 if (!HT) in onSemanticTokensDelta()
1514 return CB(HT.takeError()); in onSemanticTokensDelta()
1515 std::vector<SemanticToken> Toks = toSemanticTokens(*HT, *Code); in onSemanticTokensDelta()
/llvm-project-15.0.7/bolt/lib/Passes/
H A DIndirectCallPromotion.cpp485 for (std::pair<MCSymbol *const, std::pair<uint64_t, uint64_t>> &HT : in maybeGetHotJumpTableTargets()
487 dbgs() << "BOLT-INFO: " << HT.first->getName() in maybeGetHotJumpTableTargets()
488 << " = (count=" << HT.second.first in maybeGetHotJumpTableTargets()
489 << ", index=" << HT.second.second << ")\n"; in maybeGetHotJumpTableTargets()
/llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A Dscreen.py41 HT = 9 # Move cursor to next tab stop. variable
/llvm-project-15.0.7/openmp/runtime/src/i18n/
H A Den_US.txt92 OBSOLETE "HT enabled"
93 OBSOLETE "HT disabled"
343 OBSOLETE "%1$s: HT enabled; %2$d packages; %3$d TPU; %4$d TPUs per package"
344 OBSOLETE "%1$s: HT disabled; %2$d packages"
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h105 inline const char *getHotnessName(CalleeInfo::HotnessType HT) { in getHotnessName() argument
106 switch (HT) { in getHotnessName()
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMScheduleR52.td496 "STR(BT|HT|T)", "t2STR_(PRE|POST)", "t2STR[BH]_(PRE|POST)",
H A DARMScheduleSwift.td497 "STR(BT|HT|T)", "t2STR_(PRE|POST)", "t2STR[BH]_(PRE|POST)",
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td5147 #define CHECKER(FULLNAME, CLASS, HT, DOC_URI, IS_HIDDEN) FULLNAME ","