Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolWasm.h28 Optional<wasm::WasmGlobalType> GlobalType; variable
128 assert(GlobalType.hasValue()); in getGlobalType()
129 return GlobalType.getValue(); in getGlobalType()
131 void setGlobalType(wasm::WasmGlobalType GT) { GlobalType = GT; } in setGlobalType()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasmTraits.h57 static unsigned getHashValue(const wasm::WasmGlobalType &GlobalType) {
58 return hash_combine(GlobalType.Type, GlobalType.Mutable);
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h38 const wasm::WasmGlobalType *GlobalType, in WasmSymbol() argument
42 : Info(Info), GlobalType(GlobalType), TableType(TableType), in WasmSymbol()
46 const wasm::WasmGlobalType *GlobalType; variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp903 Type *GlobalType; in OptimizeGlobalAddressOfMalloc() local
905 GlobalType = AllocTy; in OptimizeGlobalAddressOfMalloc()
908 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue()); in OptimizeGlobalAddressOfMalloc()
913 *GV->getParent(), GlobalType, false, GlobalValue::InternalLinkage, in OptimizeGlobalAddressOfMalloc()
914 UndefValue::get(GlobalType), GV->getName() + ".body", nullptr, in OptimizeGlobalAddressOfMalloc()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp530 const wasm::WasmGlobalType *GlobalType = nullptr; in parseLinkingSectionSymtab() local
581 GlobalType = &Global.Type; in parseLinkingSectionSymtab()
592 GlobalType = &Import.Global; in parseLinkingSectionSymtab()
712 Symbols.emplace_back(LinkingData.SymbolTable.back(), GlobalType, TableType, in parseLinkingSectionSymtab()