Home
last modified time | relevance | path

Searched refs:LookupTable (Results 1 – 13 of 13) sorted by relevance

/llvm-project/llvm/lib/Transforms/Utils/
H A DRelLookupTableConverter.cpp94 GlobalVariable &LookupTable) { in createRelLookupTable() argument
97 cast<ConstantArray>(LookupTable.getInitializer()); in createRelLookupTable()
103 M, IntArrayTy, LookupTable.isConstant(), LookupTable.getLinkage(), in createRelLookupTable()
104 nullptr, LookupTable.getName() + ".rel", &LookupTable, in createRelLookupTable()
105 LookupTable.getThreadLocalMode(), LookupTable.getAddressSpace(), in createRelLookupTable()
106 LookupTable.isExternallyInitialized()); in createRelLookupTable()
130 static void convertToRelLookupTable(GlobalVariable &LookupTable) { in convertToRelLookupTable() argument
[all...]
/llvm-project/clang/include/clang/AST/
H A DASTImporterSharedState.h32 std::unique_ptr<ASTImporterLookupTable> LookupTable; variable
52 LookupTable = std::make_unique<ASTImporterLookupTable>(ToTU); in ASTImporterSharedState()
55 ASTImporterLookupTable *getLookupTable() { return LookupTable.get(); } in getLookupTable()
58 if (LookupTable) in addDeclToLookup()
60 LookupTable->add(ND); in addDeclToLookup()
64 if (LookupTable) in removeDeclFromLookup()
66 LookupTable->remove(ND); in removeDeclFromLookup()
H A DASTImporterLookupTable.h59 DCMap LookupTable; variable
/llvm-project/clang/lib/AST/
H A DASTImporterLookupTable.cpp105 DeclList &Decls = LookupTable[DC][ND->getDeclName()]; in add()
112 DeclList &Decls = LookupTable[DC][Name]; in remove()
159 LookupTable[OldDC][ND->getDeclName()].remove(ND); in updateForced()
165 auto DCI = LookupTable.find(DC); in lookup()
166 if (DCI == LookupTable.end()) in lookup()
182 auto DCI = LookupTable.find(DC); in dump()
183 if (DCI == LookupTable.end()) in dump()
198 for (const auto &Entry : LookupTable) { in dump()
/llvm-project/clang-tools-extra/clang-include-fixer/
H A DInMemorySymbolIndex.cpp19 LookupTable[std::string(Symbol.Symbol.getName())].push_back(Symbol); in InMemorySymbolIndex()
24 auto I = LookupTable.find(Identifier); in search()
25 if (I != LookupTable.end()) in search()
H A DInMemorySymbolIndex.h32 LookupTable;
/llvm-project/clang-tools-extra/clangd/index/dex/
H A DDex.cpp130 LookupTable[Sym->ID] = Sym; in buildIndex()
310 auto I = LookupTable.find(ID); in refs()
311 if (I != LookupTable.end()) in refs()
393 Bytes += LookupTable.getMemorySize(); in generateProximityURIs()
H A DDex.h131 llvm::DenseMap<SymbolID, const Symbol *> LookupTable;
109 llvm::DenseMap<SymbolID, const Symbol *> LookupTable; global() variable
/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerModuleLDSPass.cpp375 GlobalVariable *LookupTable, in replaceUseWithTableLookup()
400 LookupTable->getValueType(), LookupTable, GEPIdx, GV->getName()); in replaceUseWithTableLookup()
412 GlobalVariable *LookupTable) { in replaceUsesInInstructionsWithTableLookup()
426 replaceUseWithTableLookup(M, Builder, LookupTable, GV, U, in replaceUsesInInstructionsWithTableLookup()
1130 GlobalVariable *LookupTable = buildLookupTable( in superAlignLDSGlobals()
1133 LookupTable); in superAlignLDSGlobals()
376 replaceUseWithTableLookup(Module & M,IRBuilder<> & Builder,GlobalVariable * LookupTable,GlobalVariable * GV,Use & U,Value * OptionalIndex) replaceUseWithTableLookup() argument
413 replaceUsesInInstructionsWithTableLookup(Module & M,ArrayRef<GlobalVariable * > ModuleScopeVariables,GlobalVariable * LookupTable) replaceUsesInInstructionsWithTableLookup() argument
1010 GlobalVariable *LookupTable = buildLookupTable( runOnModule() local
/llvm-project/clang/include/clang/Serialization/
H A DASTWriter.h593 llvm::SmallVectorImpl<char> &LookupTable, bool IsPartial);
599 llvm::SmallVectorImpl<char> &LookupTable,
/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp4431 llvm::SmallVectorImpl<char> &LookupTable, bool IsPartial) { in WriteDeclContextVisibleBlock()
4476 Generator.emit(LookupTable, Trait, Lookups ? &Lookups->Table : nullptr); in WriteOpenCLExtensions()
4483 llvm::SmallString<4096> LookupTable; in WriteOpenCLExtensions()
4484 GenerateSpecializationInfoLookupTable(D, Specializations, LookupTable, in WriteOpenCLExtensions()
4492 Record, LookupTable); in WriteCUDAPragmas()
4531 llvm::SmallVectorImpl<char> &LookupTable, in WriteObjCCategories()
4716 Generator.emit(LookupTable, Trait, Lookups ? &Lookups->Table : nullptr); in AddToken()
4858 SmallString<4096> LookupTable;
4861 GenerateNameLookupTable(Context, DC, LookupTable, ModuleLocalLookupTable, in WriteAST()
4867 LookupTable); in WriteAST()
4153 GenerateNameLookupTable(const DeclContext * ConstDC,llvm::SmallVectorImpl<char> & LookupTable) GenerateNameLookupTable() argument
4428 SmallString<4096> LookupTable; WriteDeclContextVisibleBlock() local
4451 SmallString<4096> LookupTable; WriteDeclContextVisibleUpdate() local
[all...]
/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp74 LookupTable enumerator
3036 return Kind == RegKind::LookupTable ? unsigned(AArch64::ZT0) : 0; in tryParseSysCROperand()
3076 case RegKind::LookupTable: in tryParseRPRFMOperand()
4761 unsigned RegNum = matchRegisterNameAlias(Name, RegKind::LookupTable); in parseOptionalVGOperand()
4767 RegNum, RegKind::LookupTable, StartLoc, getLoc(), getContext())); in parseKeywordOperand()
/llvm-project/clang/docs/
H A DInternalsManual.rst1877 struct LookupTable {
1885 LookupTable LT;