LLVM String Value objects: How can I retrieve the String from a Value?

笑着哭i 提交于 2020-01-12 14:21:10

问题


When building the IR from an existing AST, my AST has some string values (at compile-time they are built from std::string) and I want to set them safely as llvm::Value to use as a part of an expression.

In this case, I don't need to bind the string at run-time, because string values are only meant to resolve stuff as variables, functions or classes at compile-time (the language doesn't support a native string type).

Whats the best way to keep my string content as llvm::Value and still be able to retrieve it at later stages of compilation (when the nesting expressions are built)?

More concretely, if I set the llvm::Value with:

 llvm::Value* v = llvm::ConstantArray::get(llvmContext, myString.c_str());

How do I safely retrieve the string value? Is llvm::ConstantArray the appropriate way to wrap strings?


回答1:


Yes, ConstantArray is what you should use here. In order to retrieve the value later just use ConstantArray::getAsCString(). If you have assertions turned on, it will assert if something will went wrong (e.g. you will try to grab string from the array w/o zero terminator).




回答2:


Running http://llvm.org/demo/ on the C code char *x = "asdf"; gives:

@.str = private unnamed_addr constant [5 x i8] c"asdf\00"
@x = global i8* getelementptr inbounds ([5 x i8]* @.str, i64 0, i64 0), align 8

Basically, to get the address of a string, you have to build a global containing it. You can switch http://llvm.org/demo/ to output C++ API calls if you have trouble figuring out how to do that.



来源:https://stackoverflow.com/questions/8377735/llvm-string-value-objects-how-can-i-retrieve-the-string-from-a-value

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!