Home
last modified time | relevance | path

Searched refs:DefinedGlobal (Results 1 – 15 of 15) sorted by relevance

/external/llvm/lib/Object/
DRecordStreamer.cpp17 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()
DRecordStreamer.h18 enum State { NeverSeen, Global, GlobalWeak, Defined, DefinedGlobal, Used }; enumerator
DIRObjectFile.cpp106 case RecordStreamer::DefinedGlobal: in CollectAsmUndefinedRefs()
/external/llvm-project/llvm/lib/Object/
DRecordStreamer.cpp20 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()
DRecordStreamer.h26 enum State { NeverSeen, Global, Defined, DefinedGlobal, DefinedWeak, Used, enumerator
DModuleSymbolTable.cpp145 case RecordStreamer::DefinedGlobal: in CollectAsmSymbols()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DRecordStreamer.cpp20 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()
DRecordStreamer.h27 enum State { NeverSeen, Global, Defined, DefinedGlobal, DefinedWeak, Used, enumerator
DModuleSymbolTable.cpp139 case RecordStreamer::DefinedGlobal: in CollectAsmSymbols()
/external/llvm-project/lld/wasm/
DSymbols.cpp127 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
DSymbolTable.h82 DefinedGlobal *addSyntheticGlobal(StringRef name, uint32_t flags,
87 DefinedGlobal *addOptionalGlobalSymbols(StringRef name, uint32_t flags,
DSymbols.h333 class DefinedGlobal : public GlobalSymbol {
335 DefinedGlobal(StringRef name, uint32_t flags, InputFile *file,
516 alignas(DefinedGlobal) char c[sizeof(DefinedGlobal)];
DSymbolTable.cpp234 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()
DWriter.cpp207 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()
DInputFiles.cpp484 return make<DefinedGlobal>(name, flags, this, global); in createDefined()