Home
last modified time | relevance | path

Searched refs:GIS (Results 1 – 17 of 17) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DSplitModule.cpp130 if (auto *GIS = dyn_cast<GlobalIndirectSymbol>(&GV)) { in findPartitions() local
131 if (const GlobalObject *Base = GIS->getBaseObject()) in findPartitions()
232 if (auto *GIS = dyn_cast<GlobalIndirectSymbol>(GV)) in isInPartition() local
233 if (const GlobalObject *Base = GIS->getBaseObject()) in isInPartition()
/external/llvm/lib/Transforms/Utils/
DSplitModule.cpp110 if (auto *GIS = dyn_cast<GlobalIndirectSymbol>(&GV)) { in findPartitions() local
111 if (const GlobalObject *Base = GIS->getBaseObject()) in findPartitions()
208 if (auto *GIS = dyn_cast<GlobalIndirectSymbol>(GV)) in isInPartition() local
209 if (const GlobalObject *Base = GIS->getBaseObject()) in isInPartition()
/external/llvm/lib/Transforms/IPO/
DGlobalDCE.cpp232 } else if (GlobalIndirectSymbol *GIS = dyn_cast<GlobalIndirectSymbol>(G)) { in GlobalIsNeeded() local
234 MarkUsedGlobalsAsNeeded(GIS->getIndirectSymbol()); in GlobalIsNeeded()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1064 const GlobalIndirectSymbol& GIS) { in emitGlobalIndirectSymbol() argument
1065 MCSymbol *Name = getSymbol(&GIS); in emitGlobalIndirectSymbol()
1067 if (GIS.hasExternalLinkage() || !MAI->getWeakRefDirective()) in emitGlobalIndirectSymbol()
1069 else if (GIS.hasWeakLinkage() || GIS.hasLinkOnceLinkage()) in emitGlobalIndirectSymbol()
1072 assert(GIS.hasLocalLinkage() && "Invalid alias or ifunc linkage"); in emitGlobalIndirectSymbol()
1076 if (GIS.getType()->getPointerElementType()->isFunctionTy()) { in emitGlobalIndirectSymbol()
1078 if (isa<GlobalIFunc>(GIS)) in emitGlobalIndirectSymbol()
1082 EmitVisibility(Name, GIS.getVisibility()); in emitGlobalIndirectSymbol()
1084 const MCExpr *Expr = lowerConstant(GIS.getIndirectSymbol()); in emitGlobalIndirectSymbol()
1086 if (isa<GlobalAlias>(&GIS) && MAI->hasAltEntry() && isa<MCBinaryExpr>(Expr)) in emitGlobalIndirectSymbol()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1300 const GlobalIndirectSymbol& GIS) { in emitGlobalIndirectSymbol() argument
1301 MCSymbol *Name = getSymbol(&GIS); in emitGlobalIndirectSymbol()
1303 if (GIS.hasExternalLinkage() || !MAI->getWeakRefDirective()) in emitGlobalIndirectSymbol()
1305 else if (GIS.hasWeakLinkage() || GIS.hasLinkOnceLinkage()) in emitGlobalIndirectSymbol()
1308 assert(GIS.hasLocalLinkage() && "Invalid alias or ifunc linkage"); in emitGlobalIndirectSymbol()
1312 if (GIS.getType()->getPointerElementType()->isFunctionTy()) { in emitGlobalIndirectSymbol()
1314 if (isa<GlobalIFunc>(GIS)) in emitGlobalIndirectSymbol()
1318 EmitVisibility(Name, GIS.getVisibility()); in emitGlobalIndirectSymbol()
1320 const MCExpr *Expr = lowerConstant(GIS.getIndirectSymbol()); in emitGlobalIndirectSymbol()
1322 if (isa<GlobalAlias>(&GIS) && MAI->hasAltEntry() && isa<MCBinaryExpr>(Expr)) in emitGlobalIndirectSymbol()
[all …]
/external/llvm/lib/IR/
DAsmWriter.cpp2094 void printIndirectSymbol(const GlobalIndirectSymbol *GIS);
2502 void AssemblyWriter::printIndirectSymbol(const GlobalIndirectSymbol *GIS) { in printIndirectSymbol() argument
2503 if (GIS->isMaterializable()) in printIndirectSymbol()
2506 WriteAsOperandInternal(Out, GIS, &TypePrinter, &Machine, GIS->getParent()); in printIndirectSymbol()
2509 Out << getLinkagePrintName(GIS->getLinkage()); in printIndirectSymbol()
2510 PrintVisibility(GIS->getVisibility(), Out); in printIndirectSymbol()
2511 PrintDLLStorageClass(GIS->getDLLStorageClass(), Out); in printIndirectSymbol()
2512 PrintThreadLocalModel(GIS->getThreadLocalMode(), Out); in printIndirectSymbol()
2513 StringRef UA = getUnnamedAddrEncoding(GIS->getUnnamedAddr()); in printIndirectSymbol()
2517 if (isa<GlobalAlias>(GIS)) in printIndirectSymbol()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DAsmWriter.cpp2333 void printIndirectSymbol(const GlobalIndirectSymbol *GIS);
3195 void AssemblyWriter::printIndirectSymbol(const GlobalIndirectSymbol *GIS) { in printIndirectSymbol() argument
3196 if (GIS->isMaterializable()) in printIndirectSymbol()
3199 WriteAsOperandInternal(Out, GIS, &TypePrinter, &Machine, GIS->getParent()); in printIndirectSymbol()
3202 Out << getLinkageNameWithSpace(GIS->getLinkage()); in printIndirectSymbol()
3203 PrintDSOLocation(*GIS, Out); in printIndirectSymbol()
3204 PrintVisibility(GIS->getVisibility(), Out); in printIndirectSymbol()
3205 PrintDLLStorageClass(GIS->getDLLStorageClass(), Out); in printIndirectSymbol()
3206 PrintThreadLocalModel(GIS->getThreadLocalMode(), Out); in printIndirectSymbol()
3207 StringRef UA = getUnnamedAddrEncoding(GIS->getUnnamedAddr()); in printIndirectSymbol()
[all …]
/external/llvm/include/llvm/CodeGen/
DAsmPrinter.h554 const GlobalIndirectSymbol& GIS);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DAsmPrinter.h655 void emitGlobalIndirectSymbol(Module &M, const GlobalIndirectSymbol &GIS);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2071 GlobalIndirectSymbol *GIS = IndirectSymbolInitWorklist.back().first; in resolveGlobalAndIndirectSymbolInits() local
2072 if (isa<GlobalAlias>(GIS) && C->getType() != GIS->getType()) in resolveGlobalAndIndirectSymbolInits()
2074 GIS->setIndirectSymbol(C); in resolveGlobalAndIndirectSymbolInits()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2808 GlobalIndirectSymbol *GIS = IndirectSymbolInitWorklist.back().first; in resolveGlobalAndIndirectSymbolInits() local
2809 if (isa<GlobalAlias>(GIS) && C->getType() != GIS->getType()) in resolveGlobalAndIndirectSymbolInits()
2811 GIS->setIndirectSymbol(C); in resolveGlobalAndIndirectSymbolInits()
/external/clang/lib/CodeGen/
DCodeGenModule.cpp260 const llvm::GlobalIndirectSymbol &GIS) { in getAliasedGlobal() argument
262 const llvm::Constant *C = &GIS; in getAliasedGlobal()
/external/cldr/tools/java/org/unicode/cldr/util/data/external/
DsubdivisionData.txt3406 NZ-GIS Gisborne
D2013-1_UNLOCODE_CodeListPart2.csv2030 ,"GB","GIS","Garlieston","Garlieston","DGY","1-------","AF","0207",,"5447N 00422W",
12441 ,"IT","GIS","Gais","Gais","BZ","-----6--","RQ","1007",,"4650N 01157E",
21020 ,"NL","GIS","Giessen","Giessen",,"--3-----","AF","9602",,,
22413 ,"NO","GIS","Giske","Giske","15","1-------","AI","9704",,,
23237 ,"NZ","GIS","Gisborne","Gisborne","GIS","1-34----","AC","1207",,"3840S 17802E",""
D2013-1_UNLOCODE_CodeListPart1.csv4420 ,"BE","GIS","Gistel","Gistel","VWV","--3-----","RN","0212",,"5110N 00257E",
6775 ,"BR","GIS","Goias","Goias","GO","--3-----","RQ","0607",,,
19789 ,"DE","GIS","Geismar","Geismar","TH","-23-----","RL","0701",,"5114N 01010E",
25526 ,"DK","GIS","Gislinge","Gislinge",,"-23-----","RL","0701",,"5544N 01132E",""
29017 "+","ES","GIS","Gaianes","Gaianes","A","--3-----","RL","1301",,"3848N 00024W",
36062 ,"FR","GIS","Givors","Givors","69","-2------","AF","9506",,,
D2013-1_UNLOCODE_CodeListPart3.csv5949 ,"SE","GIS","Gislaved","Gislaved","F","--3-----","RL","9501",,,
15669 ,"US","GIS","Gibsonburg","Gibsonburg","OH","-2---6--","RL","0507",,"4123N 08319W",
/external/icu/icu4j/perf-tests/data/collation/
DTestNames_SerbianSH.txt17257 GIS HEDVIGA