blob: 32c5c9097ea94b2fe58e7e3a6def34e4a1e6edca [file] [log] [blame]
Sean Callanan47dc4572011-09-15 02:13:07 +00001//===-- IRInterpreter.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/Core/DataEncoder.h"
11#include "lldb/Core/Log.h"
12#include "lldb/Core/ValueObjectConstResult.h"
13#include "lldb/Expression/ClangExpressionDeclMap.h"
14#include "lldb/Expression/IRForTarget.h"
15#include "lldb/Expression/IRInterpreter.h"
16
17#include "llvm/Constants.h"
18#include "llvm/Function.h"
19#include "llvm/Instructions.h"
20#include "llvm/Module.h"
21#include "llvm/Support/raw_ostream.h"
22#include "llvm/Target/TargetData.h"
23
24#include <map>
25
26using namespace llvm;
27
28IRInterpreter::IRInterpreter(lldb_private::ClangExpressionDeclMap &decl_map,
29 lldb_private::Stream *error_stream) :
30 m_decl_map(decl_map),
31 m_error_stream(error_stream)
32{
33
34}
35
36IRInterpreter::~IRInterpreter()
37{
38
39}
40
41static std::string
42PrintValue(const Value *value, bool truncate = false)
43{
44 std::string s;
45 raw_string_ostream rso(s);
46 value->print(rso);
47 rso.flush();
48 if (truncate)
49 s.resize(s.length() - 1);
50
51 size_t offset;
52 while ((offset = s.find('\n')) != s.npos)
53 s.erase(offset, 1);
54 while (s[0] == ' ' || s[0] == '\t')
55 s.erase(0, 1);
56
57 return s;
58}
59
60static std::string
61PrintType(const Type *type, bool truncate = false)
62{
63 std::string s;
64 raw_string_ostream rso(s);
65 type->print(rso);
66 rso.flush();
67 if (truncate)
68 s.resize(s.length() - 1);
69 return s;
70}
71
72typedef lldb::SharedPtr <lldb_private::DataEncoder>::Type DataEncoderSP;
73typedef lldb::SharedPtr <lldb_private::DataExtractor>::Type DataExtractorSP;
74
75class Memory
76{
77public:
78 typedef uint32_t index_t;
79
80 struct Allocation
81 {
82 // m_virtual_address is always the address of the variable in the virtual memory
83 // space provided by Memory.
84 //
85 // m_origin is always non-NULL and describes the source of the data (possibly
86 // m_data if this allocation is the authoritative source).
87 //
88 // Possible value configurations:
89 //
90 // Allocation type getValueType() getContextType() m_origin->GetScalar() m_data
91 // =========================================================================================================================
92 // FileAddress eValueTypeFileAddress eContextTypeInvalid A location in a binary NULL
93 // image
94 //
95 // LoadAddress eValueTypeLoadAddress eContextTypeInvalid A location in the target's NULL
96 // virtual memory
97 //
98 // Alloca eValueTypeHostAddress eContextTypeInvalid == m_data->GetBytes() Deleted at end of
99 // execution
100 //
101 // PersistentVar eValueTypeHostAddress eContextTypeClangType A persistent variable's NULL
102 // location in LLDB's memory
103 //
104 // Register [ignored] eContextTypeRegister [ignored] Flushed to the register
105 // at the end of execution
106
107 lldb::addr_t m_virtual_address;
108 size_t m_extent;
109 lldb_private::Value m_origin;
110 lldb::DataBufferSP m_data;
111
112 Allocation (lldb::addr_t virtual_address,
113 size_t extent,
114 lldb::DataBufferSP data) :
115 m_virtual_address(virtual_address),
116 m_extent(extent),
117 m_data(data)
118 {
119 }
120
121 Allocation (const Allocation &allocation) :
122 m_virtual_address(allocation.m_virtual_address),
123 m_extent(allocation.m_extent),
124 m_origin(allocation.m_origin),
125 m_data(allocation.m_data)
126 {
127 }
128 };
129
130 typedef lldb::SharedPtr <Allocation>::Type AllocationSP;
131
132 struct Region
133 {
134 AllocationSP m_allocation;
135 uint64_t m_base;
136 uint64_t m_extent;
137
138 Region () :
139 m_allocation(),
140 m_base(0),
141 m_extent(0)
142 {
143 }
144
145 Region (AllocationSP allocation, uint64_t base, uint64_t extent) :
146 m_allocation(allocation),
147 m_base(base),
148 m_extent(extent)
149 {
150 }
151
152 Region (const Region &region) :
153 m_allocation(region.m_allocation),
154 m_base(region.m_base),
155 m_extent(region.m_extent)
156 {
157 }
158
159 bool IsValid ()
160 {
161 return m_allocation != NULL;
162 }
163
164 bool IsInvalid ()
165 {
166 return m_allocation == NULL;
167 }
168 };
169
170 typedef std::vector <AllocationSP> MemoryMap;
171
172private:
173 lldb::addr_t m_addr_base;
174 lldb::addr_t m_addr_max;
175 MemoryMap m_memory;
176 lldb::ByteOrder m_byte_order;
177 lldb::addr_t m_addr_byte_size;
178 TargetData &m_target_data;
179
180 lldb_private::ClangExpressionDeclMap &m_decl_map;
181
182 MemoryMap::iterator LookupInternal (lldb::addr_t addr)
183 {
184 for (MemoryMap::iterator i = m_memory.begin(), e = m_memory.end();
185 i != e;
186 ++i)
187 {
188 if ((*i)->m_virtual_address <= addr &&
189 (*i)->m_virtual_address + (*i)->m_extent > addr)
190 return i;
191 }
192
193 return m_memory.end();
194 }
195
196public:
197 Memory (TargetData &target_data,
198 lldb_private::ClangExpressionDeclMap &decl_map,
199 lldb::addr_t alloc_start,
200 lldb::addr_t alloc_max) :
201 m_addr_base(alloc_start),
202 m_addr_max(alloc_max),
203 m_target_data(target_data),
204 m_decl_map(decl_map)
205 {
206 m_byte_order = (target_data.isLittleEndian() ? lldb::eByteOrderLittle : lldb::eByteOrderBig);
207 m_addr_byte_size = (target_data.getPointerSize());
208 }
209
210 Region Malloc (size_t size, size_t align)
211 {
212 lldb::DataBufferSP data(new lldb_private::DataBufferHeap(size, 0));
213
214 if (data)
215 {
216 index_t index = m_memory.size();
217
218 const size_t mask = (align - 1);
219
220 m_addr_base += mask;
221 m_addr_base &= ~mask;
222
223 if (m_addr_base + size < m_addr_base ||
224 m_addr_base + size > m_addr_max)
225 return Region();
226
227 uint64_t base = m_addr_base;
228
229 m_memory.push_back(AllocationSP(new Allocation(base, size, data)));
230
231 m_addr_base += size;
232
233 AllocationSP alloc = m_memory[index];
234
235 alloc->m_origin.GetScalar() = (unsigned long long)data->GetBytes();
236 alloc->m_origin.SetContext(lldb_private::Value::eContextTypeInvalid, NULL);
237 alloc->m_origin.SetValueType(lldb_private::Value::eValueTypeHostAddress);
238
239 return Region(alloc, base, size);
240 }
241
242 return Region();
243 }
244
245 Region Malloc (Type *type)
246 {
247 return Malloc (m_target_data.getTypeAllocSize(type),
248 m_target_data.getPrefTypeAlignment(type));
249 }
250
251 Region Place (Type *type, lldb::addr_t base, lldb_private::Value &value)
252 {
253 index_t index = m_memory.size();
254 size_t size = m_target_data.getTypeAllocSize(type);
255
256 m_memory.push_back(AllocationSP(new Allocation(base, size, lldb::DataBufferSP())));
257
258 AllocationSP alloc = m_memory[index];
259
260 alloc->m_origin = value;
261
262 return Region(alloc, base, size);
263 }
264
265 void Free (lldb::addr_t addr)
266 {
267 MemoryMap::iterator i = LookupInternal (addr);
268
269 if (i != m_memory.end())
270 m_memory.erase(i);
271 }
272
273 Region Lookup (lldb::addr_t addr, Type *type)
274 {
275 MemoryMap::iterator i = LookupInternal(addr);
276
277 if (i == m_memory.end())
278 return Region();
279
280 size_t size = m_target_data.getTypeStoreSize(type);
281
282 return Region(*i, addr, size);
283 }
284
285 DataEncoderSP GetEncoder (Region region)
286 {
287 if (region.m_allocation->m_origin.GetValueType() != lldb_private::Value::eValueTypeHostAddress)
288 return DataEncoderSP();
289
290 lldb::DataBufferSP buffer = region.m_allocation->m_data;
291
292 if (!buffer)
293 return DataEncoderSP();
294
295 size_t base_offset = (size_t)(region.m_base - region.m_allocation->m_virtual_address);
296
297 return DataEncoderSP(new lldb_private::DataEncoder(buffer->GetBytes() + base_offset, region.m_extent, m_byte_order, m_addr_byte_size));
298 }
299
300 DataExtractorSP GetExtractor (Region region)
301 {
302 if (region.m_allocation->m_origin.GetValueType() != lldb_private::Value::eValueTypeHostAddress)
303 return DataExtractorSP();
304
305 lldb::DataBufferSP buffer = region.m_allocation->m_data;
306 size_t base_offset = (size_t)(region.m_base - region.m_allocation->m_virtual_address);
307
308 if (buffer)
309 return DataExtractorSP(new lldb_private::DataExtractor(buffer->GetBytes() + base_offset, region.m_extent, m_byte_order, m_addr_byte_size));
310 else
311 return DataExtractorSP(new lldb_private::DataExtractor((uint8_t*)region.m_allocation->m_origin.GetScalar().ULongLong() + base_offset, region.m_extent, m_byte_order, m_addr_byte_size));
312 }
313
314 lldb_private::Value GetAccessTarget(lldb::addr_t addr)
315 {
316 MemoryMap::iterator i = LookupInternal(addr);
317
318 if (i == m_memory.end())
319 return lldb_private::Value();
320
321 lldb_private::Value target = (*i)->m_origin;
322
323 if (target.GetContextType() == lldb_private::Value::eContextTypeRegisterInfo)
324 {
325 target.SetContext(lldb_private::Value::eContextTypeInvalid, NULL);
326 target.SetValueType(lldb_private::Value::eValueTypeHostAddress);
327 target.GetScalar() = (unsigned long long)(*i)->m_data->GetBytes();
328 }
329
330 target.GetScalar() += (addr - (*i)->m_virtual_address);
331
332 return target;
333 }
334
335 bool Write (lldb::addr_t addr, const uint8_t *data, size_t length)
336 {
337 lldb_private::Value target = GetAccessTarget(addr);
338
339 return m_decl_map.WriteTarget(target, data, length);
340 }
341
342 bool Read (uint8_t *data, lldb::addr_t addr, size_t length)
343 {
Sean Callanan557ccd62011-10-21 05:18:02 +0000344 lldb_private::Value source = GetAccessTarget(addr);
Sean Callanan47dc4572011-09-15 02:13:07 +0000345
Sean Callanan557ccd62011-10-21 05:18:02 +0000346 return m_decl_map.ReadTarget(data, source, length);
347 }
348
349 bool WriteToRawPtr (lldb::addr_t addr, const uint8_t *data, size_t length)
350 {
351 lldb_private::Value target = m_decl_map.WrapBareAddress(addr);
352
353 return m_decl_map.WriteTarget(target, data, length);
354 }
355
356 bool ReadFromRawPtr (uint8_t *data, lldb::addr_t addr, size_t length)
357 {
358 lldb_private::Value source = m_decl_map.WrapBareAddress(addr);
359
360 return m_decl_map.ReadTarget(data, source, length);
Sean Callanan47dc4572011-09-15 02:13:07 +0000361 }
362
363 std::string PrintData (lldb::addr_t addr, size_t length)
364 {
365 lldb_private::Value target = GetAccessTarget(addr);
366
367 lldb_private::DataBufferHeap buf(length, 0);
368
369 if (!m_decl_map.ReadTarget(buf.GetBytes(), target, length))
370 return std::string("<couldn't read data>");
371
372 lldb_private::StreamString ss;
373
374 for (size_t i = 0; i < length; i++)
375 {
376 if ((!(i & 0xf)) && i)
377 ss.Printf("%02hhx - ", buf.GetBytes()[i]);
378 else
379 ss.Printf("%02hhx ", buf.GetBytes()[i]);
380 }
381
382 return ss.GetString();
383 }
384
385 std::string SummarizeRegion (Region &region)
386 {
387 lldb_private::StreamString ss;
388
389 lldb_private::Value base = GetAccessTarget(region.m_base);
390
391 ss.Printf("%llx [%s - %s %llx]",
392 region.m_base,
393 lldb_private::Value::GetValueTypeAsCString(base.GetValueType()),
394 lldb_private::Value::GetContextTypeAsCString(base.GetContextType()),
395 base.GetScalar().ULongLong());
396
397 ss.Printf(" %s", PrintData(region.m_base, region.m_extent).c_str());
398
399 return ss.GetString();
400 }
401};
402
403class InterpreterStackFrame
404{
405public:
406 typedef std::map <const Value*, Memory::Region> ValueMap;
407
408 ValueMap m_values;
409 Memory &m_memory;
410 TargetData &m_target_data;
411 lldb_private::ClangExpressionDeclMap &m_decl_map;
412 const BasicBlock *m_bb;
413 BasicBlock::const_iterator m_ii;
414 BasicBlock::const_iterator m_ie;
415
416 lldb::ByteOrder m_byte_order;
417 size_t m_addr_byte_size;
418
419 InterpreterStackFrame (TargetData &target_data,
420 Memory &memory,
421 lldb_private::ClangExpressionDeclMap &decl_map) :
422 m_target_data (target_data),
423 m_memory (memory),
424 m_decl_map (decl_map)
425 {
426 m_byte_order = (target_data.isLittleEndian() ? lldb::eByteOrderLittle : lldb::eByteOrderBig);
427 m_addr_byte_size = (target_data.getPointerSize());
428 }
429
430 void Jump (const BasicBlock *bb)
431 {
432 m_bb = bb;
433 m_ii = m_bb->begin();
434 m_ie = m_bb->end();
435 }
436
437 bool Cache (Memory::AllocationSP allocation, Type *type)
438 {
439 if (allocation->m_origin.GetContextType() != lldb_private::Value::eContextTypeRegisterInfo)
440 return false;
441
442 return m_decl_map.ReadTarget(allocation->m_data->GetBytes(), allocation->m_origin, allocation->m_data->GetByteSize());
443 }
444
445 std::string SummarizeValue (const Value *value)
446 {
447 lldb_private::StreamString ss;
448
449 ss.Printf("%s", PrintValue(value).c_str());
450
451 ValueMap::iterator i = m_values.find(value);
452
453 if (i != m_values.end())
454 {
455 Memory::Region region = i->second;
456
457 ss.Printf(" %s", m_memory.SummarizeRegion(region).c_str());
458 }
459
460 return ss.GetString();
461 }
462
463 bool AssignToMatchType (lldb_private::Scalar &scalar, uint64_t u64value, Type *type)
464 {
465 size_t type_size = m_target_data.getTypeStoreSize(type);
466
467 switch (type_size)
468 {
469 case 1:
470 scalar = (uint8_t)u64value;
471 break;
472 case 2:
473 scalar = (uint16_t)u64value;
474 break;
475 case 4:
476 scalar = (uint32_t)u64value;
477 break;
478 case 8:
479 scalar = (uint64_t)u64value;
480 break;
481 default:
482 return false;
483 }
484
485 return true;
486 }
487
488 bool EvaluateValue (lldb_private::Scalar &scalar, const Value *value, Module &module)
489 {
490 const Constant *constant = dyn_cast<Constant>(value);
491
492 if (constant)
493 {
494 if (const ConstantInt *constant_int = dyn_cast<ConstantInt>(constant))
495 {
496 return AssignToMatchType(scalar, constant_int->getLimitedValue(), value->getType());
497 }
498 }
499 else
500 {
501 Memory::Region region = ResolveValue(value, module);
502 DataExtractorSP value_extractor = m_memory.GetExtractor(region);
503
504 if (!value_extractor)
505 return false;
506
507 size_t value_size = m_target_data.getTypeStoreSize(value->getType());
508
509 uint32_t offset = 0;
510 uint64_t u64value = value_extractor->GetMaxU64(&offset, value_size);
511
512 return AssignToMatchType(scalar, u64value, value->getType());
513 }
514
515 return false;
516 }
517
518 bool AssignValue (const Value *value, lldb_private::Scalar &scalar, Module &module)
519 {
520 Memory::Region region = ResolveValue (value, module);
521
522 lldb_private::Scalar cast_scalar;
523
524 if (!AssignToMatchType(cast_scalar, scalar.GetRawBits64(0), value->getType()))
525 return false;
526
527 lldb_private::DataBufferHeap buf(cast_scalar.GetByteSize(), 0);
528
529 lldb_private::Error err;
530
531 if (!cast_scalar.GetAsMemoryData(buf.GetBytes(), buf.GetByteSize(), m_byte_order, err))
532 return false;
533
534 DataEncoderSP region_encoder = m_memory.GetEncoder(region);
535
536 memcpy(region_encoder->GetDataStart(), buf.GetBytes(), buf.GetByteSize());
537
538 return true;
539 }
540
541 bool ResolveConstant (Memory::Region &region, const Constant *constant)
542 {
543 size_t constant_size = m_target_data.getTypeStoreSize(constant->getType());
544
545 if (const ConstantInt *constant_int = dyn_cast<ConstantInt>(constant))
546 {
547 const uint64_t *raw_data = constant_int->getValue().getRawData();
548 return m_memory.Write(region.m_base, (const uint8_t*)raw_data, constant_size);
549 }
Sean Callanan557ccd62011-10-21 05:18:02 +0000550 else if (const ConstantFP *constant_fp = dyn_cast<ConstantFP>(constant))
Sean Callanan47dc4572011-09-15 02:13:07 +0000551 {
552 const uint64_t *raw_data = constant_fp->getValueAPF().bitcastToAPInt().getRawData();
553 return m_memory.Write(region.m_base, (const uint8_t*)raw_data, constant_size);
554 }
Sean Callanan557ccd62011-10-21 05:18:02 +0000555 else if (const ConstantExpr *constant_expr = dyn_cast<ConstantExpr>(constant))
556 {
557 switch (constant_expr->getOpcode())
558 {
559 default:
560 return false;
561 case Instruction::IntToPtr:
562 case Instruction::BitCast:
563 return ResolveConstant(region, constant_expr->getOperand(0));
564 }
565 }
Sean Callanan47dc4572011-09-15 02:13:07 +0000566
567 return false;
568 }
569
570 Memory::Region ResolveValue (const Value *value, Module &module)
571 {
572 ValueMap::iterator i = m_values.find(value);
573
574 if (i != m_values.end())
575 return i->second;
576
577 const GlobalValue *global_value = dyn_cast<GlobalValue>(value);
578
579 // Attempt to resolve the value using the program's data.
580 // If it is, the values to be created are:
581 //
582 // data_region - a region of memory in which the variable's data resides.
583 // ref_region - a region of memory in which its address (i.e., &var) resides.
584 // In the JIT case, this region would be a member of the struct passed in.
585 // pointer_region - a region of memory in which the address of the pointer
586 // resides. This is an IR-level variable.
587 do
588 {
589 if (!global_value)
590 break;
591
592 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
593
594 clang::NamedDecl *decl = IRForTarget::DeclForGlobal(global_value, &module);
595
596 if (!decl)
597 break;
598
599 lldb_private::Value resolved_value = m_decl_map.LookupDecl(decl);
600
601 if (resolved_value.GetScalar().GetType() != lldb_private::Scalar::e_void)
602 {
603 if (resolved_value.GetContextType() == lldb_private::Value::eContextTypeRegisterInfo)
604 {
605 Memory::Region data_region = m_memory.Malloc(value->getType());
606 data_region.m_allocation->m_origin = resolved_value;
607 Memory::Region ref_region = m_memory.Malloc(value->getType());
608 Memory::Region pointer_region = m_memory.Malloc(value->getType());
609
610 if (!Cache(data_region.m_allocation, value->getType()))
611 return Memory::Region();
612
613 if (ref_region.IsInvalid())
614 return Memory::Region();
615
616 if (pointer_region.IsInvalid())
617 return Memory::Region();
618
619 DataEncoderSP ref_encoder = m_memory.GetEncoder(ref_region);
620
621 if (ref_encoder->PutAddress(0, data_region.m_base) == UINT32_MAX)
622 return Memory::Region();
623
624 DataEncoderSP pointer_encoder = m_memory.GetEncoder(pointer_region);
625
626 if (pointer_encoder->PutAddress(0, ref_region.m_base) == UINT32_MAX)
627 return Memory::Region();
628
629 m_values[value] = pointer_region;
630 return pointer_region;
631 }
632 else if (isa<clang::FunctionDecl>(decl))
633 {
634 if (log)
635 log->Printf("The interpreter does not handle function pointers at the moment");
636
637 return Memory::Region();
638 }
639 else
640 {
641 Memory::Region data_region = m_memory.Place(value->getType(), resolved_value.GetScalar().ULongLong(), resolved_value);
642 Memory::Region ref_region = m_memory.Malloc(value->getType());
643 Memory::Region pointer_region = m_memory.Malloc(value->getType());
644
645 if (ref_region.IsInvalid())
646 return Memory::Region();
647
648 if (pointer_region.IsInvalid())
649 return Memory::Region();
650
651 DataEncoderSP ref_encoder = m_memory.GetEncoder(ref_region);
652
653 if (ref_encoder->PutAddress(0, data_region.m_base) == UINT32_MAX)
654 return Memory::Region();
655
656 DataEncoderSP pointer_encoder = m_memory.GetEncoder(pointer_region);
657
658 if (pointer_encoder->PutAddress(0, ref_region.m_base) == UINT32_MAX)
659 return Memory::Region();
660
661 m_values[value] = pointer_region;
662
663 if (log)
664 {
665 log->Printf("Made an allocation for %s", PrintValue(global_value).c_str());
666 log->Printf(" Data contents : %s", m_memory.PrintData(data_region.m_base, data_region.m_extent).c_str());
667 log->Printf(" Data region : %llx", (unsigned long long)data_region.m_base);
668 log->Printf(" Ref region : %llx", (unsigned long long)ref_region.m_base);
669 log->Printf(" Pointer region : %llx", (unsigned long long)pointer_region.m_base);
670 }
671
672 return pointer_region;
673 }
674 }
675 }
676 while(0);
677
678 // Fall back and allocate space [allocation type Alloca]
679
680 Type *type = value->getType();
681
682 lldb::ValueSP backing_value(new lldb_private::Value);
683
684 Memory::Region data_region = m_memory.Malloc(type);
685 data_region.m_allocation->m_origin.GetScalar() = (unsigned long long)data_region.m_allocation->m_data->GetBytes();
686 data_region.m_allocation->m_origin.SetContext(lldb_private::Value::eContextTypeInvalid, NULL);
687 data_region.m_allocation->m_origin.SetValueType(lldb_private::Value::eValueTypeHostAddress);
688
689 const Constant *constant = dyn_cast<Constant>(value);
690
691 do
692 {
693 if (!constant)
694 break;
695
696 if (!ResolveConstant (data_region, constant))
697 return Memory::Region();
698 }
699 while(0);
700
701 m_values[value] = data_region;
702 return data_region;
703 }
704
705 bool ConstructResult (lldb::ClangExpressionVariableSP &result,
706 const GlobalValue *result_value,
707 const lldb_private::ConstString &result_name,
708 lldb_private::TypeFromParser result_type,
709 Module &module)
710 {
711 // The result_value resolves to P, a pointer to a region R containing the result data.
712 // If the result variable is a reference, the region R contains a pointer to the result R_final in the original process.
713
714 if (!result_value)
715 return true; // There was no slot for a result – the expression doesn't return one.
716
717 ValueMap::iterator i = m_values.find(result_value);
718
719 if (i == m_values.end())
720 return false; // There was a slot for the result, but we didn't write into it.
721
722 Memory::Region P = i->second;
723 DataExtractorSP P_extractor = m_memory.GetExtractor(P);
724
725 if (!P_extractor)
726 return false;
727
728 Type *pointer_ty = result_value->getType();
729 PointerType *pointer_ptr_ty = dyn_cast<PointerType>(pointer_ty);
730 if (!pointer_ptr_ty)
731 return false;
732 Type *R_ty = pointer_ptr_ty->getElementType();
733
734 uint32_t offset = 0;
735 lldb::addr_t pointer = P_extractor->GetAddress(&offset);
736
737 Memory::Region R = m_memory.Lookup(pointer, R_ty);
738
739 if (R.m_allocation->m_origin.GetValueType() != lldb_private::Value::eValueTypeHostAddress ||
740 !R.m_allocation->m_data)
741 return false;
742
743 lldb_private::Value base;
744
Sean Callanana8428a42011-09-22 00:41:11 +0000745 bool transient = false;
Sean Callanan557ccd62011-10-21 05:18:02 +0000746 bool maybe_make_load = false;
Sean Callanana8428a42011-09-22 00:41:11 +0000747
Sean Callanan47dc4572011-09-15 02:13:07 +0000748 if (m_decl_map.ResultIsReference(result_name))
749 {
750 PointerType *R_ptr_ty = dyn_cast<PointerType>(R_ty);
751 if (!R_ptr_ty)
752 return false;
753 Type *R_final_ty = R_ptr_ty->getElementType();
754
755 DataExtractorSP R_extractor = m_memory.GetExtractor(R);
756
757 if (!R_extractor)
758 return false;
759
760 offset = 0;
761 lldb::addr_t R_pointer = R_extractor->GetAddress(&offset);
762
763 Memory::Region R_final = m_memory.Lookup(R_pointer, R_final_ty);
764
Sean Callanan557ccd62011-10-21 05:18:02 +0000765 if (R_final.m_allocation)
766 {
767 if (R_final.m_allocation->m_data)
768 transient = true; // this is a stack allocation
Sean Callanan47dc4572011-09-15 02:13:07 +0000769
Sean Callanan557ccd62011-10-21 05:18:02 +0000770 base = R_final.m_allocation->m_origin;
771 base.GetScalar() += (R_final.m_base - R_final.m_allocation->m_virtual_address);
772 }
773 else
774 {
775 // We got a bare pointer. We are going to treat it as a load address
776 // or a file address, letting decl_map make the choice based on whether
777 // or not a process exists.
778
779 base.SetContext(lldb_private::Value::eContextTypeInvalid, NULL);
780 base.SetValueType(lldb_private::Value::eValueTypeFileAddress);
781 base.GetScalar() = (unsigned long long)R_pointer;
782 maybe_make_load = true;
783 }
Sean Callanan47dc4572011-09-15 02:13:07 +0000784 }
785 else
786 {
787 base.SetContext(lldb_private::Value::eContextTypeInvalid, NULL);
788 base.SetValueType(lldb_private::Value::eValueTypeHostAddress);
789 base.GetScalar() = (unsigned long long)R.m_allocation->m_data->GetBytes() + (R.m_base - R.m_allocation->m_virtual_address);
790 }
791
Sean Callanan557ccd62011-10-21 05:18:02 +0000792 return m_decl_map.CompleteResultVariable (result, base, result_name, result_type, transient, maybe_make_load);
Sean Callanan47dc4572011-09-15 02:13:07 +0000793 }
794};
795
796bool
797IRInterpreter::maybeRunOnFunction (lldb::ClangExpressionVariableSP &result,
798 const lldb_private::ConstString &result_name,
799 lldb_private::TypeFromParser result_type,
800 Function &llvm_function,
801 Module &llvm_module)
802{
803 if (supportsFunction (llvm_function))
804 return runOnFunction(result,
805 result_name,
806 result_type,
807 llvm_function,
808 llvm_module);
809 else
810 return false;
811}
812
813bool
814IRInterpreter::supportsFunction (Function &llvm_function)
815{
816 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
817
818 for (Function::iterator bbi = llvm_function.begin(), bbe = llvm_function.end();
819 bbi != bbe;
820 ++bbi)
821 {
822 for (BasicBlock::iterator ii = bbi->begin(), ie = bbi->end();
823 ii != ie;
824 ++ii)
825 {
826 switch (ii->getOpcode())
827 {
828 default:
829 {
830 if (log)
831 log->Printf("Unsupported instruction: %s", PrintValue(ii).c_str());
832 return false;
833 }
834 case Instruction::Add:
835 case Instruction::Alloca:
836 case Instruction::BitCast:
837 case Instruction::Br:
838 case Instruction::GetElementPtr:
839 break;
840 case Instruction::ICmp:
841 {
842 ICmpInst *icmp_inst = dyn_cast<ICmpInst>(ii);
843
844 if (!icmp_inst)
845 return false;
846
847 switch (icmp_inst->getPredicate())
848 {
849 default:
850 {
851 if (log)
852 log->Printf("Unsupported ICmp predicate: %s", PrintValue(ii).c_str());
853 return false;
854 }
855 case CmpInst::ICMP_EQ:
856 case CmpInst::ICMP_NE:
857 case CmpInst::ICMP_UGT:
858 case CmpInst::ICMP_UGE:
859 case CmpInst::ICMP_ULT:
860 case CmpInst::ICMP_ULE:
861 case CmpInst::ICMP_SGT:
862 case CmpInst::ICMP_SGE:
863 case CmpInst::ICMP_SLT:
864 case CmpInst::ICMP_SLE:
865 break;
866 }
867 }
868 break;
Sean Callanan557ccd62011-10-21 05:18:02 +0000869 case Instruction::IntToPtr:
Sean Callanan47dc4572011-09-15 02:13:07 +0000870 case Instruction::Load:
871 case Instruction::Mul:
872 case Instruction::Ret:
873 case Instruction::SDiv:
874 case Instruction::Store:
875 case Instruction::Sub:
876 case Instruction::UDiv:
877 break;
878 }
879 }
880 }
881
882 return true;
883}
884
885bool
886IRInterpreter::runOnFunction (lldb::ClangExpressionVariableSP &result,
887 const lldb_private::ConstString &result_name,
888 lldb_private::TypeFromParser result_type,
889 Function &llvm_function,
890 Module &llvm_module)
891{
892 lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
893
894 lldb_private::ClangExpressionDeclMap::TargetInfo target_info = m_decl_map.GetTargetInfo();
895
896 if (!target_info.IsValid())
897 return false;
898
899 lldb::addr_t alloc_min;
900 lldb::addr_t alloc_max;
901
902 switch (target_info.address_byte_size)
903 {
904 default:
905 return false;
906 case 4:
907 alloc_min = 0x00001000llu;
908 alloc_max = 0x0000ffffllu;
909 break;
910 case 8:
911 alloc_min = 0x0000000000001000llu;
912 alloc_max = 0x000000000000ffffllu;
913 break;
914 }
915
916 TargetData target_data(&llvm_module);
917 if (target_data.getPointerSize() != target_info.address_byte_size)
918 return false;
919 if (target_data.isLittleEndian() != (target_info.byte_order == lldb::eByteOrderLittle))
920 return false;
921
922 Memory memory(target_data, m_decl_map, alloc_min, alloc_max);
923 InterpreterStackFrame frame(target_data, memory, m_decl_map);
924
925 uint32_t num_insts = 0;
926
927 frame.Jump(llvm_function.begin());
928
929 while (frame.m_ii != frame.m_ie && (++num_insts < 4096))
930 {
931 const Instruction *inst = frame.m_ii;
932
933 if (log)
934 log->Printf("Interpreting %s", PrintValue(inst).c_str());
935
936 switch (inst->getOpcode())
937 {
938 default:
939 break;
940 case Instruction::Add:
941 case Instruction::Sub:
942 case Instruction::Mul:
943 case Instruction::SDiv:
944 case Instruction::UDiv:
945 {
946 const BinaryOperator *bin_op = dyn_cast<BinaryOperator>(inst);
947
948 if (!bin_op)
949 {
950 if (log)
951 log->Printf("getOpcode() returns %s, but instruction is not a BinaryOperator", inst->getOpcodeName());
952
953 return false;
954 }
955
956 Value *lhs = inst->getOperand(0);
957 Value *rhs = inst->getOperand(1);
958
959 lldb_private::Scalar L;
960 lldb_private::Scalar R;
961
962 if (!frame.EvaluateValue(L, lhs, llvm_module))
963 {
964 if (log)
965 log->Printf("Couldn't evaluate %s", PrintValue(lhs).c_str());
966
967 return false;
968 }
969
970 if (!frame.EvaluateValue(R, rhs, llvm_module))
971 {
972 if (log)
973 log->Printf("Couldn't evaluate %s", PrintValue(rhs).c_str());
974
975 return false;
976 }
977
978 lldb_private::Scalar result;
979
980 switch (inst->getOpcode())
981 {
982 default:
983 break;
984 case Instruction::Add:
985 result = L + R;
986 break;
987 case Instruction::Mul:
988 result = L * R;
989 break;
990 case Instruction::Sub:
991 result = L - R;
992 break;
993 case Instruction::SDiv:
994 result = L / R;
995 break;
996 case Instruction::UDiv:
997 result = L.GetRawBits64(0) / R.GetRawBits64(1);
998 break;
999 }
1000
1001 frame.AssignValue(inst, result, llvm_module);
1002
1003 if (log)
1004 {
1005 log->Printf("Interpreted a %s", inst->getOpcodeName());
1006 log->Printf(" L : %s", frame.SummarizeValue(lhs).c_str());
1007 log->Printf(" R : %s", frame.SummarizeValue(rhs).c_str());
1008 log->Printf(" = : %s", frame.SummarizeValue(inst).c_str());
1009 }
1010 }
1011 break;
1012 case Instruction::Alloca:
1013 {
1014 const AllocaInst *alloca_inst = dyn_cast<AllocaInst>(inst);
1015
1016 if (!alloca_inst)
1017 {
1018 if (log)
1019 log->Printf("getOpcode() returns Alloca, but instruction is not an AllocaInst");
1020
1021 return false;
1022 }
1023
1024 if (alloca_inst->isArrayAllocation())
1025 {
1026 if (log)
1027 log->Printf("AllocaInsts are not handled if isArrayAllocation() is true");
1028
1029 return false;
1030 }
1031
1032 // The semantics of Alloca are:
1033 // Create a region R of virtual memory of type T, backed by a data buffer
1034 // Create a region P of virtual memory of type T*, backed by a data buffer
1035 // Write the virtual address of R into P
1036
1037 Type *T = alloca_inst->getAllocatedType();
1038 Type *Tptr = alloca_inst->getType();
1039
1040 Memory::Region R = memory.Malloc(T);
1041
1042 if (R.IsInvalid())
1043 {
1044 if (log)
1045 log->Printf("Couldn't allocate memory for an AllocaInst");
1046
1047 return false;
1048 }
1049
1050 Memory::Region P = memory.Malloc(Tptr);
1051
1052 if (P.IsInvalid())
1053 {
1054 if (log)
1055 log->Printf("Couldn't allocate the result pointer for an AllocaInst");
1056
1057 return false;
1058 }
1059
1060 DataEncoderSP P_encoder = memory.GetEncoder(P);
1061
1062 if (P_encoder->PutAddress(0, R.m_base) == UINT32_MAX)
1063 {
1064 if (log)
1065 log->Printf("Couldn't write the reseult pointer for an AllocaInst");
1066
1067 return false;
1068 }
1069
1070 frame.m_values[alloca_inst] = P;
1071
1072 if (log)
1073 {
1074 log->Printf("Interpreted an AllocaInst");
1075 log->Printf(" R : %s", memory.SummarizeRegion(R).c_str());
1076 log->Printf(" P : %s", frame.SummarizeValue(alloca_inst).c_str());
1077 }
1078 }
1079 break;
1080 case Instruction::BitCast:
1081 {
1082 const BitCastInst *bit_cast_inst = dyn_cast<BitCastInst>(inst);
1083
1084 if (!bit_cast_inst)
1085 {
1086 if (log)
1087 log->Printf("getOpcode() returns BitCast, but instruction is not a BitCastInst");
1088
1089 return false;
1090 }
1091
1092 Value *source = bit_cast_inst->getOperand(0);
1093
1094 lldb_private::Scalar S;
1095
1096 if (!frame.EvaluateValue(S, source, llvm_module))
1097 {
1098 if (log)
1099 log->Printf("Couldn't evaluate %s", PrintValue(source).c_str());
1100
1101 return false;
1102 }
1103
1104 frame.AssignValue(inst, S, llvm_module);
1105 }
1106 break;
1107 case Instruction::Br:
1108 {
1109 const BranchInst *br_inst = dyn_cast<BranchInst>(inst);
1110
1111 if (!br_inst)
1112 {
1113 if (log)
1114 log->Printf("getOpcode() returns Br, but instruction is not a BranchInst");
1115
1116 return false;
1117 }
1118
1119 if (br_inst->isConditional())
1120 {
1121 Value *condition = br_inst->getCondition();
1122
1123 lldb_private::Scalar C;
1124
1125 if (!frame.EvaluateValue(C, condition, llvm_module))
1126 {
1127 if (log)
1128 log->Printf("Couldn't evaluate %s", PrintValue(condition).c_str());
1129
1130 return false;
1131 }
1132
1133 if (C.GetRawBits64(0))
1134 frame.Jump(br_inst->getSuccessor(0));
1135 else
1136 frame.Jump(br_inst->getSuccessor(1));
1137
1138 if (log)
1139 {
1140 log->Printf("Interpreted a BrInst with a condition");
1141 log->Printf(" cond : %s", frame.SummarizeValue(condition).c_str());
1142 }
1143 }
1144 else
1145 {
1146 frame.Jump(br_inst->getSuccessor(0));
1147
1148 if (log)
1149 {
1150 log->Printf("Interpreted a BrInst with no condition");
1151 }
1152 }
1153 }
1154 continue;
1155 case Instruction::GetElementPtr:
1156 {
1157 const GetElementPtrInst *gep_inst = dyn_cast<GetElementPtrInst>(inst);
1158
1159 if (!gep_inst)
1160 {
1161 if (log)
1162 log->Printf("getOpcode() returns GetElementPtr, but instruction is not a GetElementPtrInst");
1163
1164 return false;
1165 }
1166
1167 const Value *pointer_operand = gep_inst->getPointerOperand();
1168 Type *pointer_type = pointer_operand->getType();
1169
1170 lldb_private::Scalar P;
1171
1172 if (!frame.EvaluateValue(P, pointer_operand, llvm_module))
1173 return false;
1174
1175 SmallVector <Value *, 8> indices (gep_inst->idx_begin(),
1176 gep_inst->idx_end());
1177
1178 uint64_t offset = target_data.getIndexedOffset(pointer_type, indices);
1179
1180 lldb_private::Scalar Poffset = P + offset;
1181
1182 frame.AssignValue(inst, Poffset, llvm_module);
1183
1184 if (log)
1185 {
1186 log->Printf("Interpreted a GetElementPtrInst");
1187 log->Printf(" P : %s", frame.SummarizeValue(pointer_operand).c_str());
1188 log->Printf(" Poffset : %s", frame.SummarizeValue(inst).c_str());
1189 }
1190 }
1191 break;
1192 case Instruction::ICmp:
1193 {
1194 const ICmpInst *icmp_inst = dyn_cast<ICmpInst>(inst);
1195
1196 if (!icmp_inst)
1197 {
1198 if (log)
1199 log->Printf("getOpcode() returns ICmp, but instruction is not an ICmpInst");
1200
1201 return false;
1202 }
1203
1204 CmpInst::Predicate predicate = icmp_inst->getPredicate();
1205
1206 Value *lhs = inst->getOperand(0);
1207 Value *rhs = inst->getOperand(1);
1208
1209 lldb_private::Scalar L;
1210 lldb_private::Scalar R;
1211
1212 if (!frame.EvaluateValue(L, lhs, llvm_module))
1213 {
1214 if (log)
1215 log->Printf("Couldn't evaluate %s", PrintValue(lhs).c_str());
1216
1217 return false;
1218 }
1219
1220 if (!frame.EvaluateValue(R, rhs, llvm_module))
1221 {
1222 if (log)
1223 log->Printf("Couldn't evaluate %s", PrintValue(rhs).c_str());
1224
1225 return false;
1226 }
1227
1228 lldb_private::Scalar result;
1229
1230 switch (predicate)
1231 {
1232 default:
1233 return false;
1234 case CmpInst::ICMP_EQ:
1235 result = (L == R);
1236 break;
1237 case CmpInst::ICMP_NE:
1238 result = (L != R);
1239 break;
1240 case CmpInst::ICMP_UGT:
1241 result = (L.GetRawBits64(0) > R.GetRawBits64(0));
1242 break;
1243 case CmpInst::ICMP_UGE:
1244 result = (L.GetRawBits64(0) >= R.GetRawBits64(0));
1245 break;
1246 case CmpInst::ICMP_ULT:
1247 result = (L.GetRawBits64(0) < R.GetRawBits64(0));
1248 break;
1249 case CmpInst::ICMP_ULE:
1250 result = (L.GetRawBits64(0) <= R.GetRawBits64(0));
1251 break;
1252 case CmpInst::ICMP_SGT:
1253 result = (L > R);
1254 break;
1255 case CmpInst::ICMP_SGE:
1256 result = (L >= R);
1257 break;
1258 case CmpInst::ICMP_SLT:
1259 result = (L < R);
1260 break;
1261 case CmpInst::ICMP_SLE:
1262 result = (L <= R);
1263 break;
1264 }
1265
1266 frame.AssignValue(inst, result, llvm_module);
1267
1268 if (log)
1269 {
1270 log->Printf("Interpreted an ICmpInst");
1271 log->Printf(" L : %s", frame.SummarizeValue(lhs).c_str());
1272 log->Printf(" R : %s", frame.SummarizeValue(rhs).c_str());
1273 log->Printf(" = : %s", frame.SummarizeValue(inst).c_str());
1274 }
1275 }
1276 break;
Sean Callanan557ccd62011-10-21 05:18:02 +00001277 case Instruction::IntToPtr:
1278 {
1279 const IntToPtrInst *int_to_ptr_inst = dyn_cast<IntToPtrInst>(inst);
1280
1281 if (!int_to_ptr_inst)
1282 {
1283 if (log)
1284 log->Printf("getOpcode() returns IntToPtr, but instruction is not an IntToPtrInst");
1285
1286 return false;
1287 }
1288
1289 Value *src_operand = int_to_ptr_inst->getOperand(0);
1290
1291 lldb_private::Scalar I;
1292
1293 if (!frame.EvaluateValue(I, src_operand, llvm_module))
1294 return false;
1295
1296 frame.AssignValue(inst, I, llvm_module);
1297
1298 if (log)
1299 {
1300 log->Printf("Interpreted an IntToPtr");
1301 log->Printf(" Src : %s", frame.SummarizeValue(src_operand).c_str());
1302 log->Printf(" = : %s", frame.SummarizeValue(inst).c_str());
1303 }
1304 }
1305 break;
Sean Callanan47dc4572011-09-15 02:13:07 +00001306 case Instruction::Load:
1307 {
1308 const LoadInst *load_inst = dyn_cast<LoadInst>(inst);
1309
1310 if (!load_inst)
1311 {
1312 if (log)
1313 log->Printf("getOpcode() returns Load, but instruction is not a LoadInst");
1314
1315 return false;
1316 }
1317
1318 // The semantics of Load are:
1319 // Create a region D that will contain the loaded data
1320 // Resolve the region P containing a pointer
1321 // Dereference P to get the region R that the data should be loaded from
1322 // Transfer a unit of type type(D) from R to D
1323
1324 const Value *pointer_operand = load_inst->getPointerOperand();
1325
1326 Type *pointer_ty = pointer_operand->getType();
1327 PointerType *pointer_ptr_ty = dyn_cast<PointerType>(pointer_ty);
1328 if (!pointer_ptr_ty)
1329 return false;
1330 Type *target_ty = pointer_ptr_ty->getElementType();
1331
1332 Memory::Region D = frame.ResolveValue(load_inst, llvm_module);
1333 Memory::Region P = frame.ResolveValue(pointer_operand, llvm_module);
1334
1335 if (D.IsInvalid())
1336 {
1337 if (log)
1338 log->Printf("LoadInst's value doesn't resolve to anything");
1339
1340 return false;
1341 }
1342
1343 if (P.IsInvalid())
1344 {
1345 if (log)
1346 log->Printf("LoadInst's pointer doesn't resolve to anything");
1347
1348 return false;
1349 }
1350
1351 DataExtractorSP P_extractor(memory.GetExtractor(P));
1352 DataEncoderSP D_encoder(memory.GetEncoder(D));
1353
1354 uint32_t offset = 0;
1355 lldb::addr_t pointer = P_extractor->GetAddress(&offset);
1356
1357 Memory::Region R = memory.Lookup(pointer, target_ty);
1358
Sean Callanan557ccd62011-10-21 05:18:02 +00001359 if (R.IsValid())
1360 {
1361 if (!memory.Read(D_encoder->GetDataStart(), R.m_base, target_data.getTypeStoreSize(target_ty)))
1362 {
1363 if (log)
1364 log->Printf("Couldn't read from a region on behalf of a LoadInst");
1365
1366 return false;
1367 }
1368 }
1369 else
1370 {
1371 if (!memory.ReadFromRawPtr(D_encoder->GetDataStart(), pointer, target_data.getTypeStoreSize(target_ty)))
1372 {
1373 if (log)
1374 log->Printf("Couldn't read from a raw pointer on behalf of a LoadInst");
1375
1376 return false;
1377 }
1378 }
Sean Callanan47dc4572011-09-15 02:13:07 +00001379
1380 if (log)
1381 {
1382 log->Printf("Interpreted a LoadInst");
1383 log->Printf(" P : %s", frame.SummarizeValue(pointer_operand).c_str());
Sean Callanan557ccd62011-10-21 05:18:02 +00001384 if (R.IsValid())
1385 log->Printf(" R : %s", memory.SummarizeRegion(R).c_str());
1386 else
1387 log->Printf(" R : raw pointer 0x%llx", (unsigned long long)pointer);
Sean Callanan47dc4572011-09-15 02:13:07 +00001388 log->Printf(" D : %s", frame.SummarizeValue(load_inst).c_str());
1389 }
1390 }
1391 break;
1392 case Instruction::Ret:
1393 {
1394 if (result_name.IsEmpty())
1395 return true;
1396
1397 GlobalValue *result_value = llvm_module.getNamedValue(result_name.GetCString());
1398 return frame.ConstructResult(result, result_value, result_name, result_type, llvm_module);
1399 }
1400 case Instruction::Store:
1401 {
1402 const StoreInst *store_inst = dyn_cast<StoreInst>(inst);
1403
1404 if (!store_inst)
1405 {
1406 if (log)
1407 log->Printf("getOpcode() returns Store, but instruction is not a StoreInst");
1408
1409 return false;
1410 }
1411
1412 // The semantics of Store are:
1413 // Resolve the region D containing the data to be stored
1414 // Resolve the region P containing a pointer
1415 // Dereference P to get the region R that the data should be stored in
1416 // Transfer a unit of type type(D) from D to R
1417
1418 const Value *value_operand = store_inst->getValueOperand();
1419 const Value *pointer_operand = store_inst->getPointerOperand();
1420
1421 Type *pointer_ty = pointer_operand->getType();
1422 PointerType *pointer_ptr_ty = dyn_cast<PointerType>(pointer_ty);
1423 if (!pointer_ptr_ty)
1424 return false;
1425 Type *target_ty = pointer_ptr_ty->getElementType();
1426
1427 Memory::Region D = frame.ResolveValue(value_operand, llvm_module);
1428 Memory::Region P = frame.ResolveValue(pointer_operand, llvm_module);
1429
1430 if (D.IsInvalid())
1431 {
1432 if (log)
1433 log->Printf("StoreInst's value doesn't resolve to anything");
1434
1435 return false;
1436 }
1437
1438 if (P.IsInvalid())
1439 {
1440 if (log)
1441 log->Printf("StoreInst's pointer doesn't resolve to anything");
1442
1443 return false;
1444 }
1445
1446 DataExtractorSP P_extractor(memory.GetExtractor(P));
1447 DataExtractorSP D_extractor(memory.GetExtractor(D));
1448
1449 if (!P_extractor || !D_extractor)
1450 return false;
1451
1452 uint32_t offset = 0;
1453 lldb::addr_t pointer = P_extractor->GetAddress(&offset);
1454
1455 Memory::Region R = memory.Lookup(pointer, target_ty);
1456
Sean Callanan557ccd62011-10-21 05:18:02 +00001457 if (R.IsValid())
Sean Callanan47dc4572011-09-15 02:13:07 +00001458 {
Sean Callanan557ccd62011-10-21 05:18:02 +00001459 if (!memory.Write(R.m_base, D_extractor->GetDataStart(), target_data.getTypeStoreSize(target_ty)))
1460 {
1461 if (log)
1462 log->Printf("Couldn't write to a region on behalf of a LoadInst");
1463
1464 return false;
1465 }
1466 }
1467 else
1468 {
1469 if (!memory.WriteToRawPtr(pointer, D_extractor->GetDataStart(), target_data.getTypeStoreSize(target_ty)))
1470 {
1471 if (log)
1472 log->Printf("Couldn't write to a raw pointer on behalf of a LoadInst");
1473
1474 return false;
1475 }
Sean Callanan47dc4572011-09-15 02:13:07 +00001476 }
1477
Sean Callanan47dc4572011-09-15 02:13:07 +00001478
1479 if (log)
1480 {
1481 log->Printf("Interpreted a StoreInst");
1482 log->Printf(" D : %s", frame.SummarizeValue(value_operand).c_str());
1483 log->Printf(" P : %s", frame.SummarizeValue(pointer_operand).c_str());
1484 log->Printf(" R : %s", memory.SummarizeRegion(R).c_str());
1485 }
1486 }
1487 break;
1488 }
1489
1490 ++frame.m_ii;
1491 }
1492
1493 if (num_insts >= 4096)
1494 return false;
1495
1496 return false;
Greg Clayton141f8d92011-10-12 00:53:29 +00001497}