HomeSort by relevance Sort by last modified time
    Searched refs:GetInstructions (Results 1 - 25 of 31) 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)
disasm-stress-test.py 158 inst_list = target.GetInstructions(fake_address, inst_bytes)
symbolication.py 82 return function.GetInstructions(self.target)
83 return sym_ctx.GetSymbol().GetInstructions(self.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/
ssa_builder.cc 50 for (HInstructionIterator it(GetGraph()->GetEntryBlock()->GetInstructions());
127 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
ssa_liveness_analysis.cc 125 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
195 for (HBackwardInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
code_generator.cc 54 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
82 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
ssa_test.cc 72 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
nodes.cc 43 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
443 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
graph_visualizer.cc 228 PrintInstructions(block->GetInstructions());
  /external/lldb/test/lang/cpp/class_types/
TestClassTypesDisassembly.py 112 insts = function.GetInstructions(target)
  /art/compiler/sea_ir/debug/
dot_gen.cc 132 std::vector<InstructionNode*>* instructions = region->GetInstructions();
  /art/compiler/sea_ir/ir/
sea.h 155 std::vector<InstructionNode*>* GetInstructions() {
  /art/compiler/sea_ir/types/
type_inference.cc 151 std::vector<InstructionNode*>* instructions = (*region_it)->GetInstructions();

Completed in 2949 milliseconds

1 2