Lines Matching full:variable
434 // Find the result variable. If it doesn't exist, we can give up right here.
468 log->PutCString("Couldn't find result variable");
481 log->PutCString("Result variable had no data");
484 m_error_stream->Printf("Internal error [IRForTarget]: Result variable's name (%s) exists, but not its definition\n", result_name);
497 log->PutCString("Result variable isn't a GlobalVariable");
500 m_error_stream->Printf("Internal error [IRForTarget]: Result variable (%s) is defined, but is not a global variable\n", result_name);
509 log->PutCString("Result variable doesn't have a corresponding Decl");
512 m_error_stream->Printf("Internal error [IRForTarget]: Result variable (%s) does not have a corresponding Clang entity\n", result_name);
531 log->PutCString("Result variable Decl isn't a VarDecl");
534 m_error_stream->Printf("Internal error [IRForTarget]: Result variable (%s)'s corresponding Clang entity isn't a variable\n", result_name);
540 // variable for it
572 m_error_stream->Printf("Internal error [IRForTarget]: Lvalue result (%s) is not a pointer variable\n", result_name);
623 // anomaly: a variable with a Value whose name is something like $0 and a
625 // ClangExpressionDeclMap::DoMaterialize, and the name of the variable is
649 // We need to synthesize a store for this variable, because otherwise
650 // there's nothing to put into its equivalent persistent variable.
661 log->Printf("Couldn't find initializer for unused variable");
664 m_error_stream->Printf("Internal error [IRForTarget]: Result variable (%s) has no writes and no initializer\n", result_name);
859 log->PutCString("NSString variable is not a GlobalVariable");
862 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string is not a global variable\n");
870 log->PutCString("NSString variable does not have an initializer");
883 log->PutCString("NSString variable's initializer is not a ConstantStruct");
903 log->Printf("NSString variable's initializer structure has an unexpected number of members. Should be 4, is %d", nsstring_struct->getNumOperands());
1037 log->PutCString("__CFConstantStringClassReference is not a global variable");
1243 // We attempt to register this as a new persistent variable with the DeclMap.
1265 // variable. That means we need to make the metadata valid.
1278 // Now, since the variable is a pointer variable, we will drop in a load of that
1279 // pointer variable.
1325 log->Printf("Rejecting a numeric persistent variable.");
1347 m_error_stream->Printf("Internal error [IRForTarget]: Couldn't rewrite the creation of a persistent variable\n");
1350 log->PutCString("Couldn't rewrite the creation of a persistent variable");
1507 log->Printf("Found global variable \"%s\" without metadata", global_variable->getName().str().c_str());
1525 // a static variable. Per the comment at ASTResultSynthesizer::SynthesizeBodyResult,
1526 // accesses to this static variable need to be redirected to the result of dereferencing
1783 m_error_stream->Printf("Internal error [IRForTarget]: global variable is NULL");
1830 m_error_stream->Printf("Internal error [IRForTarget]: Couldn't rewrite external variable %s\n", global_name.c_str());
1930 log->Printf("Use (%s) of string variable is not a GetElementPtr constant", PrintValue(const_expr).c_str());
1949 log->Printf("Use (%s) of string variable is neither a constant nor a store", PrintValue(const_expr).c_str());
2443 // variable is an rvalue, we have to synthesize a dereference of the appropriate structure
2444 // entry in order to produce the static variable that the AST thinks it is accessing.
2657 // Replace $__lldb_expr_result with a persistent variable
2679 log->Printf("Module after creating the result variable: \n\"%s\"", s.c_str());