search for: iscstring

Displaying 1 result from an estimated 1 matches for "iscstring".

Did you mean: is_string
2017 May 22
2
DebugInfo, Metadata usage
...hecker and want to implement checker for variables. In that case, I want to retrieve some information about types of variables or identify that the variable is either string or not. As an example, for strings which can be char or string type I came up with a solution to find it out via isString or isCString methods. But for strings whose type is wchar my approach is not working. Cause, internally in IR wchar string is an array of integers. I looked up some information about how to get types of variables that were got from the source level in IR level. (I've been reading some info in LLVM Blog abo...