/external/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
D | AMDGPUTargetStreamer.h | 36 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;
|
D | AMDGPUTargetStreamer.cpp | 235 StringRef GlobalName) { in EmitAMDGPUHsaModuleScopeGlobal() argument 236 OS << "\t.amdgpu_hsa_module_global " << GlobalName << '\n'; in EmitAMDGPUHsaModuleScopeGlobal() 240 StringRef GlobalName) { in EmitAMDGPUHsaProgramScopeGlobal() argument 241 OS << "\t.amdgpu_hsa_program_global " << GlobalName << '\n'; in EmitAMDGPUHsaProgramScopeGlobal() 327 StringRef GlobalName) { in EmitAMDGPUHsaModuleScopeGlobal() argument 330 getStreamer().getContext().getOrCreateSymbol(GlobalName)); in EmitAMDGPUHsaModuleScopeGlobal() 336 StringRef GlobalName) { in EmitAMDGPUHsaProgramScopeGlobal() argument 339 getStreamer().getContext().getOrCreateSymbol(GlobalName)); in EmitAMDGPUHsaProgramScopeGlobal()
|
/external/clang/lib/CodeGen/ |
D | SanitizerMetadata.cpp | 35 llvm::Metadata *GlobalName = nullptr; in reportGlobalToASan() local 42 GlobalName = llvm::MDString::get(VMContext, Name); in reportGlobalToASan() 46 llvm::ConstantAsMetadata::get(GV), LocDescr, GlobalName, in reportGlobalToASan()
|
D | CodeGenModule.h | 801 const char *GlobalName = nullptr); 1208 void EmitCtorList(const CtorList &Fns, const char *GlobalName);
|
D | CodeGenModule.cpp | 723 void CodeGenModule::EmitCtorList(const CtorList &Fns, const char *GlobalName) { in EmitCtorList() argument 749 GlobalName); in EmitCtorList() 3421 CodeGenModule &CGM, StringRef GlobalName, in GenerateStringLiteral() argument 3431 M, C->getType(), !CGM.getLangOpts().WritableStrings, LT, C, GlobalName, in GenerateStringLiteral() 3504 const std::string &Str, const char *GlobalName) { in GetAddrOfConstantCString() argument 3524 if (!GlobalName) in GetAddrOfConstantCString() 3525 GlobalName = ".str"; in GetAddrOfConstantCString() 3528 GlobalName, Alignment); in GetAddrOfConstantCString()
|
/external/clang/lib/Basic/ |
D | SanitizerBlacklist.cpp | 22 bool SanitizerBlacklist::isBlacklistedGlobal(StringRef GlobalName, in isBlacklistedGlobal() argument 24 return SCL->inSection("global", GlobalName, Category); in isBlacklistedGlobal()
|
/external/llvm/tools/bugpoint/ |
D | ExtractFunction.cpp | 251 static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2, in SplitStaticCtorDtor() argument 253 GlobalVariable *GV = M1->getNamedGlobal(GlobalName); in SplitStaticCtorDtor() 292 M1Init, GlobalName); in SplitStaticCtorDtor() 295 GV = M2->getNamedGlobal(GlobalName); in SplitStaticCtorDtor() 304 M2Init, GlobalName); in SplitStaticCtorDtor()
|
/external/llvm/utils/ |
D | llvm.grm | 79 GlobalName ::= GLOBALVAR | ATSTRINGCONSTANT ; 83 GlobalAssign ::= GlobalName "=" ; 301 GlobalName ^ "(" ^ ArgList ^ ")" 339 | GlobalName ;
|
/external/clang/include/clang/Basic/ |
D | SanitizerBlacklist.h | 33 bool isBlacklistedGlobal(StringRef GlobalName,
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | GlobalValue.h | 462 static GUID getGUID(StringRef GlobalName) { return MD5Hash(GlobalName); } in getGUID() argument
|
/external/llvm/include/llvm/IR/ |
D | GlobalValue.h | 445 static GUID getGUID(StringRef GlobalName) { return MD5Hash(GlobalName); } in getGUID() argument
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | GlobalValue.h | 506 static GUID getGUID(StringRef GlobalName) { return MD5Hash(GlobalName); } in getGUID() argument
|
/external/llvm/lib/Target/AMDGPU/AsmParser/ |
D | AMDGPUAsmParser.cpp | 1336 StringRef GlobalName = Parser.getTok().getIdentifier(); in ParseDirectiveAMDGPUHsaModuleGlobal() local 1338 getTargetStreamer().EmitAMDGPUHsaModuleScopeGlobal(GlobalName); in ParseDirectiveAMDGPUHsaModuleGlobal() 1347 StringRef GlobalName = Parser.getTok().getIdentifier(); in ParseDirectiveAMDGPUHsaProgramGlobal() local 1349 getTargetStreamer().EmitAMDGPUHsaProgramScopeGlobal(GlobalName); in ParseDirectiveAMDGPUHsaProgramGlobal()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.h | 415 bool parseOptionalComdat(StringRef GlobalName, Comdat *&C);
|
D | LLParser.cpp | 3258 bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) { in parseOptionalComdat() argument 3273 if (GlobalName.empty()) in parseOptionalComdat() 3275 C = getComdat(GlobalName, KwLoc); in parseOptionalComdat()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | LLParser.h | 515 bool parseOptionalComdat(StringRef GlobalName, Comdat *&C);
|
D | LLParser.cpp | 3681 bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) { in parseOptionalComdat() argument 3696 if (GlobalName.empty()) in parseOptionalComdat() 3698 C = getComdat(GlobalName, KwLoc); in parseOptionalComdat()
|