blob: 26255ace048876ee35e90f91dbc24443650d30ae [file] [log] [blame]
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00001//===-- IRForTarget.cpp -------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "lldb/Expression/IRForTarget.h"
11
12#include "llvm/Support/raw_ostream.h"
Sean Callanan2a8c3382011-04-14 02:01:31 +000013#include "llvm/Constants.h"
Sean Callanan5cf4a1c2010-07-03 01:35:46 +000014#include "llvm/InstrTypes.h"
Sean Callanan8bce6652010-07-13 21:41:46 +000015#include "llvm/Instructions.h"
Sean Callanan3cb1fd82010-09-28 23:55:00 +000016#include "llvm/Intrinsics.h"
Sean Callanan5cf4a1c2010-07-03 01:35:46 +000017#include "llvm/Module.h"
Sean Callanan8bce6652010-07-13 21:41:46 +000018#include "llvm/Target/TargetData.h"
Sean Callanan82b74c82010-08-12 01:56:52 +000019#include "llvm/ValueSymbolTable.h"
Sean Callanan8bce6652010-07-13 21:41:46 +000020
21#include "clang/AST/ASTContext.h"
Sean Callanan5cf4a1c2010-07-03 01:35:46 +000022
Greg Clayton8de27c72010-10-15 22:48:33 +000023#include "lldb/Core/ConstString.h"
Sean Callanan5cf4a1c2010-07-03 01:35:46 +000024#include "lldb/Core/dwarf.h"
25#include "lldb/Core/Log.h"
26#include "lldb/Core/Scalar.h"
27#include "lldb/Core/StreamString.h"
28#include "lldb/Expression/ClangExpressionDeclMap.h"
Sean Callananc0492742011-05-23 21:40:23 +000029#include "lldb/Host/Endian.h"
Sean Callanan696cf5f2011-05-07 01:06:41 +000030#include "lldb/Symbol/ClangASTContext.h"
Sean Callanan5cf4a1c2010-07-03 01:35:46 +000031
32#include <map>
33
34using namespace llvm;
35
Sean Callanan3351dac2010-08-18 18:50:51 +000036static char ID;
37
Sean Callananc0492742011-05-23 21:40:23 +000038IRForTarget::StaticDataAllocator::StaticDataAllocator()
39{
40}
41
42IRForTarget::StaticDataAllocator::~StaticDataAllocator()
43{
44}
45
Greg Clayton3c7feb42010-11-19 01:05:25 +000046IRForTarget::IRForTarget (lldb_private::ClangExpressionDeclMap *decl_map,
47 bool resolve_vars,
Sean Callanan696cf5f2011-05-07 01:06:41 +000048 lldb::ClangExpressionVariableSP &const_result,
Sean Callananc0492742011-05-23 21:40:23 +000049 StaticDataAllocator *data_allocator,
Sean Callanan97c924e2011-01-27 01:07:04 +000050 lldb_private::Stream *error_stream,
Greg Clayton3c7feb42010-11-19 01:05:25 +000051 const char *func_name) :
Sean Callanan47a5c4c2010-09-23 03:01:22 +000052 ModulePass(ID),
Stephen Wilsondbeb3e12011-04-11 19:41:40 +000053 m_resolve_vars(resolve_vars),
54 m_func_name(func_name),
Sean Callanan8bce6652010-07-13 21:41:46 +000055 m_decl_map(decl_map),
Sean Callananc0492742011-05-23 21:40:23 +000056 m_module(NULL),
Sean Callanan6ba533e2010-11-17 23:00:36 +000057 m_CFStringCreateWithBytes(NULL),
Sean Callanan65dafa82010-08-27 01:01:44 +000058 m_sel_registerName(NULL),
Stephen Wilsondbeb3e12011-04-11 19:41:40 +000059 m_error_stream(error_stream),
Sean Callanan6a925532011-01-13 08:53:35 +000060 m_has_side_effects(false),
Sean Callanan696cf5f2011-05-07 01:06:41 +000061 m_result_store(NULL),
62 m_result_is_pointer(false),
Sean Callananc0492742011-05-23 21:40:23 +000063 m_const_result(const_result),
64 m_data_allocator(data_allocator),
65 m_reloc_placeholder(NULL)
Sean Callanan5cf4a1c2010-07-03 01:35:46 +000066{
67}
68
Sean Callanan771131d2010-09-30 21:18:25 +000069/* Handy utility functions used at several places in the code */
Sean Callanana48fe162010-08-11 03:57:18 +000070
71static std::string
Greg Clayton3c7feb42010-11-19 01:05:25 +000072PrintValue(const Value *value, bool truncate = false)
Sean Callanana48fe162010-08-11 03:57:18 +000073{
74 std::string s;
75 raw_string_ostream rso(s);
Greg Clayton3c7feb42010-11-19 01:05:25 +000076 value->print(rso);
Sean Callanana48fe162010-08-11 03:57:18 +000077 rso.flush();
78 if (truncate)
79 s.resize(s.length() - 1);
80 return s;
81}
82
Sean Callanan771131d2010-09-30 21:18:25 +000083static std::string
Greg Clayton3c7feb42010-11-19 01:05:25 +000084PrintType(const Type *type, bool truncate = false)
Sean Callanan771131d2010-09-30 21:18:25 +000085{
86 std::string s;
87 raw_string_ostream rso(s);
Greg Clayton3c7feb42010-11-19 01:05:25 +000088 type->print(rso);
Sean Callanan771131d2010-09-30 21:18:25 +000089 rso.flush();
90 if (truncate)
91 s.resize(s.length() - 1);
92 return s;
93}
94
Sean Callanan5cf4a1c2010-07-03 01:35:46 +000095IRForTarget::~IRForTarget()
96{
97}
98
Sean Callananc0492742011-05-23 21:40:23 +000099bool
100IRForTarget::FixFunctionLinkage(llvm::Function &llvm_function)
101{
102 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
103
104 llvm_function.setLinkage(GlobalValue::ExternalLinkage);
105
106 std::string name = llvm_function.getNameStr();
107
108 return true;
109}
110
Sean Callanan82b74c82010-08-12 01:56:52 +0000111bool
Sean Callananc0492742011-05-23 21:40:23 +0000112IRForTarget::HasSideEffects (llvm::Function &llvm_function)
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000113{
114 llvm::Function::iterator bbi;
115 BasicBlock::iterator ii;
Sean Callanan696cf5f2011-05-07 01:06:41 +0000116
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000117 for (bbi = llvm_function.begin();
118 bbi != llvm_function.end();
119 ++bbi)
120 {
121 BasicBlock &basic_block = *bbi;
122
123 for (ii = basic_block.begin();
124 ii != basic_block.end();
125 ++ii)
126 {
127 switch (ii->getOpcode())
128 {
129 default:
130 return true;
131 case Instruction::Store:
132 {
133 StoreInst *store_inst = dyn_cast<StoreInst>(ii);
134
135 Value *store_ptr = store_inst->getPointerOperand();
136
Sean Callanan696cf5f2011-05-07 01:06:41 +0000137 std::string ptr_name;
138
139 if (store_ptr->hasName())
140 ptr_name = store_ptr->getNameStr();
141
142 if (isa <AllocaInst> (store_ptr))
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000143 break;
Sean Callanan696cf5f2011-05-07 01:06:41 +0000144
145 if (ptr_name.find("$__lldb_expr_result") != std::string::npos)
146 {
147 if (ptr_name.find("GV") == std::string::npos)
148 m_result_store = store_inst;
149 }
150 else
151 {
152 return true;
153 }
154
155 break;
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000156 }
157 case Instruction::Load:
158 case Instruction::Alloca:
159 case Instruction::GetElementPtr:
Sean Callanan696cf5f2011-05-07 01:06:41 +0000160 case Instruction::BitCast:
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000161 case Instruction::Ret:
Sean Callanan696cf5f2011-05-07 01:06:41 +0000162 case Instruction::ICmp:
163 case Instruction::Br:
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000164 break;
165 }
166 }
167 }
168
169 return false;
170}
171
Sean Callanan696cf5f2011-05-07 01:06:41 +0000172clang::NamedDecl *
Sean Callananc0492742011-05-23 21:40:23 +0000173IRForTarget::DeclForGlobal (GlobalValue *global_val)
Sean Callanan696cf5f2011-05-07 01:06:41 +0000174{
175 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
176
Sean Callananc0492742011-05-23 21:40:23 +0000177 NamedMDNode *named_metadata = m_module->getNamedMetadata("clang.global.decl.ptrs");
Sean Callanan696cf5f2011-05-07 01:06:41 +0000178
179 if (!named_metadata)
180 return NULL;
181
182 unsigned num_nodes = named_metadata->getNumOperands();
183 unsigned node_index;
184
185 for (node_index = 0;
186 node_index < num_nodes;
187 ++node_index)
188 {
189 MDNode *metadata_node = named_metadata->getOperand(node_index);
190
191 if (!metadata_node)
192 return NULL;
193
194 if (metadata_node->getNumOperands() != 2)
195 continue;
196
197 if (metadata_node->getOperand(0) != global_val)
198 continue;
199
200 ConstantInt *constant_int = dyn_cast<ConstantInt>(metadata_node->getOperand(1));
201
202 if (!constant_int)
203 return NULL;
204
205 uintptr_t ptr = constant_int->getZExtValue();
206
207 return reinterpret_cast<clang::NamedDecl *>(ptr);
208 }
209
210 return NULL;
211}
212
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000213void
214IRForTarget::MaybeSetConstantResult (llvm::Constant *initializer,
215 const lldb_private::ConstString &name,
216 lldb_private::TypeFromParser type)
217{
Sean Callanan696cf5f2011-05-07 01:06:41 +0000218 if (llvm::ConstantExpr *init_expr = dyn_cast<llvm::ConstantExpr>(initializer))
219 {
220 switch (init_expr->getOpcode())
221 {
222 default:
223 return;
224 case Instruction::IntToPtr:
225 MaybeSetConstantResult (init_expr->getOperand(0), name, type);
226 return;
227 }
228 }
229 else if (llvm::ConstantInt *init_int = dyn_cast<llvm::ConstantInt>(initializer))
230 {
231 m_const_result = m_decl_map->BuildIntegerVariable(name, type, init_int->getValue());
232 }
233}
234
235void
Sean Callananc0492742011-05-23 21:40:23 +0000236IRForTarget::MaybeSetCastResult (lldb_private::TypeFromParser type)
Sean Callanan696cf5f2011-05-07 01:06:41 +0000237{
238 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
239
240 if (!m_result_store)
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000241 return;
242
Sean Callanan696cf5f2011-05-07 01:06:41 +0000243 LoadInst *original_load = NULL;
244
245 for (llvm::Value *current_value = m_result_store->getValueOperand(), *next_value;
246 current_value != NULL;
247 current_value = next_value)
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000248 {
Sean Callanan696cf5f2011-05-07 01:06:41 +0000249 CastInst *cast_inst = dyn_cast<CastInst>(current_value);
250 LoadInst *load_inst = dyn_cast<LoadInst>(current_value);
251
252 if (cast_inst)
253 {
254 next_value = cast_inst->getOperand(0);
255 }
256 else if(load_inst)
257 {
258 if (isa<LoadInst>(load_inst->getPointerOperand()))
259 {
260 next_value = load_inst->getPointerOperand();
261 }
262 else
263 {
264 original_load = load_inst;
265 break;
266 }
267 }
268 else
269 {
270 return;
271 }
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000272 }
Sean Callanan696cf5f2011-05-07 01:06:41 +0000273
274 Value *loaded_value = original_load->getPointerOperand();
275 GlobalVariable *loaded_global = dyn_cast<GlobalVariable>(loaded_value);
276
277 if (!loaded_global)
278 return;
279
Sean Callananc0492742011-05-23 21:40:23 +0000280 clang::NamedDecl *loaded_decl = DeclForGlobal(loaded_global);
Sean Callanan696cf5f2011-05-07 01:06:41 +0000281
282 if (!loaded_decl)
283 return;
284
285 clang::VarDecl *loaded_var = dyn_cast<clang::VarDecl>(loaded_decl);
286
287 if (!loaded_var)
288 return;
289
290 if (log)
291 {
292 lldb_private::StreamString type_desc_stream;
293 type.DumpTypeDescription(&type_desc_stream);
294
295 log->Printf("Type to cast variable to: \"%s\"", type_desc_stream.GetString().c_str());
296 }
297
298 m_const_result = m_decl_map->BuildCastVariable(m_result_name, loaded_var, type);
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000299}
300
301bool
Sean Callananc0492742011-05-23 21:40:23 +0000302IRForTarget::CreateResultVariable (llvm::Function &llvm_function)
Sean Callanan82b74c82010-08-12 01:56:52 +0000303{
Greg Claytone005f2c2010-11-06 01:53:30 +0000304 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan82b74c82010-08-12 01:56:52 +0000305
Sean Callanane8a59a82010-09-13 21:34:21 +0000306 if (!m_resolve_vars)
307 return true;
308
309 // Find the result variable. If it doesn't exist, we can give up right here.
Sean Callanan3c9c5eb2010-09-21 00:44:12 +0000310
Sean Callananc0492742011-05-23 21:40:23 +0000311 ValueSymbolTable& value_symbol_table = m_module->getValueSymbolTable();
Sean Callanan3c9c5eb2010-09-21 00:44:12 +0000312
313 const char *result_name = NULL;
314
315 for (ValueSymbolTable::iterator vi = value_symbol_table.begin(), ve = value_symbol_table.end();
316 vi != ve;
317 ++vi)
318 {
Sean Callanan6a925532011-01-13 08:53:35 +0000319 if (strstr(vi->first(), "$__lldb_expr_result_ptr") &&
320 !strstr(vi->first(), "GV"))
321 {
322 result_name = vi->first();
323 m_result_is_pointer = true;
324 break;
325 }
326
Greg Clayton8de27c72010-10-15 22:48:33 +0000327 if (strstr(vi->first(), "$__lldb_expr_result") &&
Sean Callananc04743d2010-09-28 21:13:03 +0000328 !strstr(vi->first(), "GV"))
329 {
Sean Callanan3c9c5eb2010-09-21 00:44:12 +0000330 result_name = vi->first();
Sean Callanan6a925532011-01-13 08:53:35 +0000331 m_result_is_pointer = false;
Sean Callananc04743d2010-09-28 21:13:03 +0000332 break;
333 }
Sean Callanan3c9c5eb2010-09-21 00:44:12 +0000334 }
335
336 if (!result_name)
337 {
338 if (log)
339 log->PutCString("Couldn't find result variable");
340
341 return true;
342 }
343
Sean Callananc04743d2010-09-28 21:13:03 +0000344 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +0000345 log->Printf("Result name: \"%s\"", result_name);
Sean Callananc04743d2010-09-28 21:13:03 +0000346
Sean Callananc0492742011-05-23 21:40:23 +0000347 Value *result_value = m_module->getNamedValue(result_name);
Sean Callanan82b74c82010-08-12 01:56:52 +0000348
349 if (!result_value)
350 {
351 if (log)
Sean Callanan3c9c5eb2010-09-21 00:44:12 +0000352 log->PutCString("Result variable had no data");
Sean Callanan6a925532011-01-13 08:53:35 +0000353
Sean Callanan97c924e2011-01-27 01:07:04 +0000354 if (m_error_stream)
355 m_error_stream->Printf("Internal error [IRForTarget]: Result variable's name (%s) exists, but not its definition\n", result_name);
356
Sean Callanan3c9c5eb2010-09-21 00:44:12 +0000357 return false;
Sean Callanan82b74c82010-08-12 01:56:52 +0000358 }
Sean Callanane8a59a82010-09-13 21:34:21 +0000359
Sean Callanan82b74c82010-08-12 01:56:52 +0000360 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +0000361 log->Printf("Found result in the IR: \"%s\"", PrintValue(result_value, false).c_str());
Sean Callanan82b74c82010-08-12 01:56:52 +0000362
363 GlobalVariable *result_global = dyn_cast<GlobalVariable>(result_value);
364
365 if (!result_global)
366 {
367 if (log)
368 log->PutCString("Result variable isn't a GlobalVariable");
Sean Callanan97c924e2011-01-27 01:07:04 +0000369
370 if (m_error_stream)
371 m_error_stream->Printf("Internal error [IRForTarget]: Result variable (%s) is defined, but is not a global variable\n", result_name);
372
Sean Callanan82b74c82010-08-12 01:56:52 +0000373 return false;
374 }
375
Sean Callananc0492742011-05-23 21:40:23 +0000376 clang::NamedDecl *result_decl = DeclForGlobal (result_global);
Sean Callanan696cf5f2011-05-07 01:06:41 +0000377 if (!result_decl)
Sean Callanan82b74c82010-08-12 01:56:52 +0000378 {
379 if (log)
Sean Callanan696cf5f2011-05-07 01:06:41 +0000380 log->PutCString("Result variable doesn't have a corresponding Decl");
Sean Callanan82b74c82010-08-12 01:56:52 +0000381
Sean Callanan97c924e2011-01-27 01:07:04 +0000382 if (m_error_stream)
Sean Callanan696cf5f2011-05-07 01:06:41 +0000383 m_error_stream->Printf("Internal error [IRForTarget]: Result variable (%s) does not have a corresponding Clang entity\n", result_name);
Sean Callanan97c924e2011-01-27 01:07:04 +0000384
Sean Callanan82b74c82010-08-12 01:56:52 +0000385 return false;
386 }
Sean Callanan82b74c82010-08-12 01:56:52 +0000387
Sean Callanan696cf5f2011-05-07 01:06:41 +0000388 if (log)
Sean Callanan82b74c82010-08-12 01:56:52 +0000389 {
Sean Callanan696cf5f2011-05-07 01:06:41 +0000390 std::string decl_desc_str;
391 raw_string_ostream decl_desc_stream(decl_desc_str);
392 result_decl->print(decl_desc_stream);
393 decl_desc_stream.flush();
Sean Callanan82b74c82010-08-12 01:56:52 +0000394
Sean Callanan696cf5f2011-05-07 01:06:41 +0000395 log->Printf("Found result decl: \"%s\"", decl_desc_str.c_str());
Sean Callanan82b74c82010-08-12 01:56:52 +0000396 }
397
Sean Callanan696cf5f2011-05-07 01:06:41 +0000398 clang::VarDecl *result_var = dyn_cast<clang::VarDecl>(result_decl);
399 if (!result_var)
Sean Callanan82b74c82010-08-12 01:56:52 +0000400 {
401 if (log)
Sean Callanan696cf5f2011-05-07 01:06:41 +0000402 log->PutCString("Result variable Decl isn't a VarDecl");
Sean Callanan97c924e2011-01-27 01:07:04 +0000403
404 if (m_error_stream)
Sean Callanan696cf5f2011-05-07 01:06:41 +0000405 m_error_stream->Printf("Internal error [IRForTarget]: Result variable (%s)'s corresponding Clang entity isn't a variable\n", result_name);
Sean Callanan97c924e2011-01-27 01:07:04 +0000406
Sean Callanan82b74c82010-08-12 01:56:52 +0000407 return false;
408 }
Sean Callanan82b74c82010-08-12 01:56:52 +0000409
Sean Callanan82b74c82010-08-12 01:56:52 +0000410 // Get the next available result name from m_decl_map and create the persistent
411 // variable for it
412
Sean Callanan6a925532011-01-13 08:53:35 +0000413 lldb_private::TypeFromParser result_decl_type;
414
Sean Callanan696cf5f2011-05-07 01:06:41 +0000415 // If the result is an Lvalue, it is emitted as a pointer; see
416 // ASTResultSynthesizer::SynthesizeBodyResult.
Sean Callanan6a925532011-01-13 08:53:35 +0000417 if (m_result_is_pointer)
418 {
Sean Callanan696cf5f2011-05-07 01:06:41 +0000419 clang::QualType pointer_qual_type = result_var->getType();
Sean Callanand5b3c352011-01-27 04:42:51 +0000420 const clang::Type *pointer_type = pointer_qual_type.getTypePtr();
421 const clang::PointerType *pointer_pointertype = dyn_cast<clang::PointerType>(pointer_type);
Sean Callanan6a925532011-01-13 08:53:35 +0000422
423 if (!pointer_pointertype)
424 {
425 if (log)
426 log->PutCString("Expected result to have pointer type, but it did not");
Sean Callanan97c924e2011-01-27 01:07:04 +0000427
428 if (m_error_stream)
429 m_error_stream->Printf("Internal error [IRForTarget]: Lvalue result (%s) is not a pointer variable\n", result_name);
430
Sean Callanan6a925532011-01-13 08:53:35 +0000431 return false;
432 }
433
434 clang::QualType element_qual_type = pointer_pointertype->getPointeeType();
435
436 result_decl_type = lldb_private::TypeFromParser(element_qual_type.getAsOpaquePtr(),
437 &result_decl->getASTContext());
438 }
439 else
440 {
Sean Callanan696cf5f2011-05-07 01:06:41 +0000441 result_decl_type = lldb_private::TypeFromParser(result_var->getType().getAsOpaquePtr(),
Sean Callanan6a925532011-01-13 08:53:35 +0000442 &result_decl->getASTContext());
443 }
444
Sean Callanan696cf5f2011-05-07 01:06:41 +0000445 if (log)
446 {
447 lldb_private::StreamString type_desc_stream;
448 result_decl_type.DumpTypeDescription(&type_desc_stream);
449
450 log->Printf("Result decl type: \"%s\"", type_desc_stream.GetString().c_str());
451 }
452
Sean Callanan6a925532011-01-13 08:53:35 +0000453 m_result_name = m_decl_map->GetPersistentResultName();
Sean Callanan82b74c82010-08-12 01:56:52 +0000454
455 if (log)
Sean Callanan6a925532011-01-13 08:53:35 +0000456 log->Printf("Creating a new result global: \"%s\"", m_result_name.GetCString());
Sean Callanan82b74c82010-08-12 01:56:52 +0000457
458 // Construct a new result global and set up its metadata
459
Sean Callananc0492742011-05-23 21:40:23 +0000460 GlobalVariable *new_result_global = new GlobalVariable((*m_module),
Sean Callanan82b74c82010-08-12 01:56:52 +0000461 result_global->getType()->getElementType(),
462 false, /* not constant */
463 GlobalValue::ExternalLinkage,
464 NULL, /* no initializer */
Sean Callanan6a925532011-01-13 08:53:35 +0000465 m_result_name.GetCString ());
Sean Callanan82b74c82010-08-12 01:56:52 +0000466
467 // It's too late in compilation to create a new VarDecl for this, but we don't
468 // need to. We point the metadata at the old VarDecl. This creates an odd
469 // anomaly: a variable with a Value whose name is something like $0 and a
Greg Clayton8de27c72010-10-15 22:48:33 +0000470 // Decl whose name is $__lldb_expr_result. This condition is handled in
Sean Callanan82b74c82010-08-12 01:56:52 +0000471 // ClangExpressionDeclMap::DoMaterialize, and the name of the variable is
472 // fixed up.
473
Sean Callananc0492742011-05-23 21:40:23 +0000474 ConstantInt *new_constant_int = ConstantInt::get(llvm::Type::getInt64Ty(m_module->getContext()),
Sean Callanan696cf5f2011-05-07 01:06:41 +0000475 reinterpret_cast<uint64_t>(result_decl),
Sean Callanan82b74c82010-08-12 01:56:52 +0000476 false);
477
478 llvm::Value* values[2];
479 values[0] = new_result_global;
480 values[1] = new_constant_int;
481
Sean Callanan0de254a2011-05-15 22:34:38 +0000482 ArrayRef<Value*> value_ref(values, 2);
483
Sean Callananc0492742011-05-23 21:40:23 +0000484 MDNode *persistent_global_md = MDNode::get(m_module->getContext(), value_ref);
485 NamedMDNode *named_metadata = m_module->getNamedMetadata("clang.global.decl.ptrs");
Sean Callanan82b74c82010-08-12 01:56:52 +0000486 named_metadata->addOperand(persistent_global_md);
487
488 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +0000489 log->Printf("Replacing \"%s\" with \"%s\"",
Sean Callanan2e2db532010-09-07 22:43:19 +0000490 PrintValue(result_global).c_str(),
Sean Callanan82b74c82010-08-12 01:56:52 +0000491 PrintValue(new_result_global).c_str());
Sean Callanan2e2db532010-09-07 22:43:19 +0000492
493 if (result_global->hasNUses(0))
494 {
495 // We need to synthesize a store for this variable, because otherwise
496 // there's nothing to put into its equivalent persistent variable.
Sean Callanan82b74c82010-08-12 01:56:52 +0000497
Greg Clayton8de27c72010-10-15 22:48:33 +0000498 BasicBlock &entry_block(llvm_function.getEntryBlock());
Sean Callanan2e2db532010-09-07 22:43:19 +0000499 Instruction *first_entry_instruction(entry_block.getFirstNonPHIOrDbg());
500
501 if (!first_entry_instruction)
502 return false;
503
504 if (!result_global->hasInitializer())
505 {
506 if (log)
507 log->Printf("Couldn't find initializer for unused variable");
Sean Callanan97c924e2011-01-27 01:07:04 +0000508
509 if (m_error_stream)
510 m_error_stream->Printf("Internal error [IRForTarget]: Result variable (%s) has no writes and no initializer\n", result_name);
511
Sean Callanan2e2db532010-09-07 22:43:19 +0000512 return false;
513 }
514
515 Constant *initializer = result_global->getInitializer();
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000516
517 // Here we write the initializer into a result variable assuming it
518 // can be computed statically.
519
520 if (!m_has_side_effects)
521 {
522 MaybeSetConstantResult (initializer,
Sean Callanan6a925532011-01-13 08:53:35 +0000523 m_result_name,
Sean Callanan05a5a1b2010-12-16 03:17:46 +0000524 result_decl_type);
525 }
Sean Callanan2e2db532010-09-07 22:43:19 +0000526
Greg Clayton2c344ca2011-02-05 02:28:58 +0000527 StoreInst *synthesized_store = new StoreInst(initializer,
528 new_result_global,
529 first_entry_instruction);
Sean Callanan2e2db532010-09-07 22:43:19 +0000530
531 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +0000532 log->Printf("Synthesized result store \"%s\"\n", PrintValue(synthesized_store).c_str());
Sean Callanan2e2db532010-09-07 22:43:19 +0000533 }
534 else
535 {
Sean Callanan696cf5f2011-05-07 01:06:41 +0000536 if (!m_has_side_effects && lldb_private::ClangASTContext::IsPointerType (result_decl_type.GetOpaqueQualType()))
537 {
Sean Callananc0492742011-05-23 21:40:23 +0000538 MaybeSetCastResult (result_decl_type);
Sean Callanan696cf5f2011-05-07 01:06:41 +0000539 }
540
Sean Callanan2e2db532010-09-07 22:43:19 +0000541 result_global->replaceAllUsesWith(new_result_global);
542 }
Sean Callanan696cf5f2011-05-07 01:06:41 +0000543
544 if (!m_const_result)
545 m_decl_map->AddPersistentVariable(result_decl,
546 m_result_name,
547 result_decl_type,
548 true,
549 m_result_is_pointer);
Sean Callanan2e2db532010-09-07 22:43:19 +0000550
Sean Callanan82b74c82010-08-12 01:56:52 +0000551 result_global->eraseFromParent();
552
553 return true;
554}
555
Greg Clayton3c7feb42010-11-19 01:05:25 +0000556static void DebugUsers(lldb::LogSP &log, Value *value, uint8_t depth)
Sean Callanan6ba533e2010-11-17 23:00:36 +0000557{
558 if (!depth)
559 return;
560
561 depth--;
562
Greg Clayton3c7feb42010-11-19 01:05:25 +0000563 log->Printf(" <Begin %d users>", value->getNumUses());
Sean Callanan6ba533e2010-11-17 23:00:36 +0000564
Greg Clayton3c7feb42010-11-19 01:05:25 +0000565 for (Value::use_iterator ui = value->use_begin(), ue = value->use_end();
Sean Callanan6ba533e2010-11-17 23:00:36 +0000566 ui != ue;
567 ++ui)
568 {
569 log->Printf(" <Use %p> %s", *ui, PrintValue(*ui).c_str());
570 DebugUsers(log, *ui, depth);
571 }
572
573 log->Printf(" <End uses>");
574}
575
576bool
Sean Callananc0492742011-05-23 21:40:23 +0000577IRForTarget::RewriteObjCConstString (llvm::GlobalVariable *ns_str,
Greg Clayton3c7feb42010-11-19 01:05:25 +0000578 llvm::GlobalVariable *cstr,
579 Instruction *FirstEntryInstruction)
Sean Callanan6ba533e2010-11-17 23:00:36 +0000580{
581 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
582
Sean Callananc0492742011-05-23 21:40:23 +0000583 const Type *ns_str_ty = ns_str->getType();
584
585 const Type *i8_ptr_ty = Type::getInt8PtrTy(m_module->getContext());
586 const IntegerType *intptr_ty = Type::getIntNTy(m_module->getContext(),
587 (m_module->getPointerSize() == Module::Pointer64) ? 64 : 32);
588 const Type *i32_ty = Type::getInt32Ty(m_module->getContext());
589 const Type *i8_ty = Type::getInt8Ty(m_module->getContext());
Sean Callanan6ba533e2010-11-17 23:00:36 +0000590
591 if (!m_CFStringCreateWithBytes)
592 {
593 lldb::addr_t CFStringCreateWithBytes_addr;
594
595 static lldb_private::ConstString g_CFStringCreateWithBytes_str ("CFStringCreateWithBytes");
596
597 if (!m_decl_map->GetFunctionAddress (g_CFStringCreateWithBytes_str, CFStringCreateWithBytes_addr))
598 {
599 if (log)
600 log->PutCString("Couldn't find CFStringCreateWithBytes in the target");
601
Sean Callanan97c924e2011-01-27 01:07:04 +0000602 if (m_error_stream)
603 m_error_stream->Printf("Error [IRForTarget]: Rewriting an Objective-C constant string requires CFStringCreateWithBytes\n");
604
Sean Callanan6ba533e2010-11-17 23:00:36 +0000605 return false;
606 }
607
608 if (log)
609 log->Printf("Found CFStringCreateWithBytes at 0x%llx", CFStringCreateWithBytes_addr);
610
611 // Build the function type:
612 //
613 // CFStringRef CFStringCreateWithBytes (
614 // CFAllocatorRef alloc,
615 // const UInt8 *bytes,
616 // CFIndex numBytes,
617 // CFStringEncoding encoding,
618 // Boolean isExternalRepresentation
619 // );
620 //
621 // We make the following substitutions:
622 //
623 // CFStringRef -> i8*
624 // CFAllocatorRef -> i8*
625 // UInt8 * -> i8*
626 // CFIndex -> long (i32 or i64, as appropriate; we ask the module for its pointer size for now)
627 // CFStringEncoding -> i32
628 // Boolean -> i8
629
630 std::vector <const Type *> CFSCWB_arg_types;
631 CFSCWB_arg_types.push_back(i8_ptr_ty);
632 CFSCWB_arg_types.push_back(i8_ptr_ty);
633 CFSCWB_arg_types.push_back(intptr_ty);
634 CFSCWB_arg_types.push_back(i32_ty);
635 CFSCWB_arg_types.push_back(i8_ty);
Sean Callananc0492742011-05-23 21:40:23 +0000636 llvm::Type *CFSCWB_ty = FunctionType::get(ns_str_ty, CFSCWB_arg_types, false);
Sean Callanan6ba533e2010-11-17 23:00:36 +0000637
638 // Build the constant containing the pointer to the function
639 PointerType *CFSCWB_ptr_ty = PointerType::getUnqual(CFSCWB_ty);
640 Constant *CFSCWB_addr_int = ConstantInt::get(intptr_ty, CFStringCreateWithBytes_addr, false);
641 m_CFStringCreateWithBytes = ConstantExpr::getIntToPtr(CFSCWB_addr_int, CFSCWB_ptr_ty);
642 }
643
Sean Callanan0ece5262011-02-10 22:17:53 +0000644 ConstantArray *string_array;
645
646 if (cstr)
647 string_array = dyn_cast<ConstantArray>(cstr->getInitializer());
648 else
649 string_array = NULL;
Sean Callanan6ba533e2010-11-17 23:00:36 +0000650
651 SmallVector <Value*, 5> CFSCWB_arguments;
652
653 Constant *alloc_arg = Constant::getNullValue(i8_ptr_ty);
Sean Callanan0ece5262011-02-10 22:17:53 +0000654 Constant *bytes_arg = cstr ? ConstantExpr::getBitCast(cstr, i8_ptr_ty) : Constant::getNullValue(i8_ptr_ty);
655 Constant *numBytes_arg = ConstantInt::get(intptr_ty, cstr ? string_array->getType()->getNumElements() - 1 : 0, false);
Sean Callanan6ba533e2010-11-17 23:00:36 +0000656 Constant *encoding_arg = ConstantInt::get(i32_ty, 0x0600, false); /* 0x0600 is kCFStringEncodingASCII */
657 Constant *isExternal_arg = ConstantInt::get(i8_ty, 0x0, false); /* 0x0 is false */
658
659 CFSCWB_arguments.push_back(alloc_arg);
660 CFSCWB_arguments.push_back(bytes_arg);
661 CFSCWB_arguments.push_back(numBytes_arg);
662 CFSCWB_arguments.push_back(encoding_arg);
663 CFSCWB_arguments.push_back(isExternal_arg);
664
665 CallInst *CFSCWB_call = CallInst::Create(m_CFStringCreateWithBytes,
666 CFSCWB_arguments.begin(),
667 CFSCWB_arguments.end(),
668 "CFStringCreateWithBytes",
669 FirstEntryInstruction);
Sean Callananae71e302010-11-18 22:21:58 +0000670
Greg Clayton3c7feb42010-11-19 01:05:25 +0000671 if (!UnfoldConstant(ns_str, CFSCWB_call, FirstEntryInstruction))
Sean Callanan6ba533e2010-11-17 23:00:36 +0000672 {
673 if (log)
674 log->PutCString("Couldn't replace the NSString with the result of the call");
675
Sean Callanan97c924e2011-01-27 01:07:04 +0000676 if (m_error_stream)
677 m_error_stream->Printf("Error [IRForTarget]: Couldn't replace an Objective-C constant string with a dynamic string\n");
678
Sean Callanan6ba533e2010-11-17 23:00:36 +0000679 return false;
680 }
681
Greg Clayton3c7feb42010-11-19 01:05:25 +0000682 ns_str->eraseFromParent();
Sean Callanan6ba533e2010-11-17 23:00:36 +0000683
684 return true;
685}
686
687bool
Sean Callananc0492742011-05-23 21:40:23 +0000688IRForTarget::RewriteObjCConstStrings(Function &llvm_function)
Sean Callanan6ba533e2010-11-17 23:00:36 +0000689{
690 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
691
Sean Callananc0492742011-05-23 21:40:23 +0000692 ValueSymbolTable& value_symbol_table = m_module->getValueSymbolTable();
Sean Callanan6ba533e2010-11-17 23:00:36 +0000693
Greg Clayton3c7feb42010-11-19 01:05:25 +0000694 BasicBlock &entry_block(llvm_function.getEntryBlock());
Sean Callanan6ba533e2010-11-17 23:00:36 +0000695 Instruction *FirstEntryInstruction(entry_block.getFirstNonPHIOrDbg());
696
697 if (!FirstEntryInstruction)
698 {
699 if (log)
700 log->PutCString("Couldn't find first instruction for rewritten Objective-C strings");
701
Sean Callanan97c924e2011-01-27 01:07:04 +0000702 if (m_error_stream)
703 m_error_stream->Printf("Internal error [IRForTarget]: Couldn't find the location for calls to CFStringCreateWithBytes\n");
704
Sean Callanan6ba533e2010-11-17 23:00:36 +0000705 return false;
706 }
707
708 for (ValueSymbolTable::iterator vi = value_symbol_table.begin(), ve = value_symbol_table.end();
709 vi != ve;
710 ++vi)
711 {
712 if (strstr(vi->first(), "_unnamed_cfstring_"))
713 {
714 Value *nsstring_value = vi->second;
715
716 GlobalVariable *nsstring_global = dyn_cast<GlobalVariable>(nsstring_value);
717
718 if (!nsstring_global)
719 {
720 if (log)
721 log->PutCString("NSString variable is not a GlobalVariable");
Sean Callanan97c924e2011-01-27 01:07:04 +0000722
723 if (m_error_stream)
724 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string is not a global variable\n");
725
Sean Callanan6ba533e2010-11-17 23:00:36 +0000726 return false;
727 }
728
729 if (!nsstring_global->hasInitializer())
730 {
731 if (log)
732 log->PutCString("NSString variable does not have an initializer");
Sean Callanan97c924e2011-01-27 01:07:04 +0000733
734 if (m_error_stream)
735 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string does not have an initializer\n");
736
Sean Callanan6ba533e2010-11-17 23:00:36 +0000737 return false;
738 }
739
740 ConstantStruct *nsstring_struct = dyn_cast<ConstantStruct>(nsstring_global->getInitializer());
741
742 if (!nsstring_struct)
743 {
744 if (log)
745 log->PutCString("NSString variable's initializer is not a ConstantStruct");
Sean Callanan97c924e2011-01-27 01:07:04 +0000746
747 if (m_error_stream)
748 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string is not a structure constant\n");
749
Sean Callanan6ba533e2010-11-17 23:00:36 +0000750 return false;
751 }
752
753 // We expect the following structure:
754 //
755 // struct {
756 // int *isa;
757 // int flags;
758 // char *str;
759 // long length;
760 // };
761
762 if (nsstring_struct->getNumOperands() != 4)
763 {
764 if (log)
765 log->Printf("NSString variable's initializer structure has an unexpected number of members. Should be 4, is %d", nsstring_struct->getNumOperands());
Sean Callanan97c924e2011-01-27 01:07:04 +0000766
767 if (m_error_stream)
768 m_error_stream->Printf("Internal error [IRForTarget]: The struct for an Objective-C constant string is not as expected\n");
769
Sean Callanan6ba533e2010-11-17 23:00:36 +0000770 return false;
771 }
772
773 Constant *nsstring_member = nsstring_struct->getOperand(2);
774
775 if (!nsstring_member)
776 {
777 if (log)
778 log->PutCString("NSString initializer's str element was empty");
Sean Callanan97c924e2011-01-27 01:07:04 +0000779
780 if (m_error_stream)
781 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string does not have a string initializer\n");
782
Sean Callanan6ba533e2010-11-17 23:00:36 +0000783 return false;
784 }
785
786 ConstantExpr *nsstring_expr = dyn_cast<ConstantExpr>(nsstring_member);
787
788 if (!nsstring_expr)
789 {
790 if (log)
791 log->PutCString("NSString initializer's str element is not a ConstantExpr");
Sean Callanan97c924e2011-01-27 01:07:04 +0000792
793 if (m_error_stream)
794 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string's string initializer is not constant\n");
795
Sean Callanan6ba533e2010-11-17 23:00:36 +0000796 return false;
797 }
798
799 if (nsstring_expr->getOpcode() != Instruction::GetElementPtr)
800 {
801 if (log)
802 log->Printf("NSString initializer's str element is not a GetElementPtr expression, it's a %s", nsstring_expr->getOpcodeName());
Sean Callanan97c924e2011-01-27 01:07:04 +0000803
804 if (m_error_stream)
805 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string's string initializer is not an array\n");
806
Sean Callanan6ba533e2010-11-17 23:00:36 +0000807 return false;
808 }
809
810 Constant *nsstring_cstr = nsstring_expr->getOperand(0);
811
812 GlobalVariable *cstr_global = dyn_cast<GlobalVariable>(nsstring_cstr);
813
814 if (!cstr_global)
815 {
816 if (log)
817 log->PutCString("NSString initializer's str element is not a GlobalVariable");
Sean Callanan97c924e2011-01-27 01:07:04 +0000818
819 if (m_error_stream)
820 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string's string initializer doesn't point to a global\n");
Sean Callanan65e2aee2010-11-20 02:06:01 +0000821
Sean Callanan6ba533e2010-11-17 23:00:36 +0000822 return false;
823 }
824
825 if (!cstr_global->hasInitializer())
826 {
827 if (log)
828 log->PutCString("NSString initializer's str element does not have an initializer");
Sean Callanan97c924e2011-01-27 01:07:04 +0000829
830 if (m_error_stream)
831 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string's string initializer doesn't point to initialized data\n");
832
Sean Callanan6ba533e2010-11-17 23:00:36 +0000833 return false;
834 }
Sean Callanan0ece5262011-02-10 22:17:53 +0000835
836 /*
Sean Callanan6ba533e2010-11-17 23:00:36 +0000837 if (!cstr_array)
838 {
839 if (log)
840 log->PutCString("NSString initializer's str element is not a ConstantArray");
Sean Callanan97c924e2011-01-27 01:07:04 +0000841
842 if (m_error_stream)
843 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string's string initializer doesn't point to an array\n");
844
Sean Callanan6ba533e2010-11-17 23:00:36 +0000845 return false;
846 }
847
848 if (!cstr_array->isCString())
849 {
850 if (log)
851 log->PutCString("NSString initializer's str element is not a C string array");
Sean Callanan97c924e2011-01-27 01:07:04 +0000852
853 if (m_error_stream)
854 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string's string initializer doesn't point to a C string\n");
855
Sean Callanan6ba533e2010-11-17 23:00:36 +0000856 return false;
857 }
Sean Callanan0ece5262011-02-10 22:17:53 +0000858 */
859
860 ConstantArray *cstr_array = dyn_cast<ConstantArray>(cstr_global->getInitializer());
Sean Callanan6ba533e2010-11-17 23:00:36 +0000861
862 if (log)
Sean Callanan0ece5262011-02-10 22:17:53 +0000863 {
864 if (cstr_array)
865 log->Printf("Found NSString constant %s, which contains \"%s\"", vi->first(), cstr_array->getAsString().c_str());
866 else
867 log->Printf("Found NSString constant %s, which contains \"\"", vi->first());
868 }
869
870 if (!cstr_array)
871 cstr_global = NULL;
Sean Callanan6ba533e2010-11-17 23:00:36 +0000872
Sean Callananc0492742011-05-23 21:40:23 +0000873 if (!RewriteObjCConstString(nsstring_global, cstr_global, FirstEntryInstruction))
Sean Callanan97c924e2011-01-27 01:07:04 +0000874 {
Sean Callanan6ba533e2010-11-17 23:00:36 +0000875 if (log)
876 log->PutCString("Error rewriting the constant string");
Sean Callanan97c924e2011-01-27 01:07:04 +0000877
878 // We don't print an error message here because RewriteObjCConstString has done so for us.
879
Sean Callanan6ba533e2010-11-17 23:00:36 +0000880 return false;
881 }
Sean Callanan6ba533e2010-11-17 23:00:36 +0000882 }
883 }
884
885 for (ValueSymbolTable::iterator vi = value_symbol_table.begin(), ve = value_symbol_table.end();
886 vi != ve;
887 ++vi)
888 {
889 if (!strcmp(vi->first(), "__CFConstantStringClassReference"))
890 {
891 GlobalVariable *gv = dyn_cast<GlobalVariable>(vi->second);
892
893 if (!gv)
894 {
895 if (log)
896 log->PutCString("__CFConstantStringClassReference is not a global variable");
Sean Callanan97c924e2011-01-27 01:07:04 +0000897
898 if (m_error_stream)
899 m_error_stream->Printf("Internal error [IRForTarget]: Found a CFConstantStringClassReference, but it is not a global object\n");
900
Sean Callanan6ba533e2010-11-17 23:00:36 +0000901 return false;
902 }
903
904 gv->eraseFromParent();
905
906 break;
907 }
908 }
909
910 return true;
911}
912
Greg Clayton3c7feb42010-11-19 01:05:25 +0000913static bool IsObjCSelectorRef (Value *value)
Sean Callananf5857a02010-07-31 01:32:05 +0000914{
Greg Clayton3c7feb42010-11-19 01:05:25 +0000915 GlobalVariable *global_variable = dyn_cast<GlobalVariable>(value);
Sean Callananf5857a02010-07-31 01:32:05 +0000916
Greg Clayton3c7feb42010-11-19 01:05:25 +0000917 if (!global_variable || !global_variable->hasName() || !global_variable->getName().startswith("\01L_OBJC_SELECTOR_REFERENCES_"))
Sean Callananf5857a02010-07-31 01:32:05 +0000918 return false;
919
920 return true;
921}
922
Sean Callanan97c924e2011-01-27 01:07:04 +0000923// This function does not report errors; its callers are responsible.
Sean Callananf5857a02010-07-31 01:32:05 +0000924bool
Sean Callananc0492742011-05-23 21:40:23 +0000925IRForTarget::RewriteObjCSelector (Instruction* selector_load)
Sean Callananf5857a02010-07-31 01:32:05 +0000926{
Greg Claytone005f2c2010-11-06 01:53:30 +0000927 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callananf5857a02010-07-31 01:32:05 +0000928
929 LoadInst *load = dyn_cast<LoadInst>(selector_load);
930
931 if (!load)
932 return false;
933
934 // Unpack the message name from the selector. In LLVM IR, an objc_msgSend gets represented as
935 //
936 // %tmp = load i8** @"\01L_OBJC_SELECTOR_REFERENCES_" ; <i8*>
937 // %call = call i8* (i8*, i8*, ...)* @objc_msgSend(i8* %obj, i8* %tmp, ...) ; <i8*>
938 //
939 // where %obj is the object pointer and %tmp is the selector.
940 //
Greg Clayton3c7feb42010-11-19 01:05:25 +0000941 // @"\01L_OBJC_SELECTOR_REFERENCES_" is a pointer to a character array called @"\01L_OBJC_llvm_moduleETH_VAR_NAllvm_moduleE_".
942 // @"\01L_OBJC_llvm_moduleETH_VAR_NAllvm_moduleE_" contains the string.
Sean Callananf5857a02010-07-31 01:32:05 +0000943
944 // Find the pointer's initializer (a ConstantExpr with opcode GetElementPtr) and get the string from its target
945
946 GlobalVariable *_objc_selector_references_ = dyn_cast<GlobalVariable>(load->getPointerOperand());
947
948 if (!_objc_selector_references_ || !_objc_selector_references_->hasInitializer())
949 return false;
950
951 Constant *osr_initializer = _objc_selector_references_->getInitializer();
952
953 ConstantExpr *osr_initializer_expr = dyn_cast<ConstantExpr>(osr_initializer);
954
955 if (!osr_initializer_expr || osr_initializer_expr->getOpcode() != Instruction::GetElementPtr)
956 return false;
957
958 Value *osr_initializer_base = osr_initializer_expr->getOperand(0);
959
960 if (!osr_initializer_base)
961 return false;
962
963 // Find the string's initializer (a ConstantArray) and get the string from it
964
965 GlobalVariable *_objc_meth_var_name_ = dyn_cast<GlobalVariable>(osr_initializer_base);
966
967 if (!_objc_meth_var_name_ || !_objc_meth_var_name_->hasInitializer())
968 return false;
969
970 Constant *omvn_initializer = _objc_meth_var_name_->getInitializer();
971
972 ConstantArray *omvn_initializer_array = dyn_cast<ConstantArray>(omvn_initializer);
973
974 if (!omvn_initializer_array->isString())
975 return false;
976
977 std::string omvn_initializer_string = omvn_initializer_array->getAsString();
978
979 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +0000980 log->Printf("Found Objective-C selector reference \"%s\"", omvn_initializer_string.c_str());
Sean Callananf5857a02010-07-31 01:32:05 +0000981
982 // Construct a call to sel_registerName
983
984 if (!m_sel_registerName)
985 {
Greg Claytonb5037af2010-11-15 01:47:11 +0000986 lldb::addr_t sel_registerName_addr;
Sean Callananf5857a02010-07-31 01:32:05 +0000987
Greg Clayton8de27c72010-10-15 22:48:33 +0000988 static lldb_private::ConstString g_sel_registerName_str ("sel_registerName");
Greg Claytonb5037af2010-11-15 01:47:11 +0000989 if (!m_decl_map->GetFunctionAddress (g_sel_registerName_str, sel_registerName_addr))
Sean Callananf5857a02010-07-31 01:32:05 +0000990 return false;
991
Sean Callananc2c6f772010-10-26 00:31:56 +0000992 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +0000993 log->Printf("Found sel_registerName at 0x%llx", sel_registerName_addr);
Sean Callananc2c6f772010-10-26 00:31:56 +0000994
Sean Callananf5857a02010-07-31 01:32:05 +0000995 // Build the function type: struct objc_selector *sel_registerName(uint8_t*)
996
997 // The below code would be "more correct," but in actuality what's required is uint8_t*
Sean Callananc0492742011-05-23 21:40:23 +0000998 //Type *sel_type = StructType::get(m_module->getContext());
Sean Callananf5857a02010-07-31 01:32:05 +0000999 //Type *sel_ptr_type = PointerType::getUnqual(sel_type);
Sean Callananc0492742011-05-23 21:40:23 +00001000 const Type *sel_ptr_type = Type::getInt8PtrTy(m_module->getContext());
Sean Callananf5857a02010-07-31 01:32:05 +00001001
1002 std::vector <const Type *> srN_arg_types;
Sean Callananc0492742011-05-23 21:40:23 +00001003 srN_arg_types.push_back(Type::getInt8PtrTy(m_module->getContext()));
Sean Callananf5857a02010-07-31 01:32:05 +00001004 llvm::Type *srN_type = FunctionType::get(sel_ptr_type, srN_arg_types, false);
1005
1006 // Build the constant containing the pointer to the function
Sean Callananc0492742011-05-23 21:40:23 +00001007 const IntegerType *intptr_ty = Type::getIntNTy(m_module->getContext(),
1008 (m_module->getPointerSize() == Module::Pointer64) ? 64 : 32);
Sean Callananf5857a02010-07-31 01:32:05 +00001009 PointerType *srN_ptr_ty = PointerType::getUnqual(srN_type);
Greg Claytonb5037af2010-11-15 01:47:11 +00001010 Constant *srN_addr_int = ConstantInt::get(intptr_ty, sel_registerName_addr, false);
Sean Callananf5857a02010-07-31 01:32:05 +00001011 m_sel_registerName = ConstantExpr::getIntToPtr(srN_addr_int, srN_ptr_ty);
1012 }
1013
1014 SmallVector <Value*, 1> srN_arguments;
1015
Sean Callananc0492742011-05-23 21:40:23 +00001016 Constant *omvn_pointer = ConstantExpr::getBitCast(_objc_meth_var_name_, Type::getInt8PtrTy(m_module->getContext()));
Sean Callananf5857a02010-07-31 01:32:05 +00001017
1018 srN_arguments.push_back(omvn_pointer);
1019
1020 CallInst *srN_call = CallInst::Create(m_sel_registerName,
1021 srN_arguments.begin(),
1022 srN_arguments.end(),
Sean Callanan6ba533e2010-11-17 23:00:36 +00001023 "sel_registerName",
Sean Callananf5857a02010-07-31 01:32:05 +00001024 selector_load);
1025
1026 // Replace the load with the call in all users
1027
1028 selector_load->replaceAllUsesWith(srN_call);
1029
1030 selector_load->eraseFromParent();
1031
1032 return true;
1033}
1034
1035bool
Sean Callananc0492742011-05-23 21:40:23 +00001036IRForTarget::RewriteObjCSelectors (BasicBlock &basic_block)
Sean Callananf5857a02010-07-31 01:32:05 +00001037{
Greg Claytone005f2c2010-11-06 01:53:30 +00001038 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callananf5857a02010-07-31 01:32:05 +00001039
1040 BasicBlock::iterator ii;
1041
1042 typedef SmallVector <Instruction*, 2> InstrList;
1043 typedef InstrList::iterator InstrIterator;
1044
1045 InstrList selector_loads;
1046
Greg Clayton3c7feb42010-11-19 01:05:25 +00001047 for (ii = basic_block.begin();
1048 ii != basic_block.end();
Sean Callananf5857a02010-07-31 01:32:05 +00001049 ++ii)
1050 {
1051 Instruction &inst = *ii;
1052
1053 if (LoadInst *load = dyn_cast<LoadInst>(&inst))
Greg Clayton3c7feb42010-11-19 01:05:25 +00001054 if (IsObjCSelectorRef(load->getPointerOperand()))
Sean Callananf5857a02010-07-31 01:32:05 +00001055 selector_loads.push_back(&inst);
1056 }
1057
1058 InstrIterator iter;
1059
1060 for (iter = selector_loads.begin();
1061 iter != selector_loads.end();
1062 ++iter)
1063 {
Sean Callananc0492742011-05-23 21:40:23 +00001064 if (!RewriteObjCSelector(*iter))
Sean Callananf5857a02010-07-31 01:32:05 +00001065 {
Sean Callanan97c924e2011-01-27 01:07:04 +00001066 if (m_error_stream)
1067 m_error_stream->Printf("Internal error [IRForTarget]: Couldn't change a static reference to an Objective-C selector to a dynamic reference\n");
1068
Sean Callananf5857a02010-07-31 01:32:05 +00001069 if(log)
1070 log->PutCString("Couldn't rewrite a reference to an Objective-C selector");
Sean Callanan97c924e2011-01-27 01:07:04 +00001071
Sean Callananf5857a02010-07-31 01:32:05 +00001072 return false;
1073 }
1074 }
1075
1076 return true;
1077}
1078
Sean Callanan97c924e2011-01-27 01:07:04 +00001079// This function does not report errors; its callers are responsible.
Sean Callanana48fe162010-08-11 03:57:18 +00001080bool
Sean Callananc0492742011-05-23 21:40:23 +00001081IRForTarget::RewritePersistentAlloc (llvm::Instruction *persistent_alloc)
Sean Callanana48fe162010-08-11 03:57:18 +00001082{
Sean Callanan97678d12011-01-13 21:23:32 +00001083 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
1084
Sean Callanana48fe162010-08-11 03:57:18 +00001085 AllocaInst *alloc = dyn_cast<AllocaInst>(persistent_alloc);
1086
1087 MDNode *alloc_md = alloc->getMetadata("clang.decl.ptr");
1088
1089 if (!alloc_md || !alloc_md->getNumOperands())
1090 return false;
1091
1092 ConstantInt *constant_int = dyn_cast<ConstantInt>(alloc_md->getOperand(0));
1093
1094 if (!constant_int)
1095 return false;
1096
1097 // We attempt to register this as a new persistent variable with the DeclMap.
1098
1099 uintptr_t ptr = constant_int->getZExtValue();
1100
Sean Callanan82b74c82010-08-12 01:56:52 +00001101 clang::VarDecl *decl = reinterpret_cast<clang::VarDecl *>(ptr);
Sean Callanana48fe162010-08-11 03:57:18 +00001102
Sean Callanan82b74c82010-08-12 01:56:52 +00001103 lldb_private::TypeFromParser result_decl_type (decl->getType().getAsOpaquePtr(),
1104 &decl->getASTContext());
1105
Greg Clayton8de27c72010-10-15 22:48:33 +00001106 StringRef decl_name (decl->getName());
1107 lldb_private::ConstString persistent_variable_name (decl_name.data(), decl_name.size());
Sean Callanan6a925532011-01-13 08:53:35 +00001108 if (!m_decl_map->AddPersistentVariable(decl, persistent_variable_name, result_decl_type, false, false))
Sean Callanana48fe162010-08-11 03:57:18 +00001109 return false;
1110
Sean Callananc0492742011-05-23 21:40:23 +00001111 GlobalVariable *persistent_global = new GlobalVariable((*m_module),
Sean Callanan97678d12011-01-13 21:23:32 +00001112 alloc->getType(),
Sean Callanana48fe162010-08-11 03:57:18 +00001113 false, /* not constant */
1114 GlobalValue::ExternalLinkage,
1115 NULL, /* no initializer */
1116 alloc->getName().str().c_str());
1117
1118 // What we're going to do here is make believe this was a regular old external
1119 // variable. That means we need to make the metadata valid.
1120
Sean Callananc0492742011-05-23 21:40:23 +00001121 NamedMDNode *named_metadata = m_module->getNamedMetadata("clang.global.decl.ptrs");
Sean Callanana48fe162010-08-11 03:57:18 +00001122
1123 llvm::Value* values[2];
1124 values[0] = persistent_global;
1125 values[1] = constant_int;
Sean Callanan0de254a2011-05-15 22:34:38 +00001126
1127 ArrayRef<llvm::Value*> value_ref(values, 2);
Sean Callanana48fe162010-08-11 03:57:18 +00001128
Sean Callananc0492742011-05-23 21:40:23 +00001129 MDNode *persistent_global_md = MDNode::get(m_module->getContext(), value_ref);
Sean Callanana48fe162010-08-11 03:57:18 +00001130 named_metadata->addOperand(persistent_global_md);
1131
Sean Callanan97678d12011-01-13 21:23:32 +00001132 // Now, since the variable is a pointer variable, we will drop in a load of that
1133 // pointer variable.
1134
1135 LoadInst *persistent_load = new LoadInst (persistent_global, "", alloc);
1136
1137 if (log)
1138 log->Printf("Replacing \"%s\" with \"%s\"",
1139 PrintValue(alloc).c_str(),
1140 PrintValue(persistent_load).c_str());
1141
1142 alloc->replaceAllUsesWith(persistent_load);
Sean Callanana48fe162010-08-11 03:57:18 +00001143 alloc->eraseFromParent();
1144
1145 return true;
1146}
1147
1148bool
Sean Callananc0492742011-05-23 21:40:23 +00001149IRForTarget::RewritePersistentAllocs(llvm::BasicBlock &basic_block)
Sean Callanana48fe162010-08-11 03:57:18 +00001150{
Sean Callanane8a59a82010-09-13 21:34:21 +00001151 if (!m_resolve_vars)
1152 return true;
1153
Greg Claytone005f2c2010-11-06 01:53:30 +00001154 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanana48fe162010-08-11 03:57:18 +00001155
1156 BasicBlock::iterator ii;
1157
1158 typedef SmallVector <Instruction*, 2> InstrList;
1159 typedef InstrList::iterator InstrIterator;
1160
1161 InstrList pvar_allocs;
1162
Greg Clayton3c7feb42010-11-19 01:05:25 +00001163 for (ii = basic_block.begin();
1164 ii != basic_block.end();
Sean Callanana48fe162010-08-11 03:57:18 +00001165 ++ii)
1166 {
1167 Instruction &inst = *ii;
1168
1169 if (AllocaInst *alloc = dyn_cast<AllocaInst>(&inst))
Sean Callanan237e4742011-01-21 22:30:25 +00001170 {
1171 llvm::StringRef alloc_name = alloc->getName();
1172
1173 if (alloc_name.startswith("$") &&
1174 !alloc_name.startswith("$__lldb"))
1175 {
1176 if (alloc_name.find_first_of("0123456789") == 1)
1177 {
1178 if (log)
1179 log->Printf("Rejecting a numeric persistent variable.");
1180
Sean Callanan97c924e2011-01-27 01:07:04 +00001181 if (m_error_stream)
1182 m_error_stream->Printf("Error [IRForTarget]: Names starting with $0, $1, ... are reserved for use as result names\n");
1183
Sean Callanan237e4742011-01-21 22:30:25 +00001184 return false;
1185 }
1186
Sean Callanana48fe162010-08-11 03:57:18 +00001187 pvar_allocs.push_back(alloc);
Sean Callanan237e4742011-01-21 22:30:25 +00001188 }
1189 }
Sean Callanana48fe162010-08-11 03:57:18 +00001190 }
1191
1192 InstrIterator iter;
1193
1194 for (iter = pvar_allocs.begin();
1195 iter != pvar_allocs.end();
1196 ++iter)
1197 {
Sean Callananc0492742011-05-23 21:40:23 +00001198 if (!RewritePersistentAlloc(*iter))
Sean Callanana48fe162010-08-11 03:57:18 +00001199 {
Sean Callanan97c924e2011-01-27 01:07:04 +00001200 if (m_error_stream)
1201 m_error_stream->Printf("Internal error [IRForTarget]: Couldn't rewrite the creation of a persistent variable\n");
1202
Sean Callanana48fe162010-08-11 03:57:18 +00001203 if(log)
1204 log->PutCString("Couldn't rewrite the creation of a persistent variable");
Sean Callanan97c924e2011-01-27 01:07:04 +00001205
Sean Callanana48fe162010-08-11 03:57:18 +00001206 return false;
1207 }
1208 }
1209
1210 return true;
1211}
1212
Sean Callanan97c924e2011-01-27 01:07:04 +00001213// This function does not report errors; its callers are responsible.
Sean Callanan8bce6652010-07-13 21:41:46 +00001214bool
Sean Callananc0492742011-05-23 21:40:23 +00001215IRForTarget::MaybeHandleVariable (Value *llvm_value_ptr)
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00001216{
Greg Claytone005f2c2010-11-06 01:53:30 +00001217 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan48443652010-12-02 19:47:57 +00001218
1219 if (log)
Sean Callananb9f09a62010-12-06 22:16:55 +00001220 log->Printf("MaybeHandleVariable (%s)", PrintValue(llvm_value_ptr).c_str());
Sean Callananf5857a02010-07-31 01:32:05 +00001221
Greg Clayton8de27c72010-10-15 22:48:33 +00001222 if (ConstantExpr *constant_expr = dyn_cast<ConstantExpr>(llvm_value_ptr))
Sean Callananbc2928a2010-08-03 00:23:29 +00001223 {
Sean Callanan93a4b1a2010-08-04 01:02:13 +00001224 switch (constant_expr->getOpcode())
Sean Callananbc2928a2010-08-03 00:23:29 +00001225 {
Sean Callanan93a4b1a2010-08-04 01:02:13 +00001226 default:
1227 break;
1228 case Instruction::GetElementPtr:
1229 case Instruction::BitCast:
Sean Callananbc2928a2010-08-03 00:23:29 +00001230 Value *s = constant_expr->getOperand(0);
Sean Callananc0492742011-05-23 21:40:23 +00001231 if (!MaybeHandleVariable(s))
Sean Callanan48443652010-12-02 19:47:57 +00001232 return false;
Sean Callananbc2928a2010-08-03 00:23:29 +00001233 }
1234 }
Sean Callananf921cf52010-12-03 19:51:05 +00001235 else if (GlobalVariable *global_variable = dyn_cast<GlobalVariable>(llvm_value_ptr))
Sean Callananf5857a02010-07-31 01:32:05 +00001236 {
Sean Callananc0492742011-05-23 21:40:23 +00001237 clang::NamedDecl *named_decl = DeclForGlobal(global_variable);
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00001238
Sean Callananf5857a02010-07-31 01:32:05 +00001239 if (!named_decl)
1240 {
Greg Clayton3c7feb42010-11-19 01:05:25 +00001241 if (IsObjCSelectorRef(llvm_value_ptr))
Sean Callananf5857a02010-07-31 01:32:05 +00001242 return true;
1243
Sean Callanan7cd46742010-12-06 00:56:39 +00001244 if (!global_variable->hasExternalLinkage())
1245 return true;
1246
Sean Callananf5857a02010-07-31 01:32:05 +00001247 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +00001248 log->Printf("Found global variable \"%s\" without metadata", global_variable->getName().str().c_str());
Sean Callanan97c924e2011-01-27 01:07:04 +00001249
Sean Callananf5857a02010-07-31 01:32:05 +00001250 return false;
1251 }
1252
Greg Clayton8de27c72010-10-15 22:48:33 +00001253 std::string name (named_decl->getName().str());
Sean Callanan810f22d2010-07-16 00:09:46 +00001254
Sean Callanan771131d2010-09-30 21:18:25 +00001255 void *opaque_type = NULL;
Sean Callananf328c9f2010-07-20 23:31:16 +00001256 clang::ASTContext *ast_context = NULL;
Sean Callanan810f22d2010-07-16 00:09:46 +00001257
1258 if (clang::ValueDecl *value_decl = dyn_cast<clang::ValueDecl>(named_decl))
Sean Callananf328c9f2010-07-20 23:31:16 +00001259 {
Sean Callanan771131d2010-09-30 21:18:25 +00001260 opaque_type = value_decl->getType().getAsOpaquePtr();
Sean Callananf328c9f2010-07-20 23:31:16 +00001261 ast_context = &value_decl->getASTContext();
1262 }
Sean Callanan810f22d2010-07-16 00:09:46 +00001263 else
Sean Callananf328c9f2010-07-20 23:31:16 +00001264 {
Sean Callanan810f22d2010-07-16 00:09:46 +00001265 return false;
Sean Callananf328c9f2010-07-20 23:31:16 +00001266 }
Sean Callanan771131d2010-09-30 21:18:25 +00001267
Sean Callanan6a925532011-01-13 08:53:35 +00001268 clang::QualType qual_type;
1269 const Type *value_type;
1270
Sean Callanan97678d12011-01-13 21:23:32 +00001271 if (name[0] == '$')
Sean Callanan6a925532011-01-13 08:53:35 +00001272 {
1273 // The $__lldb_expr_result name indicates the the return value has allocated as
1274 // a static variable. Per the comment at ASTResultSynthesizer::SynthesizeBodyResult,
1275 // accesses to this static variable need to be redirected to the result of dereferencing
1276 // a pointer that is passed in as one of the arguments.
1277 //
1278 // Consequently, when reporting the size of the type, we report a pointer type pointing
1279 // to the type of $__lldb_expr_result, not the type itself.
Sean Callanan97678d12011-01-13 21:23:32 +00001280 //
1281 // We also do this for any user-declared persistent variables.
Sean Callananf328c9f2010-07-20 23:31:16 +00001282
Sean Callanan6a925532011-01-13 08:53:35 +00001283 qual_type = ast_context->getPointerType(clang::QualType::getFromOpaquePtr(opaque_type));
1284 value_type = PointerType::get(global_variable->getType(), 0);
1285 }
1286 else
1287 {
1288 qual_type = clang::QualType::getFromOpaquePtr(opaque_type);
1289 value_type = global_variable->getType();
1290 }
Sean Callanan771131d2010-09-30 21:18:25 +00001291
1292 size_t value_size = (ast_context->getTypeSize(qual_type) + 7) / 8;
1293 off_t value_alignment = (ast_context->getTypeAlign(qual_type) + 7) / 8;
Sean Callanan3aa7da52010-12-13 22:46:15 +00001294
Sean Callanan771131d2010-09-30 21:18:25 +00001295 if (log)
Sean Callanan97678d12011-01-13 21:23:32 +00001296 log->Printf("Type of \"%s\" is [clang \"%s\", llvm \"%s\"] [size %d, align %d]",
Sean Callanan771131d2010-09-30 21:18:25 +00001297 name.c_str(),
1298 qual_type.getAsString().c_str(),
1299 PrintType(value_type).c_str(),
1300 value_size,
1301 value_alignment);
Sean Callanan3aa7da52010-12-13 22:46:15 +00001302
Sean Callanan8bce6652010-07-13 21:41:46 +00001303
Sean Callanan8c127202010-08-23 23:09:38 +00001304 if (named_decl && !m_decl_map->AddValueToStruct(named_decl,
Greg Clayton8de27c72010-10-15 22:48:33 +00001305 lldb_private::ConstString (name.c_str()),
1306 llvm_value_ptr,
Sean Callananba992c52010-07-27 02:07:53 +00001307 value_size,
1308 value_alignment))
Sean Callanan8bce6652010-07-13 21:41:46 +00001309 return false;
1310 }
Sean Callananf3143b72010-12-03 03:02:31 +00001311 else if (dyn_cast<llvm::Function>(llvm_value_ptr))
Sean Callanan48443652010-12-02 19:47:57 +00001312 {
1313 if (log)
1314 log->Printf("Function pointers aren't handled right now");
1315
1316 return false;
1317 }
Sean Callanan8bce6652010-07-13 21:41:46 +00001318
1319 return true;
1320}
1321
Sean Callanan97c924e2011-01-27 01:07:04 +00001322// This function does not report errors; its callers are responsible.
Sean Callanan8bce6652010-07-13 21:41:46 +00001323bool
Sean Callananc0492742011-05-23 21:40:23 +00001324IRForTarget::HandleSymbol (Value *symbol)
Sean Callanan81974962011-05-08 02:21:26 +00001325{
Sean Callananc7674af2011-01-17 23:42:46 +00001326 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
1327
1328 lldb_private::ConstString name(symbol->getName().str().c_str());
1329
Greg Claytoncbc07cf2011-06-23 04:25:29 +00001330 lldb::addr_t symbol_addr = m_decl_map->GetSymbolAddress (name);
Sean Callananc7674af2011-01-17 23:42:46 +00001331
Greg Claytoncbc07cf2011-06-23 04:25:29 +00001332 if (symbol_addr == LLDB_INVALID_ADDRESS)
Sean Callananc7674af2011-01-17 23:42:46 +00001333 {
1334 if (log)
1335 log->Printf ("Symbol \"%s\" had no address", name.GetCString());
1336
1337 return false;
1338 }
1339
1340 if (log)
1341 log->Printf("Found \"%s\" at 0x%llx", name.GetCString(), symbol_addr);
1342
1343 const Type *symbol_type = symbol->getType();
1344
Sean Callananc0492742011-05-23 21:40:23 +00001345 const IntegerType *intptr_ty = Type::getIntNTy(m_module->getContext(),
1346 (m_module->getPointerSize() == Module::Pointer64) ? 64 : 32);
Sean Callananc7674af2011-01-17 23:42:46 +00001347
1348 Constant *symbol_addr_int = ConstantInt::get(intptr_ty, symbol_addr, false);
1349
1350 Value *symbol_addr_ptr = ConstantExpr::getIntToPtr(symbol_addr_int, symbol_type);
1351
1352 if (log)
1353 log->Printf("Replacing %s with %s", PrintValue(symbol).c_str(), PrintValue(symbol_addr_ptr).c_str());
1354
1355 symbol->replaceAllUsesWith(symbol_addr_ptr);
1356
1357 return true;
1358}
1359
1360bool
Sean Callananc0492742011-05-23 21:40:23 +00001361IRForTarget::MaybeHandleCallArguments (CallInst *Old)
Sean Callanandc27aba2010-10-05 22:26:43 +00001362{
Sean Callanan48443652010-12-02 19:47:57 +00001363 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
1364
1365 if (log)
1366 log->Printf("MaybeHandleCallArguments(%s)", PrintValue(Old).c_str());
Sean Callanandc27aba2010-10-05 22:26:43 +00001367
Sean Callanan6ba533e2010-11-17 23:00:36 +00001368 for (unsigned op_index = 0, num_ops = Old->getNumArgOperands();
Sean Callanandc27aba2010-10-05 22:26:43 +00001369 op_index < num_ops;
1370 ++op_index)
Sean Callananc0492742011-05-23 21:40:23 +00001371 if (!MaybeHandleVariable(Old->getArgOperand(op_index))) // conservatively believe that this is a store
Sean Callanan97c924e2011-01-27 01:07:04 +00001372 {
1373 if (m_error_stream)
1374 m_error_stream->Printf("Internal error [IRForTarget]: Couldn't rewrite one of the arguments of a function call.\n");
1375
Sean Callanandc27aba2010-10-05 22:26:43 +00001376 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00001377 }
1378
Sean Callanandc27aba2010-10-05 22:26:43 +00001379 return true;
1380}
1381
1382bool
Sean Callananc0492742011-05-23 21:40:23 +00001383IRForTarget::MaybeHandleCall (CallInst *llvm_call_inst)
Sean Callananba992c52010-07-27 02:07:53 +00001384{
Greg Claytone005f2c2010-11-06 01:53:30 +00001385 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callananba992c52010-07-27 02:07:53 +00001386
Greg Clayton8de27c72010-10-15 22:48:33 +00001387 Function *fun = llvm_call_inst->getCalledFunction();
Sean Callananba992c52010-07-27 02:07:53 +00001388
1389 if (fun == NULL)
Sean Callanan65af7342010-09-08 20:04:08 +00001390 {
Greg Clayton8de27c72010-10-15 22:48:33 +00001391 Value *val = llvm_call_inst->getCalledValue();
Sean Callanan65af7342010-09-08 20:04:08 +00001392
1393 ConstantExpr *const_expr = dyn_cast<ConstantExpr>(val);
Sean Callanand5b3c352011-01-27 04:42:51 +00001394 LoadInst *load_inst = dyn_cast<LoadInst>(val);
Sean Callanan65af7342010-09-08 20:04:08 +00001395
1396 if (const_expr && const_expr->getOpcode() == Instruction::BitCast)
1397 {
1398 fun = dyn_cast<Function>(const_expr->getOperand(0));
1399
1400 if (!fun)
Sean Callanan97c924e2011-01-27 01:07:04 +00001401 {
1402 if (m_error_stream)
1403 m_error_stream->Printf("Internal error [IRForTarget]: Called entity is a cast of something not a function\n");
1404
Sean Callanan48443652010-12-02 19:47:57 +00001405 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00001406 }
Sean Callanan65af7342010-09-08 20:04:08 +00001407 }
Sean Callananc4217a62010-12-06 23:53:20 +00001408 else if (const_expr && const_expr->getOpcode() == Instruction::IntToPtr)
1409 {
1410 return true; // already resolved
1411 }
Sean Callanand5b3c352011-01-27 04:42:51 +00001412 else if (load_inst)
1413 {
1414 return true; // virtual method call
1415 }
Sean Callanan65af7342010-09-08 20:04:08 +00001416 else
1417 {
Sean Callanan97c924e2011-01-27 01:07:04 +00001418 if (m_error_stream)
1419 m_error_stream->Printf("Internal error [IRForTarget]: Called entity is not a function\n");
1420
Sean Callanan48443652010-12-02 19:47:57 +00001421 return false;
Sean Callanan65af7342010-09-08 20:04:08 +00001422 }
1423 }
Sean Callananba992c52010-07-27 02:07:53 +00001424
Greg Clayton8de27c72010-10-15 22:48:33 +00001425 lldb_private::ConstString str;
Sean Callananc04743d2010-09-28 21:13:03 +00001426
Sean Callanan3cb1fd82010-09-28 23:55:00 +00001427 if (fun->isIntrinsic())
Sean Callananc04743d2010-09-28 21:13:03 +00001428 {
Sean Callanan3cb1fd82010-09-28 23:55:00 +00001429 Intrinsic::ID intrinsic_id = (Intrinsic::ID)fun->getIntrinsicID();
Sean Callananc04743d2010-09-28 21:13:03 +00001430
Sean Callanan3cb1fd82010-09-28 23:55:00 +00001431 switch (intrinsic_id)
1432 {
1433 default:
1434 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +00001435 log->Printf("Unresolved intrinsic \"%s\"", Intrinsic::getName(intrinsic_id).c_str());
Sean Callanan97c924e2011-01-27 01:07:04 +00001436
1437 if (m_error_stream)
1438 m_error_stream->Printf("Internal error [IRForTarget]: Call to unhandled compiler intrinsic '%s'\n", Intrinsic::getName(intrinsic_id).c_str());
1439
Sean Callanan3cb1fd82010-09-28 23:55:00 +00001440 return false;
1441 case Intrinsic::memcpy:
Greg Clayton8de27c72010-10-15 22:48:33 +00001442 {
1443 static lldb_private::ConstString g_memcpy_str ("memcpy");
1444 str = g_memcpy_str;
1445 }
Sean Callanan3cb1fd82010-09-28 23:55:00 +00001446 break;
1447 }
Sean Callananc04743d2010-09-28 21:13:03 +00001448
Greg Clayton8de27c72010-10-15 22:48:33 +00001449 if (log && str)
Greg Claytonb5037af2010-11-15 01:47:11 +00001450 log->Printf("Resolved intrinsic name \"%s\"", str.GetCString());
Sean Callanan3cb1fd82010-09-28 23:55:00 +00001451 }
1452 else
1453 {
Greg Clayton8de27c72010-10-15 22:48:33 +00001454 str.SetCStringWithLength (fun->getName().data(), fun->getName().size());
Sean Callananc04743d2010-09-28 21:13:03 +00001455 }
1456
Sean Callananc0492742011-05-23 21:40:23 +00001457 clang::NamedDecl *fun_decl = DeclForGlobal (fun);
Greg Claytonb5037af2010-11-15 01:47:11 +00001458 lldb::addr_t fun_addr = LLDB_INVALID_ADDRESS;
Sean Callananf5857a02010-07-31 01:32:05 +00001459 Value **fun_value_ptr = NULL;
Sean Callananba992c52010-07-27 02:07:53 +00001460
Sean Callananf5857a02010-07-31 01:32:05 +00001461 if (fun_decl)
Sean Callananba992c52010-07-27 02:07:53 +00001462 {
Greg Clayton8de27c72010-10-15 22:48:33 +00001463 if (!m_decl_map->GetFunctionInfo (fun_decl, fun_value_ptr, fun_addr))
Sean Callananf5857a02010-07-31 01:32:05 +00001464 {
Sean Callanan92aa6662010-09-07 21:49:41 +00001465 fun_value_ptr = NULL;
1466
Greg Clayton8de27c72010-10-15 22:48:33 +00001467 if (!m_decl_map->GetFunctionAddress (str, fun_addr))
Sean Callanan92aa6662010-09-07 21:49:41 +00001468 {
1469 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +00001470 log->Printf("Function \"%s\" had no address", str.GetCString());
Sean Callanan92aa6662010-09-07 21:49:41 +00001471
Sean Callanan97c924e2011-01-27 01:07:04 +00001472 if (m_error_stream)
1473 m_error_stream->Printf("Error [IRForTarget]: Call to a function '%s' that is not present in the target\n", str.GetCString());
1474
Sean Callanan92aa6662010-09-07 21:49:41 +00001475 return false;
1476 }
Sean Callananf5857a02010-07-31 01:32:05 +00001477 }
1478 }
1479 else
1480 {
Greg Clayton8de27c72010-10-15 22:48:33 +00001481 if (!m_decl_map->GetFunctionAddress (str, fun_addr))
Sean Callananf5857a02010-07-31 01:32:05 +00001482 {
1483 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +00001484 log->Printf ("Metadataless function \"%s\" had no address", str.GetCString());
Sean Callanan97c924e2011-01-27 01:07:04 +00001485
1486 if (m_error_stream)
1487 m_error_stream->Printf("Error [IRForTarget]: Call to a symbol-only function '%s' that is not present in the target\n", str.GetCString());
1488
1489 return false;
Sean Callananf5857a02010-07-31 01:32:05 +00001490 }
Sean Callananba992c52010-07-27 02:07:53 +00001491 }
1492
1493 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +00001494 log->Printf("Found \"%s\" at 0x%llx", str.GetCString(), fun_addr);
Sean Callananba992c52010-07-27 02:07:53 +00001495
Sean Callananf5857a02010-07-31 01:32:05 +00001496 Value *fun_addr_ptr;
1497
1498 if (!fun_value_ptr || !*fun_value_ptr)
Sean Callanan02fbafa2010-07-27 21:39:39 +00001499 {
Sean Callananc0492742011-05-23 21:40:23 +00001500 const IntegerType *intptr_ty = Type::getIntNTy(m_module->getContext(),
1501 (m_module->getPointerSize() == Module::Pointer64) ? 64 : 32);
Sean Callanan92aa6662010-09-07 21:49:41 +00001502 const FunctionType *fun_ty = fun->getFunctionType();
Sean Callanan02fbafa2010-07-27 21:39:39 +00001503 PointerType *fun_ptr_ty = PointerType::getUnqual(fun_ty);
1504 Constant *fun_addr_int = ConstantInt::get(intptr_ty, fun_addr, false);
Sean Callananf5857a02010-07-31 01:32:05 +00001505 fun_addr_ptr = ConstantExpr::getIntToPtr(fun_addr_int, fun_ptr_ty);
1506
1507 if (fun_value_ptr)
1508 *fun_value_ptr = fun_addr_ptr;
Sean Callanan02fbafa2010-07-27 21:39:39 +00001509 }
Sean Callananf5857a02010-07-31 01:32:05 +00001510
1511 if (fun_value_ptr)
1512 fun_addr_ptr = *fun_value_ptr;
Sean Callanan02fbafa2010-07-27 21:39:39 +00001513
Greg Clayton8de27c72010-10-15 22:48:33 +00001514 llvm_call_inst->setCalledFunction(fun_addr_ptr);
Sean Callanan02fbafa2010-07-27 21:39:39 +00001515
Sean Callananc0492742011-05-23 21:40:23 +00001516 ConstantArray *func_name = (ConstantArray*)ConstantArray::get(m_module->getContext(), str.GetCString());
Sean Callanane8a59a82010-09-13 21:34:21 +00001517
1518 Value *values[1];
1519 values[0] = func_name;
Sean Callanan0de254a2011-05-15 22:34:38 +00001520 ArrayRef<Value*> value_ref(values, 1);
1521
Sean Callananc0492742011-05-23 21:40:23 +00001522 MDNode *func_metadata = MDNode::get(m_module->getContext(), value_ref);
Sean Callanane8a59a82010-09-13 21:34:21 +00001523
Greg Clayton8de27c72010-10-15 22:48:33 +00001524 llvm_call_inst->setMetadata("lldb.call.realName", func_metadata);
Sean Callanane8a59a82010-09-13 21:34:21 +00001525
1526 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +00001527 log->Printf("Set metadata for %p [%d, \"%s\"]", llvm_call_inst, func_name->isString(), func_name->getAsString().c_str());
Sean Callanane8a59a82010-09-13 21:34:21 +00001528
Sean Callananba992c52010-07-27 02:07:53 +00001529 return true;
1530}
1531
1532bool
Sean Callananc0492742011-05-23 21:40:23 +00001533IRForTarget::ResolveCalls(BasicBlock &basic_block)
Sean Callanan8bce6652010-07-13 21:41:46 +00001534{
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00001535 /////////////////////////////////////////////////////////////////////////
1536 // Prepare the current basic block for execution in the remote process
1537 //
1538
Sean Callanan02fbafa2010-07-27 21:39:39 +00001539 BasicBlock::iterator ii;
Sean Callanan8bce6652010-07-13 21:41:46 +00001540
Greg Clayton3c7feb42010-11-19 01:05:25 +00001541 for (ii = basic_block.begin();
1542 ii != basic_block.end();
Sean Callanan8bce6652010-07-13 21:41:46 +00001543 ++ii)
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00001544 {
Sean Callanan8bce6652010-07-13 21:41:46 +00001545 Instruction &inst = *ii;
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00001546
Sean Callanan1d1b39c2010-11-08 00:31:32 +00001547 CallInst *call = dyn_cast<CallInst>(&inst);
Sean Callananba992c52010-07-27 02:07:53 +00001548
Sean Callanan97c924e2011-01-27 01:07:04 +00001549 // MaybeHandleCall handles error reporting; we are silent here
Sean Callananc0492742011-05-23 21:40:23 +00001550 if (call && !MaybeHandleCall(call))
Sean Callanan1d1b39c2010-11-08 00:31:32 +00001551 return false;
Sean Callanan48443652010-12-02 19:47:57 +00001552
Sean Callanan97c924e2011-01-27 01:07:04 +00001553 // MaybeHandleCallArguments handles error reporting; we are silent here
Sean Callananc0492742011-05-23 21:40:23 +00001554 if (call && !MaybeHandleCallArguments(call))
Sean Callanan48443652010-12-02 19:47:57 +00001555 return false;
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00001556 }
1557
1558 return true;
1559}
1560
Sean Callanan1d1b39c2010-11-08 00:31:32 +00001561bool
Sean Callananc0492742011-05-23 21:40:23 +00001562IRForTarget::ResolveExternals (Function &llvm_function)
Sean Callanan1d1b39c2010-11-08 00:31:32 +00001563{
Sean Callananae71e302010-11-18 22:21:58 +00001564 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
1565
Sean Callananc0492742011-05-23 21:40:23 +00001566 for (Module::global_iterator global = m_module->global_begin(), end = m_module->global_end();
Sean Callanan1d1b39c2010-11-08 00:31:32 +00001567 global != end;
1568 ++global)
1569 {
Greg Clayton3c7feb42010-11-19 01:05:25 +00001570 if (log)
1571 log->Printf("Examining %s, DeclForGlobalValue returns %p",
1572 (*global).getName().str().c_str(),
Sean Callananc0492742011-05-23 21:40:23 +00001573 DeclForGlobal(global));
Greg Clayton3c7feb42010-11-19 01:05:25 +00001574
Sean Callananc7674af2011-01-17 23:42:46 +00001575 if ((*global).getName().str().find("OBJC_IVAR") == 0)
1576 {
Sean Callananc0492742011-05-23 21:40:23 +00001577 if (!HandleSymbol(global))
Sean Callanan97c924e2011-01-27 01:07:04 +00001578 {
1579 if (m_error_stream)
1580 m_error_stream->Printf("Error [IRForTarget]: Couldn't find Objective-C indirect ivar symbol %s\n", (*global).getName().str().c_str());
1581
Sean Callananc7674af2011-01-17 23:42:46 +00001582 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00001583 }
Sean Callananc7674af2011-01-17 23:42:46 +00001584 }
Sean Callananc0492742011-05-23 21:40:23 +00001585 else if (DeclForGlobal(global))
Sean Callananc7674af2011-01-17 23:42:46 +00001586 {
Sean Callananc0492742011-05-23 21:40:23 +00001587 if (!MaybeHandleVariable (global))
Sean Callanan97c924e2011-01-27 01:07:04 +00001588 {
1589 if (m_error_stream)
1590 m_error_stream->Printf("Internal error [IRForTarget]: Couldn't rewrite external variable %s\n", (*global).getName().str().c_str());
1591
Sean Callananc7674af2011-01-17 23:42:46 +00001592 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00001593 }
Sean Callananc7674af2011-01-17 23:42:46 +00001594 }
Sean Callanan1d1b39c2010-11-08 00:31:32 +00001595 }
1596
1597 return true;
1598}
1599
Sean Callananc0492742011-05-23 21:40:23 +00001600bool
1601IRForTarget::ReplaceStrings ()
1602{
1603 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
1604
1605 if (!m_data_allocator)
1606 return true; // hope for the best; some clients may not want static allocation!
1607
1608 typedef std::map <GlobalVariable *, size_t> OffsetsTy;
1609
1610 OffsetsTy offsets;
1611
1612 for (Module::global_iterator gi = m_module->global_begin(), ge = m_module->global_end();
1613 gi != ge;
1614 ++gi)
1615 {
1616 GlobalVariable *gv = gi;
1617
1618 if (!gv->hasInitializer())
1619 continue;
1620
1621 Constant *gc = gv->getInitializer();
1622
1623 ConstantArray *gc_array = dyn_cast<ConstantArray>(gc);
1624
1625 if (!gc_array)
1626 continue;
1627
1628 if (!gc_array->isCString())
1629 continue;
1630
1631 if (log)
1632 log->Printf("Found a GlobalVariable with string initializer %s", PrintValue(gc).c_str());
1633
1634 std::string str = gc_array->getAsString();
1635
1636 offsets[gv] = m_data_allocator->GetStream().GetSize();
1637
1638 m_data_allocator->GetStream().Write(str.c_str(), str.length() + 1);
1639 }
1640
1641 const Type *char_ptr_ty = Type::getInt8PtrTy(m_module->getContext());
1642
1643 for (OffsetsTy::iterator oi = offsets.begin(), oe = offsets.end();
1644 oi != oe;
1645 ++oi)
1646 {
1647 GlobalVariable *gv = oi->first;
1648 size_t offset = oi->second;
1649
1650 Constant *new_initializer = BuildRelocation(char_ptr_ty, offset);
1651
1652 if (log)
1653 log->Printf("Replacing GV %s with %s", PrintValue(gv).c_str(), PrintValue(new_initializer).c_str());
1654
1655 for (GlobalVariable::use_iterator ui = gv->use_begin(), ue = gv->use_end();
1656 ui != ue;
1657 ++ui)
1658 {
1659 if (log)
1660 log->Printf("Found use %s", PrintValue(*ui).c_str());
1661
1662 ConstantExpr *const_expr = dyn_cast<ConstantExpr>(*ui);
1663 StoreInst *store_inst = dyn_cast<StoreInst>(*ui);
1664
1665 if (const_expr)
1666 {
1667 if (const_expr->getOpcode() != Instruction::GetElementPtr)
1668 {
1669 if (log)
1670 log->Printf("Use (%s) of string variable is not a GetElementPtr constant", PrintValue(const_expr).c_str());
1671
1672 return false;
1673 }
1674
1675 const_expr->replaceAllUsesWith(new_initializer);
1676 }
1677 else if (store_inst)
1678 {
1679 Constant *bit_cast = ConstantExpr::getBitCast(new_initializer, store_inst->getValueOperand()->getType());
1680
1681 store_inst->setOperand(0, bit_cast);
1682 }
1683 else
1684 {
1685 if (log)
1686 log->Printf("Use (%s) of string variable is neither a constant nor a store", PrintValue(const_expr).c_str());
1687
1688 return false;
1689 }
1690 }
1691
1692 gv->eraseFromParent();
1693 }
1694
1695 return true;
1696}
1697
1698bool
1699IRForTarget::ReplaceStaticLiterals (llvm::BasicBlock &basic_block)
1700{
1701 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
1702
1703 if (!m_data_allocator)
1704 return true;
1705
1706 typedef SmallVector <Value*, 2> ConstantList;
1707 typedef SmallVector <llvm::Instruction*, 2> UserList;
1708 typedef ConstantList::iterator ConstantIterator;
1709 typedef UserList::iterator UserIterator;
1710
1711 ConstantList static_constants;
1712 UserList static_users;
1713
1714 for (BasicBlock::iterator ii = basic_block.begin(), ie = basic_block.end();
1715 ii != ie;
1716 ++ii)
1717 {
1718 llvm::Instruction &inst = *ii;
1719
1720 for (Instruction::op_iterator oi = inst.op_begin(), oe = inst.op_end();
1721 oi != oe;
1722 ++oi)
1723 {
1724 Value *operand_val = oi->get();
1725
1726 ConstantFP *operand_constant_fp = dyn_cast<ConstantFP>(operand_val);
1727
1728 if (operand_constant_fp && operand_constant_fp->getType()->isX86_FP80Ty())
1729 {
1730 static_constants.push_back(operand_val);
1731 static_users.push_back(ii);
1732 }
1733 }
1734 }
1735
1736 ConstantIterator constant_iter;
1737 UserIterator user_iter;
Greg Clayton54b38412011-05-24 23:06:02 +00001738
Sean Callananc0492742011-05-23 21:40:23 +00001739 for (constant_iter = static_constants.begin(), user_iter = static_users.begin();
1740 constant_iter != static_constants.end();
1741 ++constant_iter, ++user_iter)
1742 {
1743 Value *operand_val = *constant_iter;
1744 llvm::Instruction *inst = *user_iter;
1745
1746 ConstantFP *operand_constant_fp = dyn_cast<ConstantFP>(operand_val);
1747
1748 if (operand_constant_fp)
1749 {
1750 APFloat operand_apfloat = operand_constant_fp->getValueAPF();
1751 APInt operand_apint = operand_apfloat.bitcastToAPInt();
1752
1753 const uint8_t* operand_raw_data = (const uint8_t*)operand_apint.getRawData();
1754 size_t operand_data_size = operand_apint.getBitWidth() / 8;
1755
1756 if (log)
1757 {
1758 std::string s;
1759 raw_string_ostream ss(s);
1760 for (size_t index = 0;
1761 index < operand_data_size;
1762 ++index)
1763 {
1764 ss << (uint32_t)operand_raw_data[index];
1765 ss << " ";
1766 }
1767 ss.flush();
1768
1769 log->Printf("Found ConstantFP with size %d and raw data %s", operand_data_size, s.c_str());
1770 }
1771
1772 lldb_private::DataBufferHeap data(operand_data_size, 0);
1773
1774 if (lldb::endian::InlHostByteOrder() != m_data_allocator->GetStream().GetByteOrder())
1775 {
1776 uint8_t *data_bytes = data.GetBytes();
1777
1778 for (size_t index = 0;
1779 index < operand_data_size;
1780 ++index)
1781 {
1782 data_bytes[index] = operand_raw_data[operand_data_size - (1 + index)];
1783 }
1784 }
1785 else
1786 {
1787 memcpy(data.GetBytes(), operand_raw_data, operand_data_size);
1788 }
1789
1790 uint64_t offset = m_data_allocator->GetStream().GetSize();
1791
1792 m_data_allocator->GetStream().Write(data.GetBytes(), operand_data_size);
1793
1794 const llvm::Type *fp_ptr_ty = operand_constant_fp->getType()->getPointerTo();
1795
1796 Constant *new_pointer = BuildRelocation(fp_ptr_ty, offset);
1797
1798 llvm::LoadInst *fp_load = new llvm::LoadInst(new_pointer, "fp_load", inst);
1799
1800 operand_constant_fp->replaceAllUsesWith(fp_load);
1801 }
1802 }
1803
1804 return true;
1805}
1806
Sean Callanan02fbafa2010-07-27 21:39:39 +00001807static bool isGuardVariableRef(Value *V)
Sean Callanan45839272010-07-24 01:37:44 +00001808{
Sean Callanan6ba533e2010-11-17 23:00:36 +00001809 Constant *Old;
Sean Callanan45839272010-07-24 01:37:44 +00001810
Sean Callanan6ba533e2010-11-17 23:00:36 +00001811 if (!(Old = dyn_cast<Constant>(V)))
Sean Callanan45839272010-07-24 01:37:44 +00001812 return false;
1813
Sean Callanan47a5c4c2010-09-23 03:01:22 +00001814 ConstantExpr *CE;
1815
1816 if ((CE = dyn_cast<ConstantExpr>(V)))
1817 {
1818 if (CE->getOpcode() != Instruction::BitCast)
1819 return false;
1820
Sean Callanan6ba533e2010-11-17 23:00:36 +00001821 Old = CE->getOperand(0);
Sean Callanan47a5c4c2010-09-23 03:01:22 +00001822 }
1823
Sean Callanan6ba533e2010-11-17 23:00:36 +00001824 GlobalVariable *GV = dyn_cast<GlobalVariable>(Old);
Sean Callanan45839272010-07-24 01:37:44 +00001825
1826 if (!GV || !GV->hasName() || !GV->getName().startswith("_ZGV"))
1827 return false;
1828
1829 return true;
1830}
1831
Sean Callananc0492742011-05-23 21:40:23 +00001832void
1833IRForTarget::TurnGuardLoadIntoZero(llvm::Instruction* guard_load)
Sean Callanan45839272010-07-24 01:37:44 +00001834{
Sean Callananc0492742011-05-23 21:40:23 +00001835 Constant* zero(ConstantInt::get(Type::getInt8Ty(m_module->getContext()), 0, true));
Sean Callanan45839272010-07-24 01:37:44 +00001836
1837 Value::use_iterator ui;
1838
1839 for (ui = guard_load->use_begin();
1840 ui != guard_load->use_end();
1841 ++ui)
Sean Callananb5b749c2010-07-27 01:17:28 +00001842 {
Greg Clayton6e713402010-07-30 20:30:44 +00001843 if (isa<Constant>(*ui))
Sean Callananb5b749c2010-07-27 01:17:28 +00001844 {
1845 // do nothing for the moment
1846 }
1847 else
1848 {
1849 ui->replaceUsesOfWith(guard_load, zero);
1850 }
1851 }
Sean Callanan45839272010-07-24 01:37:44 +00001852
1853 guard_load->eraseFromParent();
1854}
1855
1856static void ExciseGuardStore(Instruction* guard_store)
1857{
1858 guard_store->eraseFromParent();
1859}
1860
1861bool
Sean Callananc0492742011-05-23 21:40:23 +00001862IRForTarget::RemoveGuards(BasicBlock &basic_block)
Sean Callanan45839272010-07-24 01:37:44 +00001863{
1864 ///////////////////////////////////////////////////////
1865 // Eliminate any reference to guard variables found.
1866 //
1867
Sean Callanan02fbafa2010-07-27 21:39:39 +00001868 BasicBlock::iterator ii;
Sean Callanan45839272010-07-24 01:37:44 +00001869
Sean Callanan02fbafa2010-07-27 21:39:39 +00001870 typedef SmallVector <Instruction*, 2> InstrList;
Sean Callanan45839272010-07-24 01:37:44 +00001871 typedef InstrList::iterator InstrIterator;
1872
1873 InstrList guard_loads;
1874 InstrList guard_stores;
1875
Greg Clayton3c7feb42010-11-19 01:05:25 +00001876 for (ii = basic_block.begin();
1877 ii != basic_block.end();
Sean Callanan45839272010-07-24 01:37:44 +00001878 ++ii)
1879 {
1880 Instruction &inst = *ii;
1881
1882 if (LoadInst *load = dyn_cast<LoadInst>(&inst))
1883 if (isGuardVariableRef(load->getPointerOperand()))
1884 guard_loads.push_back(&inst);
1885
1886 if (StoreInst *store = dyn_cast<StoreInst>(&inst))
1887 if (isGuardVariableRef(store->getPointerOperand()))
1888 guard_stores.push_back(&inst);
1889 }
1890
1891 InstrIterator iter;
1892
1893 for (iter = guard_loads.begin();
1894 iter != guard_loads.end();
1895 ++iter)
Sean Callananc0492742011-05-23 21:40:23 +00001896 TurnGuardLoadIntoZero(*iter);
Sean Callanan45839272010-07-24 01:37:44 +00001897
1898 for (iter = guard_stores.begin();
1899 iter != guard_stores.end();
1900 ++iter)
1901 ExciseGuardStore(*iter);
1902
1903 return true;
1904}
1905
Sean Callanan97c924e2011-01-27 01:07:04 +00001906// This function does not report errors; its callers are responsible.
Sean Callanan6ba533e2010-11-17 23:00:36 +00001907bool
Greg Clayton3c7feb42010-11-19 01:05:25 +00001908IRForTarget::UnfoldConstant(Constant *old_constant, Value *new_constant, Instruction *first_entry_inst)
Sean Callananbafd6852010-07-14 23:40:29 +00001909{
Greg Claytone005f2c2010-11-06 01:53:30 +00001910 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callananbafd6852010-07-14 23:40:29 +00001911
1912 Value::use_iterator ui;
1913
Sean Callanana48fe162010-08-11 03:57:18 +00001914 SmallVector<User*, 16> users;
1915
1916 // We do this because the use list might change, invalidating our iterator.
1917 // Much better to keep a work list ourselves.
Greg Clayton3c7feb42010-11-19 01:05:25 +00001918 for (ui = old_constant->use_begin();
1919 ui != old_constant->use_end();
Sean Callananbafd6852010-07-14 23:40:29 +00001920 ++ui)
Sean Callanana48fe162010-08-11 03:57:18 +00001921 users.push_back(*ui);
Sean Callananbafd6852010-07-14 23:40:29 +00001922
Sean Callanana48fe162010-08-11 03:57:18 +00001923 for (int i = 0;
1924 i < users.size();
1925 ++i)
1926 {
1927 User *user = users[i];
1928
Sean Callananbafd6852010-07-14 23:40:29 +00001929 if (Constant *constant = dyn_cast<Constant>(user))
1930 {
1931 // synthesize a new non-constant equivalent of the constant
1932
1933 if (ConstantExpr *constant_expr = dyn_cast<ConstantExpr>(constant))
1934 {
1935 switch (constant_expr->getOpcode())
1936 {
1937 default:
1938 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +00001939 log->Printf("Unhandled constant expression type: \"%s\"", PrintValue(constant_expr).c_str());
Sean Callananbafd6852010-07-14 23:40:29 +00001940 return false;
1941 case Instruction::BitCast:
1942 {
1943 // UnaryExpr
1944 // OperandList[0] is value
1945
1946 Value *s = constant_expr->getOperand(0);
1947
Greg Clayton3c7feb42010-11-19 01:05:25 +00001948 if (s == old_constant)
1949 s = new_constant;
Sean Callananbafd6852010-07-14 23:40:29 +00001950
Sean Callananc0492742011-05-23 21:40:23 +00001951 BitCastInst *bit_cast(new BitCastInst(s, constant_expr->getType(), "", first_entry_inst));
Sean Callananbafd6852010-07-14 23:40:29 +00001952
Greg Clayton3c7feb42010-11-19 01:05:25 +00001953 UnfoldConstant(constant_expr, bit_cast, first_entry_inst);
Sean Callananbafd6852010-07-14 23:40:29 +00001954 }
1955 break;
1956 case Instruction::GetElementPtr:
1957 {
1958 // GetElementPtrConstantExpr
1959 // OperandList[0] is base
1960 // OperandList[1]... are indices
1961
1962 Value *ptr = constant_expr->getOperand(0);
1963
Greg Clayton3c7feb42010-11-19 01:05:25 +00001964 if (ptr == old_constant)
1965 ptr = new_constant;
Sean Callananbafd6852010-07-14 23:40:29 +00001966
1967 SmallVector<Value*, 16> indices;
1968
1969 unsigned operand_index;
1970 unsigned num_operands = constant_expr->getNumOperands();
1971
1972 for (operand_index = 1;
1973 operand_index < num_operands;
1974 ++operand_index)
1975 {
1976 Value *operand = constant_expr->getOperand(operand_index);
1977
Greg Clayton3c7feb42010-11-19 01:05:25 +00001978 if (operand == old_constant)
1979 operand = new_constant;
Sean Callananbafd6852010-07-14 23:40:29 +00001980
1981 indices.push_back(operand);
1982 }
1983
Greg Clayton3c7feb42010-11-19 01:05:25 +00001984 GetElementPtrInst *get_element_ptr(GetElementPtrInst::Create(ptr, indices.begin(), indices.end(), "", first_entry_inst));
Sean Callananbafd6852010-07-14 23:40:29 +00001985
Greg Clayton3c7feb42010-11-19 01:05:25 +00001986 UnfoldConstant(constant_expr, get_element_ptr, first_entry_inst);
Sean Callananbafd6852010-07-14 23:40:29 +00001987 }
1988 break;
1989 }
1990 }
1991 else
1992 {
1993 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +00001994 log->Printf("Unhandled constant type: \"%s\"", PrintValue(constant).c_str());
Sean Callananbafd6852010-07-14 23:40:29 +00001995 return false;
1996 }
1997 }
1998 else
1999 {
2000 // simple fall-through case for non-constants
Greg Clayton3c7feb42010-11-19 01:05:25 +00002001 user->replaceUsesOfWith(old_constant, new_constant);
Sean Callananbafd6852010-07-14 23:40:29 +00002002 }
2003 }
2004
2005 return true;
2006}
2007
Sean Callanan8bce6652010-07-13 21:41:46 +00002008bool
Sean Callananc0492742011-05-23 21:40:23 +00002009IRForTarget::ReplaceVariables (Function &llvm_function)
Sean Callanan8bce6652010-07-13 21:41:46 +00002010{
Sean Callanane8a59a82010-09-13 21:34:21 +00002011 if (!m_resolve_vars)
2012 return true;
2013
Greg Claytone005f2c2010-11-06 01:53:30 +00002014 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan8bce6652010-07-13 21:41:46 +00002015
2016 m_decl_map->DoStructLayout();
2017
2018 if (log)
2019 log->Printf("Element arrangement:");
2020
2021 uint32_t num_elements;
2022 uint32_t element_index;
2023
2024 size_t size;
2025 off_t alignment;
2026
2027 if (!m_decl_map->GetStructInfo (num_elements, size, alignment))
2028 return false;
2029
Greg Clayton3c7feb42010-11-19 01:05:25 +00002030 Function::arg_iterator iter(llvm_function.getArgumentList().begin());
Sean Callanan8bce6652010-07-13 21:41:46 +00002031
Greg Clayton3c7feb42010-11-19 01:05:25 +00002032 if (iter == llvm_function.getArgumentList().end())
Sean Callanan97c924e2011-01-27 01:07:04 +00002033 {
2034 if (m_error_stream)
2035 m_error_stream->Printf("Internal error [IRForTarget]: Wrapper takes no arguments (should take at least a struct pointer)");
2036
Sean Callanan8bce6652010-07-13 21:41:46 +00002037 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00002038 }
2039
Sean Callanan02fbafa2010-07-27 21:39:39 +00002040 Argument *argument = iter;
Sean Callanan8bce6652010-07-13 21:41:46 +00002041
Sean Callanan3c9c5eb2010-09-21 00:44:12 +00002042 if (argument->getName().equals("this"))
2043 {
2044 ++iter;
2045
Greg Clayton3c7feb42010-11-19 01:05:25 +00002046 if (iter == llvm_function.getArgumentList().end())
Sean Callanan97c924e2011-01-27 01:07:04 +00002047 {
2048 if (m_error_stream)
2049 m_error_stream->Printf("Internal error [IRForTarget]: Wrapper takes only 'this' argument (should take a struct pointer too)");
2050
Sean Callanan3c9c5eb2010-09-21 00:44:12 +00002051 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00002052 }
Sean Callanan3c9c5eb2010-09-21 00:44:12 +00002053
2054 argument = iter;
2055 }
Sean Callanan3aa7da52010-12-13 22:46:15 +00002056 else if (argument->getName().equals("self"))
2057 {
2058 ++iter;
2059
2060 if (iter == llvm_function.getArgumentList().end())
Sean Callanan97c924e2011-01-27 01:07:04 +00002061 {
2062 if (m_error_stream)
2063 m_error_stream->Printf("Internal error [IRForTarget]: Wrapper takes only 'self' argument (should take '_cmd' and a struct pointer too)");
2064
Sean Callanan3aa7da52010-12-13 22:46:15 +00002065 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00002066 }
Sean Callanan3aa7da52010-12-13 22:46:15 +00002067
2068 if (!iter->getName().equals("_cmd"))
Sean Callanan97c924e2011-01-27 01:07:04 +00002069 {
2070 if (m_error_stream)
2071 m_error_stream->Printf("Internal error [IRForTarget]: Wrapper takes '%s' after 'self' argument (should take '_cmd')", iter->getName().str().c_str());
2072
Sean Callanan3aa7da52010-12-13 22:46:15 +00002073 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00002074 }
Sean Callanan3aa7da52010-12-13 22:46:15 +00002075
2076 ++iter;
2077
2078 if (iter == llvm_function.getArgumentList().end())
Sean Callanan97c924e2011-01-27 01:07:04 +00002079 {
2080 if (m_error_stream)
2081 m_error_stream->Printf("Internal error [IRForTarget]: Wrapper takes only 'self' and '_cmd' arguments (should take a struct pointer too)");
2082
Sean Callanan3aa7da52010-12-13 22:46:15 +00002083 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00002084 }
Sean Callanan3aa7da52010-12-13 22:46:15 +00002085
2086 argument = iter;
2087 }
Sean Callanan3c9c5eb2010-09-21 00:44:12 +00002088
Greg Clayton8de27c72010-10-15 22:48:33 +00002089 if (!argument->getName().equals("$__lldb_arg"))
Sean Callanan97c924e2011-01-27 01:07:04 +00002090 {
2091 if (m_error_stream)
2092 m_error_stream->Printf("Internal error [IRForTarget]: Wrapper takes an argument named '%s' instead of the struct pointer", argument->getName().str().c_str());
2093
Sean Callanan8bce6652010-07-13 21:41:46 +00002094 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00002095 }
2096
Sean Callanan8bce6652010-07-13 21:41:46 +00002097 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +00002098 log->Printf("Arg: \"%s\"", PrintValue(argument).c_str());
Sean Callanan8bce6652010-07-13 21:41:46 +00002099
Greg Clayton3c7feb42010-11-19 01:05:25 +00002100 BasicBlock &entry_block(llvm_function.getEntryBlock());
Sean Callanan6ba533e2010-11-17 23:00:36 +00002101 Instruction *FirstEntryInstruction(entry_block.getFirstNonPHIOrDbg());
Sean Callanan8bce6652010-07-13 21:41:46 +00002102
Sean Callanan6ba533e2010-11-17 23:00:36 +00002103 if (!FirstEntryInstruction)
Sean Callanan97c924e2011-01-27 01:07:04 +00002104 {
2105 if (m_error_stream)
2106 m_error_stream->Printf("Internal error [IRForTarget]: Couldn't find the first instruction in the wrapper for use in rewriting");
2107
Sean Callanan8bce6652010-07-13 21:41:46 +00002108 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00002109 }
Sean Callanan8bce6652010-07-13 21:41:46 +00002110
Sean Callananc0492742011-05-23 21:40:23 +00002111 LLVMContext &context(m_module->getContext());
Sean Callanan8bce6652010-07-13 21:41:46 +00002112 const IntegerType *offset_type(Type::getInt32Ty(context));
2113
2114 if (!offset_type)
Sean Callanan97c924e2011-01-27 01:07:04 +00002115 {
2116 if (m_error_stream)
2117 m_error_stream->Printf("Internal error [IRForTarget]: Couldn't produce an offset type");
2118
Sean Callanan8bce6652010-07-13 21:41:46 +00002119 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00002120 }
Sean Callanan8bce6652010-07-13 21:41:46 +00002121
2122 for (element_index = 0; element_index < num_elements; ++element_index)
2123 {
2124 const clang::NamedDecl *decl;
Sean Callanan02fbafa2010-07-27 21:39:39 +00002125 Value *value;
Sean Callanan8bce6652010-07-13 21:41:46 +00002126 off_t offset;
Greg Clayton8de27c72010-10-15 22:48:33 +00002127 lldb_private::ConstString name;
Sean Callanan8bce6652010-07-13 21:41:46 +00002128
Sean Callanan45690fe2010-08-30 22:17:16 +00002129 if (!m_decl_map->GetStructElement (decl, value, offset, name, element_index))
Sean Callanan97c924e2011-01-27 01:07:04 +00002130 {
2131 if (m_error_stream)
2132 m_error_stream->Printf("Internal error [IRForTarget]: Structure information is incomplete");
2133
Sean Callanan8bce6652010-07-13 21:41:46 +00002134 return false;
Sean Callanan97c924e2011-01-27 01:07:04 +00002135 }
2136
Sean Callanan8bce6652010-07-13 21:41:46 +00002137 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +00002138 log->Printf(" \"%s\" [\"%s\"] (\"%s\") placed at %d",
Sean Callanan82b74c82010-08-12 01:56:52 +00002139 value->getName().str().c_str(),
Greg Clayton8de27c72010-10-15 22:48:33 +00002140 name.GetCString(),
Sean Callanan8bce6652010-07-13 21:41:46 +00002141 PrintValue(value, true).c_str(),
2142 offset);
2143
2144 ConstantInt *offset_int(ConstantInt::getSigned(offset_type, offset));
Sean Callanan6ba533e2010-11-17 23:00:36 +00002145 GetElementPtrInst *get_element_ptr = GetElementPtrInst::Create(argument, offset_int, "", FirstEntryInstruction);
Sean Callanan6a925532011-01-13 08:53:35 +00002146
2147 Value *replacement;
Sean Callanan8bce6652010-07-13 21:41:46 +00002148
Sean Callanan6a925532011-01-13 08:53:35 +00002149 // Per the comment at ASTResultSynthesizer::SynthesizeBodyResult, in cases where the result
2150 // variable is an rvalue, we have to synthesize a dereference of the appropriate structure
2151 // entry in order to produce the static variable that the AST thinks it is accessing.
2152 if (name == m_result_name && !m_result_is_pointer)
2153 {
2154 BitCastInst *bit_cast = new BitCastInst(get_element_ptr, value->getType()->getPointerTo(), "", FirstEntryInstruction);
2155
2156 LoadInst *load = new LoadInst(bit_cast, "", FirstEntryInstruction);
2157
2158 replacement = load;
2159 }
Sean Callananbafd6852010-07-14 23:40:29 +00002160 else
Sean Callanan6a925532011-01-13 08:53:35 +00002161 {
2162 BitCastInst *bit_cast = new BitCastInst(get_element_ptr, value->getType(), "", FirstEntryInstruction);
2163
2164 replacement = bit_cast;
2165 }
2166
2167 if (Constant *constant = dyn_cast<Constant>(value))
2168 UnfoldConstant(constant, replacement, FirstEntryInstruction);
2169 else
2170 value->replaceAllUsesWith(replacement);
Sean Callananb51ee982010-11-02 23:51:17 +00002171
2172 if (GlobalVariable *var = dyn_cast<GlobalVariable>(value))
2173 var->eraseFromParent();
Sean Callanan8bce6652010-07-13 21:41:46 +00002174 }
2175
2176 if (log)
2177 log->Printf("Total structure [align %d, size %d]", alignment, size);
2178
2179 return true;
2180}
2181
Sean Callananc0492742011-05-23 21:40:23 +00002182llvm::Constant *
2183IRForTarget::BuildRelocation(const llvm::Type *type,
2184 uint64_t offset)
2185{
2186 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
2187
2188 const IntegerType *intptr_ty = Type::getIntNTy(m_module->getContext(),
2189 (m_module->getPointerSize() == Module::Pointer64) ? 64 : 32);
2190
2191 llvm::Constant *offset_int = ConstantInt::get(intptr_ty, offset);
2192 llvm::Constant *reloc_getelementptr = ConstantExpr::getGetElementPtr(m_reloc_placeholder, &offset_int, 1);
2193 llvm::Constant *reloc_getbitcast = ConstantExpr::getBitCast(reloc_getelementptr, type);
2194
2195 return reloc_getbitcast;
2196}
2197
2198bool
2199IRForTarget::CompleteDataAllocation ()
2200{
2201 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
2202
2203 if (!m_data_allocator->GetStream().GetSize())
2204 return true;
2205
2206 lldb::addr_t allocation = m_data_allocator->Allocate();
2207
2208 if (log)
2209 {
2210 if (allocation)
2211 log->Printf("Allocated static data at 0x%llx", (unsigned long long)allocation);
2212 else
2213 log->Printf("Failed to allocate static data");
2214 }
2215
2216 if (!allocation)
2217 return false;
2218
2219 const IntegerType *intptr_ty = Type::getIntNTy(m_module->getContext(),
2220 (m_module->getPointerSize() == Module::Pointer64) ? 64 : 32);
2221
2222 Constant *relocated_addr = ConstantInt::get(intptr_ty, (uint64_t)allocation);
2223 Constant *relocated_bitcast = ConstantExpr::getIntToPtr(relocated_addr, llvm::Type::getInt8PtrTy(m_module->getContext()));
2224
2225 m_reloc_placeholder->replaceAllUsesWith(relocated_bitcast);
2226
2227 m_reloc_placeholder->eraseFromParent();
2228
2229 return true;
2230}
2231
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00002232bool
Greg Clayton3c7feb42010-11-19 01:05:25 +00002233IRForTarget::runOnModule (Module &llvm_module)
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00002234{
Greg Claytone005f2c2010-11-06 01:53:30 +00002235 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00002236
Sean Callananc0492742011-05-23 21:40:23 +00002237 m_module = &llvm_module;
2238
2239 Function* function = m_module->getFunction(StringRef(m_func_name.c_str()));
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00002240
2241 if (!function)
2242 {
2243 if (log)
Greg Claytonb5037af2010-11-15 01:47:11 +00002244 log->Printf("Couldn't find \"%s()\" in the module", m_func_name.c_str());
Sean Callanan97c924e2011-01-27 01:07:04 +00002245
2246 if (m_error_stream)
Sean Callananc0492742011-05-23 21:40:23 +00002247 m_error_stream->Printf("Internal error [IRForTarget]: Couldn't find wrapper '%s' in the module", m_func_name.c_str());
Sean Callanan6a925532011-01-13 08:53:35 +00002248
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00002249 return false;
2250 }
Sean Callananc0492742011-05-23 21:40:23 +00002251
2252 if (!FixFunctionLinkage (*function))
2253 {
2254 if (log)
2255 log->Printf("Couldn't fix the linkage for the function");
2256
2257 return false;
2258 }
2259
2260 const llvm::Type *intptr_ty = Type::getInt8Ty(m_module->getContext());
2261
2262 m_reloc_placeholder = new llvm::GlobalVariable((*m_module),
2263 intptr_ty,
2264 false /* isConstant */,
2265 GlobalVariable::InternalLinkage,
2266 Constant::getNullValue(intptr_ty),
2267 "reloc_placeholder",
2268 NULL /* InsertBefore */,
2269 false /* ThreadLocal */,
2270 0 /* AddressSpace */);
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00002271
Sean Callanan02fbafa2010-07-27 21:39:39 +00002272 Function::iterator bbi;
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00002273
Sean Callananc0492742011-05-23 21:40:23 +00002274 m_has_side_effects = HasSideEffects(*function);
Sean Callanan05a5a1b2010-12-16 03:17:46 +00002275
Sean Callanan82b74c82010-08-12 01:56:52 +00002276 ////////////////////////////////////////////////////////////
Greg Clayton8de27c72010-10-15 22:48:33 +00002277 // Replace $__lldb_expr_result with a persistent variable
Sean Callanan82b74c82010-08-12 01:56:52 +00002278 //
2279
Sean Callananc0492742011-05-23 21:40:23 +00002280 if (!CreateResultVariable(*function))
Sean Callanan3aa7da52010-12-13 22:46:15 +00002281 {
2282 if (log)
2283 log->Printf("CreateResultVariable() failed");
Sean Callanan97c924e2011-01-27 01:07:04 +00002284
2285 // CreateResultVariable() reports its own errors, so we don't do so here
2286
Sean Callanan82b74c82010-08-12 01:56:52 +00002287 return false;
Sean Callanan3aa7da52010-12-13 22:46:15 +00002288 }
Sean Callanan82b74c82010-08-12 01:56:52 +00002289
Sean Callanan696cf5f2011-05-07 01:06:41 +00002290 if (m_const_result)
2291 return true;
2292
Sean Callananc0492742011-05-23 21:40:23 +00002293 if (log)
2294 {
2295 std::string s;
2296 raw_string_ostream oss(s);
2297
2298 m_module->print(oss, NULL);
2299
2300 oss.flush();
2301
2302 log->Printf("Module after creating the result variable: \n\"%s\"", s.c_str());
2303 }
2304
Sean Callanan6ba533e2010-11-17 23:00:36 +00002305 ///////////////////////////////////////////////////////////////////////////////
2306 // Fix all Objective-C constant strings to use NSStringWithCString:encoding:
2307 //
Sean Callanan6ba533e2010-11-17 23:00:36 +00002308
Sean Callananc0492742011-05-23 21:40:23 +00002309 if (!RewriteObjCConstStrings(*function))
Sean Callanan3aa7da52010-12-13 22:46:15 +00002310 {
2311 if (log)
2312 log->Printf("RewriteObjCConstStrings() failed");
Sean Callanan97c924e2011-01-27 01:07:04 +00002313
2314 // RewriteObjCConstStrings() reports its own errors, so we don't do so here
2315
Sean Callanan6ba533e2010-11-17 23:00:36 +00002316 return false;
Sean Callanan3aa7da52010-12-13 22:46:15 +00002317 }
Sean Callanan6ba533e2010-11-17 23:00:36 +00002318
Sean Callananf5857a02010-07-31 01:32:05 +00002319 //////////////////////////////////
2320 // Run basic-block level passes
2321 //
2322
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00002323 for (bbi = function->begin();
2324 bbi != function->end();
2325 ++bbi)
2326 {
Sean Callananc0492742011-05-23 21:40:23 +00002327 if (!RemoveGuards(*bbi))
Sean Callanan3aa7da52010-12-13 22:46:15 +00002328 {
2329 if (log)
2330 log->Printf("RemoveGuards() failed");
Sean Callanan97c924e2011-01-27 01:07:04 +00002331
2332 // RemoveGuards() reports its own errors, so we don't do so here
2333
Sean Callanan8c127202010-08-23 23:09:38 +00002334 return false;
Sean Callanan3aa7da52010-12-13 22:46:15 +00002335 }
Sean Callanan8c127202010-08-23 23:09:38 +00002336
Sean Callananc0492742011-05-23 21:40:23 +00002337 if (!RewritePersistentAllocs(*bbi))
Sean Callanan3aa7da52010-12-13 22:46:15 +00002338 {
2339 if (log)
2340 log->Printf("RewritePersistentAllocs() failed");
Sean Callanan97c924e2011-01-27 01:07:04 +00002341
2342 // RewritePersistentAllocs() reports its own errors, so we don't do so here
2343
Sean Callananf5857a02010-07-31 01:32:05 +00002344 return false;
Sean Callanan3aa7da52010-12-13 22:46:15 +00002345 }
Sean Callananf5857a02010-07-31 01:32:05 +00002346
Sean Callananc0492742011-05-23 21:40:23 +00002347 if (!RewriteObjCSelectors(*bbi))
Sean Callanan3aa7da52010-12-13 22:46:15 +00002348 {
2349 if (log)
2350 log->Printf("RewriteObjCSelectors() failed");
Sean Callanan97c924e2011-01-27 01:07:04 +00002351
2352 // RewriteObjCSelectors() reports its own errors, so we don't do so here
2353
Sean Callanana48fe162010-08-11 03:57:18 +00002354 return false;
Sean Callanan3aa7da52010-12-13 22:46:15 +00002355 }
Sean Callanana48fe162010-08-11 03:57:18 +00002356
Sean Callananc0492742011-05-23 21:40:23 +00002357 if (!ResolveCalls(*bbi))
Sean Callanan3aa7da52010-12-13 22:46:15 +00002358 {
2359 if (log)
2360 log->Printf("ResolveCalls() failed");
Sean Callanan97c924e2011-01-27 01:07:04 +00002361
2362 // ResolveCalls() reports its own errors, so we don't do so here
2363
Sean Callanan8bce6652010-07-13 21:41:46 +00002364 return false;
Sean Callanan3aa7da52010-12-13 22:46:15 +00002365 }
Sean Callananc0492742011-05-23 21:40:23 +00002366
2367 if (!ReplaceStaticLiterals(*bbi))
2368 {
2369 if (log)
2370 log->Printf("ReplaceStaticLiterals() failed");
2371
2372 return false;
2373 }
Sean Callanan8bce6652010-07-13 21:41:46 +00002374 }
2375
Sean Callanan771131d2010-09-30 21:18:25 +00002376 ///////////////////////////////
2377 // Run function-level passes
2378 //
2379
Sean Callananc0492742011-05-23 21:40:23 +00002380 if (!ResolveExternals(*function))
Sean Callanan3aa7da52010-12-13 22:46:15 +00002381 {
2382 if (log)
2383 log->Printf("ResolveExternals() failed");
Sean Callanan97c924e2011-01-27 01:07:04 +00002384
2385 // ResolveExternals() reports its own errors, so we don't do so here
2386
Sean Callanan1d1b39c2010-11-08 00:31:32 +00002387 return false;
Sean Callanan3aa7da52010-12-13 22:46:15 +00002388 }
Sean Callanan1d1b39c2010-11-08 00:31:32 +00002389
Sean Callananc0492742011-05-23 21:40:23 +00002390 if (!ReplaceVariables(*function))
Sean Callanan3aa7da52010-12-13 22:46:15 +00002391 {
2392 if (log)
2393 log->Printf("ReplaceVariables() failed");
Sean Callanan97c924e2011-01-27 01:07:04 +00002394
2395 // ReplaceVariables() reports its own errors, so we don't do so here
2396
Sean Callanan771131d2010-09-30 21:18:25 +00002397 return false;
Sean Callanan3aa7da52010-12-13 22:46:15 +00002398 }
Sean Callanan771131d2010-09-30 21:18:25 +00002399
Sean Callananc0492742011-05-23 21:40:23 +00002400 if (!ReplaceStrings())
2401 {
2402 if (log)
2403 log->Printf("ReplaceStrings() failed");
2404
2405 return false;
2406 }
2407
2408 if (!CompleteDataAllocation())
2409 {
2410 if (log)
2411 log->Printf("CompleteDataAllocation() failed");
2412
2413 return false;
2414 }
2415
Sean Callanan8bce6652010-07-13 21:41:46 +00002416 if (log)
2417 {
Sean Callanan321fe9e2010-07-28 01:00:59 +00002418 std::string s;
2419 raw_string_ostream oss(s);
Sean Callanan8bce6652010-07-13 21:41:46 +00002420
Sean Callananc0492742011-05-23 21:40:23 +00002421 m_module->print(oss, NULL);
Sean Callanan321fe9e2010-07-28 01:00:59 +00002422
2423 oss.flush();
2424
Greg Claytonb5037af2010-11-15 01:47:11 +00002425 log->Printf("Module after preparing for execution: \n\"%s\"", s.c_str());
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00002426 }
2427
2428 return true;
2429}
2430
2431void
Greg Clayton3c7feb42010-11-19 01:05:25 +00002432IRForTarget::assignPassManager (PMStack &pass_mgr_stack, PassManagerType pass_mgr_type)
Sean Callanan5cf4a1c2010-07-03 01:35:46 +00002433{
2434}
2435
2436PassManagerType
2437IRForTarget::getPotentialPassManagerType() const
2438{
2439 return PMT_ModulePassManager;
2440}