HomeSort by relevance Sort by last modified time
    Searched refs:dex_offset (Results 1 - 2 of 2) sorted by null

  /art/compiler/optimizing/
builder.h 57 bool AnalyzeDexInstruction(const Instruction& instruction, int32_t dex_offset);
90 template<typename T> void If_21t(const Instruction& instruction, uint32_t dex_offset);
91 template<typename T> void If_22t(const Instruction& instruction, uint32_t dex_offset);
95 bool BuildFieldAccess(const Instruction& instruction, uint32_t dex_offset, bool is_get);
97 uint32_t dex_offset,
103 uint32_t dex_offset,
builder.cc 140 void HGraphBuilder::If_22t(const Instruction& instruction, uint32_t dex_offset) {
147 HBasicBlock* target = FindBlockStartingAt(dex_offset + instruction.GetTargetOffset());
150 target = FindBlockStartingAt(dex_offset + instruction.SizeInCodeUnits());
157 void HGraphBuilder::If_21t(const Instruction& instruction, uint32_t dex_offset) {
163 HBasicBlock* target = FindBlockStartingAt(dex_offset + instruction.GetTargetOffset());
166 target = FindBlockStartingAt(dex_offset + instruction.SizeInCodeUnits());
199 size_t dex_offset = 0; local
201 // Update the current block if dex_offset starts a new block.
202 MaybeUpdateCurrentBlock(dex_offset);
204 if (!AnalyzeDexInstruction(instruction, dex_offset)) return nullptr
244 size_t dex_offset = 0; local
    [all...]

Completed in 158 milliseconds