Searched defs:code_ptr (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Dexception_test.cc93 const uint8_t* code_ptr = &fake_header_code_and_maps_[mapping_table_offset]; local
97 method_f_->SetEntryPointFromQuickCompiledCode(code_ptr);
102 method_g_->SetEntryPointFromQuickCompiledCode(code_ptr);
/art/compiler/
H A Dcommon_compiler_test.cc176 const void* code_ptr; local
204 code_ptr = &(*chunk)[code_offset];
207 code_ptr = &(*code)[0];
209 MakeExecutable(code_ptr, code->size());
210 const void* method_code = CompiledMethod::CodePointer(code_ptr,
/art/compiler/optimizing/
H A Dbuilder.cc177 const uint16_t* code_ptr = code_item.insns_; local
193 ComputeBranchTargets(code_ptr, code_end);
200 while (code_ptr < code_end) {
203 const Instruction& instruction = *Instruction::At(code_ptr);
206 code_ptr += instruction.SizeInCodeUnits();
233 void HGraphBuilder::ComputeBranchTargets(const uint16_t* code_ptr, const uint16_t* code_end) { argument
235 branch_targets_.SetSize(code_end - code_ptr);
245 while (code_ptr < code_end) {
246 const Instruction& instruction = *Instruction::At(code_ptr);
255 code_ptr
[all...]
/art/compiler/dex/
H A Dmir_graph.cc140 int MIRGraph::ParseInsn(const uint16_t* code_ptr, MIR::DecodedInstruction* decoded_instruction) { argument
141 const Instruction* inst = Instruction::At(code_ptr);
400 int width, int flags, const uint16_t* code_ptr,
458 } else if (code_ptr < code_end) {
544 const uint16_t* code_ptr, const uint16_t* code_end) {
596 if (code_ptr < code_end) {
660 const uint16_t* code_ptr = current_code_item_->insns_; local
723 while (code_ptr < code_end) {
727 int width = ParseInsn(code_ptr, &insn->dalvikInsn);
750 if ((width == 1) && ((current_offset_ & 0x1) == 0x1) && ((code_end - code_ptr) >
399 ProcessCanBranch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width, int flags, const uint16_t* code_ptr, const uint16_t* code_end) argument
542 ProcessCanThrow(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width, int flags, ArenaBitVector* try_block_addr, const uint16_t* code_ptr, const uint16_t* code_end) argument
[all...]

Completed in 402 milliseconds