/external/llvm-project/lld/ELF/ |
D | Symbols.cpp | 292 if (!isDefined() && !isCommon()) in includeInDynsym() 311 else if (sym->isCommon()) in printTraceSymbol() 572 assert(other->isDefined() || other->isCommon()); in compare() 574 if (!isDefined() && !isCommon()) in compare() 586 if (isCommon() && other->isCommon()) { in compare() 592 if (isCommon()) { in compare() 598 if (other->isCommon()) { in compare() 702 if (isCommon() && elf::config->fortranCommon) { in resolveLazy() 740 if (isCommon()) { in resolveShared()
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCSymbol.h | 332 assert(isCommon() && "Not a 'common' symbol!"); in getCommonSize() 356 assert(isCommon() && "Not a 'common' symbol!"); in getCommonAlignment() 367 assert(isCommon() || getOffset() == 0); 368 if(isCommon()) { 378 bool isCommon() const { in isCommon() function
|
D | SectionKind.h | 156 return isBSS() || isCommon() || isData() || isReadOnlyWithRel(); in isGlobalWriteableData() 163 bool isCommon() const { return K == Common; } in isCommon() function
|
D | MCSymbolMachO.h | 117 if (isCommon()) { in getEncodedFlags()
|
/external/llvm/include/llvm/MC/ |
D | MCSymbol.h | 330 assert(isCommon() && "Not a 'common' symbol!"); in getCommonSize() 353 assert(isCommon() && "Not a 'common' symbol!"); in getCommonAlignment() 363 assert(isCommon() || getOffset() == 0); in declareCommon() 364 if(isCommon()) { in declareCommon() 373 bool isCommon() const { in isCommon() function
|
D | SectionKind.h | 151 return isBSS() || isCommon() || isData() || isReadOnlyWithRel(); in isGlobalWriteableData() 158 bool isCommon() const { return K == Common; } in isCommon() function
|
D | MCSymbolMachO.h | 113 if (isCommon()) { in getEncodedFlags()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCSymbol.h | 332 assert(isCommon() && "Not a 'common' symbol!"); in getCommonSize() 356 assert(isCommon() && "Not a 'common' symbol!"); in getCommonAlignment() 367 assert(isCommon() || getOffset() == 0); 368 if(isCommon()) { 378 bool isCommon() const { in isCommon() function
|
D | SectionKind.h | 156 return isBSS() || isCommon() || isData() || isReadOnlyWithRel(); in isGlobalWriteableData() 163 bool isCommon() const { return K == Common; } in isCommon() function
|
D | MCSymbolMachO.h | 117 if (isCommon()) { in getEncodedFlags()
|
/external/llvm-project/llvm/lib/Target/XCore/ |
D | XCoreTargetObjectFile.cpp | 126 if (Kind.isBSS() || Kind.isCommon())return BSSSection; in SelectSectionForGlobal() 133 if (Kind.isBSS() || Kind.isCommon())return BSSSectionLarge; in SelectSectionForGlobal() 139 assert((Kind.isThreadLocal() || Kind.isCommon()) && "Unknown section kind"); in SelectSectionForGlobal()
|
/external/llvm/lib/Target/XCore/ |
D | XCoreTargetObjectFile.cpp | 131 if (Kind.isBSS() || Kind.isCommon())return BSSSection; in SelectSectionForGlobal() 138 if (Kind.isBSS() || Kind.isCommon())return BSSSectionLarge; in SelectSectionForGlobal() 144 assert((Kind.isThreadLocal() || Kind.isCommon()) && "Unknown section kind"); in SelectSectionForGlobal()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/ |
D | XCoreTargetObjectFile.cpp | 126 if (Kind.isBSS() || Kind.isCommon())return BSSSection; in SelectSectionForGlobal() 133 if (Kind.isBSS() || Kind.isCommon())return BSSSectionLarge; in SelectSectionForGlobal() 139 assert((Kind.isThreadLocal() || Kind.isCommon()) && "Unknown section kind"); in SelectSectionForGlobal()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonTargetObjectFile.cpp | 116 << (Kind.isCommon() ? "kind_common " : "" ) in SelectSectionForGlobal() 123 if (Kind.isCommon()) { in SelectSectionForGlobal() 149 << (Kind.isCommon() ? "kind_common " : "" ) in getExplicitSectionGlobal() 343 if (Kind.isCommon()) { in selectSmallSectionForGlobal()
|
/external/llvm-project/llvm/lib/Target/Hexagon/ |
D | HexagonTargetObjectFile.cpp | 138 << (Kind.isCommon() ? "kind_common " : "" ) in SelectSectionForGlobal() 152 if (Kind.isCommon()) { in SelectSectionForGlobal() 175 << (Kind.isCommon() ? "kind_common " : "" ) in getExplicitSectionGlobal() 377 if (Kind.isCommon()) { in selectSmallSectionForGlobal()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonTargetObjectFile.cpp | 138 << (Kind.isCommon() ? "kind_common " : "" ) in SelectSectionForGlobal() 152 if (Kind.isCommon()) { in SelectSectionForGlobal() 175 << (Kind.isCommon() ? "kind_common " : "" ) in getExplicitSectionGlobal() 375 if (Kind.isCommon()) { in selectSmallSectionForGlobal()
|
/external/llvm-project/llvm/include/llvm/Object/ |
D | IRSymtab.h | 196 bool isCommon() const { return (Flags >> S::FB_common) & 1; } in isCommon() function 211 assert(isCommon()); in getCommonSize() 216 assert(isCommon()); in getCommonAlignment()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | IRSymtab.h | 195 bool isCommon() const { return (Flags >> S::FB_common) & 1; } in isCommon() function 210 assert(isCommon()); in getCommonSize() 215 assert(isCommon()); in getCommonAlignment()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCSectionXCOFF.cpp | 55 if (getKind().isBSSLocal() || getKind().isCommon()) { in PrintSwitchToSection()
|
/external/llvm-project/llvm/lib/MC/ |
D | MCSectionXCOFF.cpp | 60 if (getKind().isBSSLocal() || getKind().isCommon()) { in PrintSwitchToSection()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
D | JITSymbol.h | 132 bool isCommon() const { in isCommon() function 138 return !isWeak() && !isCommon(); in isStrong()
|
/external/llvm-project/llvm/include/llvm/ExecutionEngine/ |
D | JITSymbol.h | 134 bool isCommon() const { in isCommon() function 140 return !isWeak() && !isCommon(); in isStrong()
|
/external/llvm/lib/Target/Lanai/ |
D | LanaiTargetObjectFile.cpp | 68 (Kind.isData() || Kind.isBSS() || Kind.isCommon())); in isGlobalInSmallSection()
|
/external/llvm/lib/Target/Mips/ |
D | MipsTargetObjectFile.cpp | 81 (Kind.isData() || Kind.isBSS() || Kind.isCommon())); in IsGlobalInSmallSection()
|
/external/llvm-project/llvm/lib/Target/Mips/ |
D | MipsTargetObjectFile.cpp | 86 (Kind.isData() || Kind.isBSS() || Kind.isCommon() || in IsGlobalInSmallSection()
|