diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-10-17 21:56:50 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-10-17 21:56:50 +0000 |
commit | dfcf599dfa1257170a2c7ece3d42cc1423c0fbb4 (patch) | |
tree | 348e3b7e7a58189134132bf303c171e28d9a9474 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 83876cd9b0a48f8ed5da8b97c284b1d4f6c93c57 (diff) | |
download | bcm5719-llvm-dfcf599dfa1257170a2c7ece3d42cc1423c0fbb4.tar.gz bcm5719-llvm-dfcf599dfa1257170a2c7ece3d42cc1423c0fbb4.zip |
Add option argument to GetAddrOfConstantString to use for name of
(first) global holding the string.
- No functionality change.
llvm-svn: 57736
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index a8d8825aea8..a1cd6f1e6ca 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -885,14 +885,17 @@ CodeGenModule::GetAddrOfConstantStringFromLiteral(const StringLiteral *S) { /// GenerateWritableString -- Creates storage for a string literal. static llvm::Constant *GenerateStringLiteral(const std::string &str, bool constant, - CodeGenModule &CGM) { + CodeGenModule &CGM, + const char *GlobalName) { // Create Constant for this string literal. Don't add a '\0'. llvm::Constant *C = llvm::ConstantArray::get(str, false); // Create a global variable for this string C = new llvm::GlobalVariable(C->getType(), constant, llvm::GlobalValue::InternalLinkage, - C, ".str", &CGM.getModule()); + C, + GlobalName ? GlobalName : ".str", + &CGM.getModule()); return C; } @@ -905,10 +908,11 @@ static llvm::Constant *GenerateStringLiteral(const std::string &str, /// Feature.WriteableStrings. /// /// The result has pointer to array type. -llvm::Constant *CodeGenModule::GetAddrOfConstantString(const std::string &str) { +llvm::Constant *CodeGenModule::GetAddrOfConstantString(const std::string &str, + const char *GlobalName) { // Don't share any string literals if writable-strings is turned on. if (Features.WritableStrings) - return GenerateStringLiteral(str, false, *this); + return GenerateStringLiteral(str, false, *this, GlobalName); llvm::StringMapEntry<llvm::Constant *> &Entry = ConstantStringMap.GetOrCreateValue(&str[0], &str[str.length()]); @@ -917,7 +921,7 @@ llvm::Constant *CodeGenModule::GetAddrOfConstantString(const std::string &str) { return Entry.getValue(); // Create a global variable for this. - llvm::Constant *C = GenerateStringLiteral(str, true, *this); + llvm::Constant *C = GenerateStringLiteral(str, true, *this, GlobalName); Entry.setValue(C); return C; } @@ -925,8 +929,9 @@ llvm::Constant *CodeGenModule::GetAddrOfConstantString(const std::string &str) { /// GetAddrOfConstantCString - Returns a pointer to a character /// array containing the literal and a terminating '\-' /// character. The result has pointer to array type. -llvm::Constant *CodeGenModule::GetAddrOfConstantCString(const std::string &str) { - return GetAddrOfConstantString(str + "\0"); +llvm::Constant *CodeGenModule::GetAddrOfConstantCString(const std::string &str, + const char *GlobalName){ + return GetAddrOfConstantString(str + "\0", GlobalName); } /// EmitObjCPropertyImplementations - Emit information for synthesized |