Home
last modified time | relevance | path

Searched refs:NextInstruction (Results 1 – 11 of 11) sorted by relevance

/external/google-breakpad/src/processor/
Ddisassembler_x86_unittest.cc84 EXPECT_EQ(1U, dis.NextInstruction()); in TEST()
92 EXPECT_EQ(0U, dis.NextInstruction()); in TEST()
99 EXPECT_EQ(0U, dis.NextInstruction()); in TEST()
105 EXPECT_EQ(2U, dis.NextInstruction()); in TEST()
111 EXPECT_EQ(2U, dis.NextInstruction()); in TEST()
116 EXPECT_EQ(2U, dis.NextInstruction()); in TEST()
126 EXPECT_EQ(6U, dis.NextInstruction()); in TEST()
132 EXPECT_EQ(3U, dis.NextInstruction()); in TEST()
137 EXPECT_EQ(1U, dis.NextInstruction()); in TEST()
141 EXPECT_EQ(5U, dis.NextInstruction()); in TEST()
[all …]
Dexploitability_win.cc223 disassembler.NextInstruction(); in CheckPlatformExploitability()
244 while (disassembler.NextInstruction() && in CheckPlatformExploitability()
Ddisassembler_x86.h74 uint32_t NextInstruction();
Ddisassembler_x86.cc57 uint32_t DisassemblerX86::NextInstruction() { in NextInstruction() function in google_breakpad::DisassemblerX86
/external/v8/src/crankshaft/
Dlithium-allocator.cc196 use_pos->pos().Value() > pos.NextInstruction().InstructionEnd().Value(); in CanBeSpilled()
578 block->last_instruction_index()).NextInstruction(); in AddInitialIntervals()
702 range->AddUseInterval(position, position.NextInstruction(), zone()); in Define()
703 range->AddUsePosition(position.NextInstruction(), NULL, NULL, zone()); in Define()
1321 back_edge->last_instruction_index()).NextInstruction(); in BuildLiveRanges()
1531 next_pos = next_pos.NextInstruction(); in AllocateRegisters()
1540 current->Start().NextInstruction().Value()) { in AllocateRegisters()
Dlithium-allocator.h79 LifetimePosition NextInstruction() const { in NextInstruction() function
/external/vixl/src/vixl/a64/
Dinstructions-a64.h401 const Instruction* NextInstruction() const { in NextInstruction() function
Ddebugger-a64.cc580 current = current->NextInstruction()) { in PrintInstructions()
Dsimulator-a64.cc824 set_lr(instr->NextInstruction()); in VisitUnconditionalBranch()
847 set_lr(instr->NextInstruction()); in VisitUnconditionalBranchToRegister()
Dsimulator-a64.h706 pc_ = pc_->NextInstruction(); in increment_pc()
/external/llvm/bindings/go/llvm/
Dir.go1142 func NextInstruction(v Value) (rv Value) { rv.C = C.LLVMGetNextInstruction(v.C); return } func