/external/llvm/lib/Object/ |
D | RecordStreamer.cpp | 17 case DefinedGlobal: in markDefined() 19 S = DefinedGlobal; in markDefined() 35 case DefinedGlobal: in markGlobal() 37 S = (Attribute == MCSA_Weak) ? GlobalWeak : DefinedGlobal; in markGlobal() 53 case DefinedGlobal: in markUsed()
|
D | RecordStreamer.h | 18 enum State { NeverSeen, Global, GlobalWeak, Defined, DefinedGlobal, Used }; enumerator
|
D | IRObjectFile.cpp | 106 case RecordStreamer::DefinedGlobal: in CollectAsmUndefinedRefs()
|
/external/llvm-project/llvm/lib/Object/ |
D | RecordStreamer.cpp | 20 case DefinedGlobal: in markDefined() 22 S = DefinedGlobal; in markDefined() 40 case DefinedGlobal: in markGlobal() 42 S = (Attribute == MCSA_Weak) ? DefinedWeak : DefinedGlobal; in markGlobal() 59 case DefinedGlobal: in markUsed() 163 case RecordStreamer::DefinedGlobal: in flushSymverDirectives() 176 case RecordStreamer::DefinedGlobal: in flushSymverDirectives()
|
D | RecordStreamer.h | 26 enum State { NeverSeen, Global, Defined, DefinedGlobal, DefinedWeak, Used, enumerator
|
D | ModuleSymbolTable.cpp | 145 case RecordStreamer::DefinedGlobal: in CollectAsmSymbols()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | RecordStreamer.cpp | 20 case DefinedGlobal: in markDefined() 22 S = DefinedGlobal; in markDefined() 40 case DefinedGlobal: in markGlobal() 42 S = (Attribute == MCSA_Weak) ? DefinedWeak : DefinedGlobal; in markGlobal() 59 case DefinedGlobal: in markUsed() 163 case RecordStreamer::DefinedGlobal: in flushSymverDirectives() 176 case RecordStreamer::DefinedGlobal: in flushSymverDirectives()
|
D | RecordStreamer.h | 27 enum State { NeverSeen, Global, Defined, DefinedGlobal, DefinedWeak, Used, enumerator
|
D | ModuleSymbolTable.cpp | 139 case RecordStreamer::DefinedGlobal: in CollectAsmSymbols()
|
/external/llvm-project/lld/wasm/ |
D | Symbols.cpp | 127 if (auto *g = dyn_cast<DefinedGlobal>(this)) in isLive() 140 if (auto *g = dyn_cast<DefinedGlobal>(this)) in markLive() 290 if (auto *f = dyn_cast<DefinedGlobal>(this)) in getGlobalIndex() 303 if (auto *f = dyn_cast<DefinedGlobal>(this)) in hasGlobalIndex() 308 DefinedGlobal::DefinedGlobal(StringRef name, uint32_t flags, InputFile *file, in DefinedGlobal() function in lld::wasm::DefinedGlobal
|
D | SymbolTable.h | 82 DefinedGlobal *addSyntheticGlobal(StringRef name, uint32_t flags, 87 DefinedGlobal *addOptionalGlobalSymbols(StringRef name, uint32_t flags,
|
D | Symbols.h | 333 class DefinedGlobal : public GlobalSymbol { 335 DefinedGlobal(StringRef name, uint32_t flags, InputFile *file, 516 alignas(DefinedGlobal) char c[sizeof(DefinedGlobal)];
|
D | SymbolTable.cpp | 234 DefinedGlobal *SymbolTable::addSyntheticGlobal(StringRef name, uint32_t flags, in addSyntheticGlobal() 240 return replaceSymbol<DefinedGlobal>(insertName(name).first, name, flags, in addSyntheticGlobal() 244 DefinedGlobal *SymbolTable::addOptionalGlobalSymbols(StringRef name, in addOptionalGlobalSymbols() 253 return replaceSymbol<DefinedGlobal>(s, name, flags, nullptr, global); in addOptionalGlobalSymbols() 374 replaceSymbol<DefinedGlobal>(s, name, flags, file, global); in addDefinedGlobal()
|
D | Writer.cpp | 207 static void setGlobalPtr(DefinedGlobal *g, uint64_t memoryPtr) { in setGlobalPtr() 242 auto *sp = cast<DefinedGlobal>(WasmSym::stackPointer); in layoutMemory() 283 auto *tlsSize = cast<DefinedGlobal>(WasmSym::tlsSize); in layoutMemory() 286 auto *tlsAlign = cast<DefinedGlobal>(WasmSym::tlsAlign); in layoutMemory() 289 auto *tlsBase = cast<DefinedGlobal>(WasmSym::tlsBase); in layoutMemory() 617 } else if (auto *g = dyn_cast<DefinedGlobal>(sym)) { in calculateExports()
|
D | InputFiles.cpp | 484 return make<DefinedGlobal>(name, flags, this, global); in createDefined()
|