HomeSort by relevance Sort by last modified time
    Searched refs:GetInstructions (Results 1 - 25 of 37) sorted by null

1 2

  /external/lldb/test/python_api/default-constructor/
sb_symbol.py 11 obj.GetInstructions(lldb.SBTarget())
sb_function.py 11 obj.GetInstructions(lldb.SBTarget())
sb_target.py 28 obj.GetInstructions(lldb.SBAddress(), bytearray())
  /external/lldb/include/lldb/API/
SBFunction.h 42 GetInstructions (lldb::SBTarget target);
45 GetInstructions (lldb::SBTarget target, const char *flavor);
SBSymbol.h 44 GetInstructions (lldb::SBTarget target);
47 GetInstructions (lldb::SBTarget target, const char *flavor_string);
SBTarget.h 760 GetInstructions (lldb::SBAddress base_addr, const void *buf, size_t size);
769 GetInstructions (lldb::addr_t base_addr, const void *buf, size_t size);
  /external/lldb/scripts/Python/interface/
SBFunction.i 66 GetInstructions (lldb::SBTarget target);
69 GetInstructions (lldb::SBTarget target, const char *flavor);
97 return self.GetInstructions (target)
SBSymbol.i 39 GetInstructions (lldb::SBTarget target);
42 GetInstructions (lldb::SBTarget target, const char *flavor_string);
73 return self.GetInstructions (target)
  /external/lldb/test/python_api/disassemble-raw-data/
TestDisassemble_VST1_64.py 33 insts = target.GetInstructions(lldb.SBAddress(), raw_bytes)
48 insts = target.GetInstructions(lldb.SBAddress(), raw_bytes)
TestDisassembleRawData.py 29 insts = target.GetInstructions(lldb.SBAddress(), raw_bytes)
  /external/lldb/examples/python/
disasm.py 80 insts = function.GetInstructions(target)
89 insts = symbol.GetInstructions(target)
  /external/lldb/source/API/
SBFunction.cpp 123 SBFunction::GetInstructions (SBTarget target)
125 return GetInstructions (target, NULL);
129 SBFunction::GetInstructions (SBTarget target, const char *flavor)
SBSymbol.cpp 117 SBSymbol::GetInstructions (SBTarget target)
119 return GetInstructions (target, NULL);
123 SBSymbol::GetInstructions (SBTarget target, const char *flavor_string)
  /art/compiler/optimizing/
dead_code_elimination.cc 59 block->GetPhis().CountSize() + block->GetInstructions().CountSize());
123 HBackwardInstructionIterator i(block->GetInstructions());
prepare_for_register_allocation.cc 26 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done();
side_effects_analysis.cc 45 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done();
licm.cc 112 for (HInstructionIterator inst_it(inner->GetInstructions());
optimizing_unit_test.h 64 for (HInstructionIterator it(graph->GetBlocks().Get(i)->GetInstructions());
nodes.cc 58 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
731 return block->GetInstructions().FoundBefore(this, other_instruction);
812 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
    [all...]
graph_checker.cc 107 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
164 : input->GetBlock()->GetInstructions();
180 : use->GetBlock()->GetInstructions();
ssa_builder.cc 180 for (HInstructionIterator it(itb.Current()->GetInstructions()); !it.Done(); it.Advance()) {
336 for (HInstructionIterator it(GetGraph()->GetEntryBlock()->GetInstructions());
413 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
constant_folding.cc 52 for (HInstructionIterator inst_it(block->GetInstructions());
inliner.cc 248 for (HInstructionIterator instr_it(block->GetInstructions());
ssa_test.cc 72 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
  /external/lldb/test/lang/cpp/class_types/
TestClassTypesDisassembly.py 112 insts = function.GetInstructions(target)

Completed in 114 milliseconds

1 2