HomeSort by relevance Sort by last modified time
    Searched defs:v_reg (Results 1 - 8 of 8) sorted by null

  /art/compiler/dex/
ssa_transformation.cc 554 int v_reg = SRegToVReg(ssa_reg); local
571 int ssa_reg = pred_bb->data_flow_info->vreg_to_ssa_map_exit[v_reg];
mir_graph.h 180 // Minimum field size to contain Dalvik v_reg number.
211 int32_t v_reg; // Virtual register number for temporary. member in struct:art::CompilerTemp
    [all...]
  /art/compiler/dex/quick/arm/
target_arm.cc 628 void ArmMir2Lir::MarkPreservedSingle(int v_reg, RegStorage reg) {
637 fp_vmap_table_[adjusted_reg_num] = v_reg;
643 void ArmMir2Lir::MarkPreservedDouble(int v_reg, RegStorage reg) {
648 MarkPreservedSingle(v_reg, lo);
649 MarkPreservedSingle(v_reg + 1, hi);
762 int v_reg = mir_graph_->SRegToVReg(s_reg); local
781 MarkPreservedSingle(v_reg, p->GetReg());
792 MarkPreservedDouble(v_reg, info->GetReg());
817 int v_reg = mir_graph_->SRegToVReg(s_reg); local
819 MarkPreservedSingle(v_reg, res)
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
enc_mips32.c 527 int v_reg; local
555 "lh %[v_reg], 0(%[res_coeffs]) \n\t"
559 "negu %[temp_2], %[v_reg] \n\t"
560 "slti %[temp_3], %[v_reg], 0 \n\t"
561 "movn %[v_reg], %[temp_2], %[temp_3] \n\t"
565 "sltiu %[temp_3], %[v_reg], 2 \n\t"
566 "move %[ctx_reg], %[v_reg] \n\t"
569 "slt %[temp_3], %[v_reg], %[const_max_level] \n\t"
570 "movn %[temp_1], %[v_reg], %[temp_3] \n\t"
571 "sll %[temp_2], %[v_reg], 1 \n\t
    [all...]
  /external/webp/src/dsp/
enc_mips32.c 527 int v_reg; local
555 "lh %[v_reg], 0(%[res_coeffs]) \n\t"
559 "negu %[temp_2], %[v_reg] \n\t"
560 "slti %[temp_3], %[v_reg], 0 \n\t"
561 "movn %[v_reg], %[temp_2], %[temp_3] \n\t"
565 "sltiu %[temp_3], %[v_reg], 2 \n\t"
566 "move %[ctx_reg], %[v_reg] \n\t"
569 "slt %[temp_3], %[v_reg], %[const_max_level] \n\t"
570 "movn %[temp_1], %[v_reg], %[temp_3] \n\t"
571 "sll %[temp_2], %[v_reg], 1 \n\t
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 74 int v_reg = mir_graph_->SRegToVReg(s_reg); local
75 ::llvm::Value* table_slot = irb_->getInt32(v_reg);
    [all...]
  /art/compiler/dex/quick/
ralloc_util.cc 247 * v_reg numbers to distinguish them and can have an arbitrary
254 int v_reg = mir_graph_->SRegToVReg(s_reg); local
255 if (v_reg >= 0) {
256 DCHECK_LT(v_reg, cu_->num_dalvik_registers);
257 return v_reg;
260 * It must be the case that the v_reg for temporary is less than or equal to the
263 unsigned int position = std::abs(v_reg) - std::abs(static_cast<int>(kVRegTempBaseReg));
274 int v_reg = mir_graph_->SRegToVReg(s_reg); local
279 core_vmap_table_.push_back(reg_num << VREG_NUM_WIDTH | (v_reg & ((1 << VREG_NUM_WIDTH) - 1)));
308 int v_reg = mir_graph_->SRegToVReg(s_reg) local
761 int v_reg = mir_graph_->SRegToVReg(info1->SReg()); local
769 int v_reg = mir_graph_->SRegToVReg(info->SReg()); local
781 int v_reg = mir_graph_->SRegToVReg(info->SReg()); local
    [all...]
  /external/valgrind/main/VEX/priv/
host_ppc_defs.c 4735 UInt opc2, v_reg, r_idx, r_base; local
    [all...]

Completed in 151 milliseconds