HomeSort by relevance Sort by last modified time
    Searched refs:isCommon (Results 1 - 16 of 16) sorted by null

  /frameworks/compile/mclinker/include/mcld/LD/
StaticResolver.h 122 if (pInfo.isCommon() && pInfo.isDyn())
124 if (pInfo.isCommon() && pInfo.isDefine())
126 if (pInfo.isCommon() && pInfo.isWeak())
ResolveInfo.h 159 bool isCommon() const;
  /external/llvm/include/llvm/MC/
SectionKind.h 173 return isBSS() || isCommon() || isDataRel() || isReadOnlyWithRel();
180 bool isCommon() const { return K == Common; }
MCAssembler.h 601 /// isCommon - Is this a 'common' symbol.
602 bool isCommon() const { return CommonSize != 0; }
615 assert(isCommon() && "Not a 'common' symbol!");
630 assert(isCommon() && "Not a 'common' symbol!");
  /external/llvm/lib/Target/Hexagon/
HexagonTargetObjectFile.cpp 74 if (Kind.isBSS() || Kind.isDataNoRel() || Kind.isCommon()) {
  /frameworks/compile/mclinker/unittests/
StaticResolverTest.cpp 301 ASSERT_FALSE( sym->isCommon() );
317 ASSERT_FALSE( sym->isCommon() );
333 ASSERT_FALSE( sym->isCommon() );
349 ASSERT_TRUE( sym->isCommon() );
364 ASSERT_FALSE( sym->isCommon() );
379 ASSERT_FALSE( sym->isCommon() );
401 ASSERT_FALSE( sym->isCommon() );
416 ASSERT_FALSE( sym->isCommon() );
431 ASSERT_FALSE( sym->isCommon() );
446 ASSERT_FALSE( sym->isCommon() );
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 146 bool ResolveInfo::isCommon() const
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 102 bool isCommon = flags & SymbolRef::SF_Common;
103 if (isCommon) {
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 221 !Kind.isCommon()) {
287 if (Kind.isBSS() || Kind.isCommon()) return BSSSection;
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 470 if (Data.isCommon() && Data.isExternal())
543 bool IsReserved = Data.isCommon() || Data.getSymbol().isAbsolute() ||
556 assert(!(Data.isCommon() && !Data.isExternal()));
906 if (it->isCommon()) {
    [all...]
MCAssembler.cpp 952 if (isCommon())
    [all...]
MachObjectWriter.cpp 323 } else if (Data.isCommon()) {
  /external/llvm/include/llvm/Object/
ObjectFile.h 228 error_code isCommon(bool &Result) const;
  /frameworks/compile/mclinker/lib/MC/
MCLinker.cpp 474 (pInfo.isDefine() || pInfo.isCommon()))
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 299 if (GVKind.isCommon() || GVKind.isBSSLocal()) {
304 if (GVKind.isCommon()) {
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp     [all...]

Completed in 382 milliseconds