Searched refs:GlobalName (Results 1 - 11 of 11) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUTargetStreamer.h36 virtual void EmitAMDGPUHsaModuleScopeGlobal(StringRef GlobalName) = 0;
38 virtual void EmitAMDGPUHsaProgramScopeGlobal(StringRef GlobalName) = 0;
56 void EmitAMDGPUHsaModuleScopeGlobal(StringRef GlobalName) override;
58 void EmitAMDGPUHsaProgramScopeGlobal(StringRef GlobalName) override;
92 void EmitAMDGPUHsaModuleScopeGlobal(StringRef GlobalName) override;
94 void EmitAMDGPUHsaProgramScopeGlobal(StringRef GlobalName) override;
H A DAMDGPUTargetStreamer.cpp235 StringRef GlobalName) {
236 OS << "\t.amdgpu_hsa_module_global " << GlobalName << '\n'; local
240 StringRef GlobalName) {
241 OS << "\t.amdgpu_hsa_program_global " << GlobalName << '\n'; local
331 StringRef GlobalName) {
334 getStreamer().getContext().getOrCreateSymbol(GlobalName));
340 StringRef GlobalName) {
343 getStreamer().getContext().getOrCreateSymbol(GlobalName));
234 EmitAMDGPUHsaModuleScopeGlobal( StringRef GlobalName) argument
239 EmitAMDGPUHsaProgramScopeGlobal( StringRef GlobalName) argument
330 EmitAMDGPUHsaModuleScopeGlobal( StringRef GlobalName) argument
339 EmitAMDGPUHsaProgramScopeGlobal( StringRef GlobalName) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DSanitizerBlacklist.cpp22 bool SanitizerBlacklist::isBlacklistedGlobal(StringRef GlobalName, argument
24 return SCL->inSection("global", GlobalName, Category);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DSanitizerBlacklist.h33 bool isBlacklistedGlobal(StringRef GlobalName,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DSanitizerMetadata.cpp35 llvm::Metadata *GlobalName = nullptr; local
42 GlobalName = llvm::MDString::get(VMContext, Name);
46 llvm::ConstantAsMetadata::get(GV), LocDescr, GlobalName,
H A DCodeGenModule.cpp698 void CodeGenModule::EmitCtorList(const CtorList &Fns, const char *GlobalName) { argument
724 GlobalName);
3171 CodeGenModule &CGM, StringRef GlobalName,
3181 M, C->getType(), !CGM.getLangOpts().WritableStrings, LT, C, GlobalName,
3254 const std::string &Str, const char *GlobalName) {
3274 if (!GlobalName)
3275 GlobalName = ".str";
3278 GlobalName, Alignment);
3170 GenerateStringLiteral(llvm::Constant *C, llvm::GlobalValue::LinkageTypes LT, CodeGenModule &CGM, StringRef GlobalName, CharUnits Alignment) argument
3253 GetAddrOfConstantCString( const std::string &Str, const char *GlobalName) argument
H A DCodeGenModule.h788 /// \param GlobalName If provided, the name to use for the global (if one is
792 const char *GlobalName = nullptr);
1187 void EmitCtorList(const CtorList &Fns, const char *GlobalName);
/freebsd-11.0-release/contrib/llvm/tools/bugpoint/
H A DExtractFunction.cpp249 static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2, argument
251 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
290 M1Init, GlobalName);
293 GV = M2->getNamedGlobal(GlobalName);
302 M2Init, GlobalName);
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp981 StringRef GlobalName = Parser.getTok().getIdentifier();
983 getTargetStreamer().EmitAMDGPUHsaModuleScopeGlobal(GlobalName);
992 StringRef GlobalName = Parser.getTok().getIdentifier();
994 getTargetStreamer().EmitAMDGPUHsaProgramScopeGlobal(GlobalName);
/freebsd-11.0-release/contrib/llvm/lib/AsmParser/
H A DLLParser.h409 bool parseOptionalComdat(StringRef GlobalName, Comdat *&C);
H A DLLParser.cpp3094 bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
3109 if (GlobalName.empty())
3111 C = getComdat(GlobalName, KwLoc);
4324 /// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection

Completed in 519 milliseconds