Home
last modified time | relevance | path

Searched refs:GlobalType (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCSymbolWasm.h25 Optional<wasm::WasmGlobalType> GlobalType; variable
79 assert(GlobalType.hasValue()); in getGlobalType()
80 return GlobalType.getValue(); in getGlobalType()
82 void setGlobalType(wasm::WasmGlobalType GT) { GlobalType = GT; } in setGlobalType()
/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DWasmTraits.h58 static unsigned getHashValue(const wasm::WasmGlobalType &GlobalType) {
59 return hash_combine(GlobalType.Type, GlobalType.Mutable);
H A DWasm.h40 const wasm::WasmGlobalType *GlobalType, in WasmSymbol() argument
43 : Info(Info), GlobalType(GlobalType), EventType(EventType), in WasmSymbol()
47 const wasm::WasmGlobalType *GlobalType; variable
/freebsd-12.1/contrib/llvm/lib/Object/
H A DWasmObjectFile.cpp485 const wasm::WasmGlobalType *GlobalType = nullptr; in parseLinkingSectionSymtab() local
532 GlobalType = &Global.Type; in parseLinkingSectionSymtab()
541 GlobalType = &Import.Global; in parseLinkingSectionSymtab()
621 Symbols.emplace_back(LinkingData.SymbolTable.back(), GlobalType, EventType, in parseLinkingSectionSymtab()
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp841 Type *GlobalType; in OptimizeGlobalAddressOfMalloc() local
843 GlobalType = AllocTy; in OptimizeGlobalAddressOfMalloc()
846 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue()); in OptimizeGlobalAddressOfMalloc()
851 *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage, in OptimizeGlobalAddressOfMalloc()
852 UndefValue::get(GlobalType), GV->getName() + ".body", nullptr, in OptimizeGlobalAddressOfMalloc()