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

  /art/compiler/dex/
reg_location.h 39 * FIXME: The orig_sreg field was added as a workaround for llvm bitcode generation. With
54 int16_t orig_sreg; // TODO: remove after Bitcode gen complete member in struct:art::RegLocation
vreg_analysis.cc 412 table[i].orig_sreg, storage_name[table[i].location],
424 table[i].orig_sreg, storage_name[table[i].location],
521 int orig_sreg = reg_location_[i].s_reg_low; local
522 reg_location_[i].orig_sreg = orig_sreg;
523 reg_location_[i].s_reg_low = SRegToVReg(orig_sreg);
mir_graph.h 714 return loc.orig_sreg < 0 ? false : IsConst(loc.orig_sreg);
719 return constant_values_[loc.orig_sreg];
730 DCHECK_LT(loc.orig_sreg + 1, GetNumSSARegs());
731 return (static_cast<int64_t>(constant_values_[loc.orig_sreg + 1]) << 32) |
732 Low32Bits(static_cast<int64_t>(constant_values_[loc.orig_sreg]));
746 * would be filtered out with current settings. When orig_sreg field is removed
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 149 ::llvm::Value* value = GetLLVMValue(rl_src.orig_sreg);
176 ::llvm::Value* value = GetLLVMValue(rl_src.orig_sreg);
199 DefineValue(res, rl_dest.orig_sreg);
206 args.push_back(GetLLVMValue(rl_src.orig_sreg));
216 args.push_back(GetLLVMValue(rl_array.orig_sreg));
275 DefineValue(res, rl_dest.orig_sreg);
279 ::llvm::Value* src = GetLLVMValue(rl_src.orig_sreg);
290 args.push_back(GetLLVMValue(rl_src.orig_sreg));
299 args.push_back(GetLLVMValue(rl_src.orig_sreg));
303 DefineValue(res, rl_dest.orig_sreg);
    [all...]
  /art/compiler/dex/quick/
mir_to_lir.cc 632 bool is_taken = EvaluateBranch(opcode, mir_graph_->ConstantValue(rl_src[0].orig_sreg),
633 mir_graph_->ConstantValue(rl_src[1].orig_sreg));
661 bool is_taken = EvaluateBranch(opcode, mir_graph_->ConstantValue(rl_src[0].orig_sreg), 0);
941 mir_graph_->ConstantValue(rl_src[0].orig_sreg));
945 mir_graph_->ConstantValue(rl_src[1].orig_sreg));
    [all...]
gen_invoke.cc     [all...]
codegen_util.cc 64 rl_src.orig_sreg--;
    [all...]
  /art/compiler/dex/quick/x86/
target_x86.cc 947 << ", orig: " << loc.orig_sreg;
    [all...]

Completed in 111 milliseconds