Searched refs:orig_sreg (Results 1 – 8 of 8) sorted by relevance
/art/compiler/dex/portable/ |
D | mir_to_gbc.cc | 149 ::llvm::Value* value = GetLLVMValue(rl_src.orig_sreg); in ConvertPackedSwitch() 176 ::llvm::Value* value = GetLLVMValue(rl_src.orig_sreg); in ConvertSparseSwitch() 199 DefineValue(res, rl_dest.orig_sreg); in ConvertSget() 206 args.push_back(GetLLVMValue(rl_src.orig_sreg)); in ConvertSput() 216 args.push_back(GetLLVMValue(rl_array.orig_sreg)); in ConvertFillArrayData() 275 DefineValue(res, rl_dest.orig_sreg); in ConvertMoveException() 279 ::llvm::Value* src = GetLLVMValue(rl_src.orig_sreg); in ConvertThrow() 290 args.push_back(GetLLVMValue(rl_src.orig_sreg)); in ConvertMonitorEnterExit() 299 args.push_back(GetLLVMValue(rl_src.orig_sreg)); in ConvertArrayLength() 303 DefineValue(res, rl_dest.orig_sreg); in ConvertArrayLength() [all …]
|
/art/compiler/dex/ |
D | reg_location.h | 54 int16_t orig_sreg; // TODO: remove after Bitcode gen complete member
|
D | vreg_analysis.cc | 412 table[i].orig_sreg, storage_name[table[i].location], in DumpRegLocTable() 424 table[i].orig_sreg, storage_name[table[i].location], in DumpRegLocTable() 521 int orig_sreg = reg_location_[i].s_reg_low; in RemapRegLocations() local 522 reg_location_[i].orig_sreg = orig_sreg; in RemapRegLocations() 523 reg_location_[i].s_reg_low = SRegToVReg(orig_sreg); in RemapRegLocations()
|
D | mir_graph.h | 714 return loc.orig_sreg < 0 ? false : IsConst(loc.orig_sreg); in IsConst() 719 return constant_values_[loc.orig_sreg]; in ConstantValue() 730 DCHECK_LT(loc.orig_sreg + 1, GetNumSSARegs()); in ConstantValueWide() 731 return (static_cast<int64_t>(constant_values_[loc.orig_sreg + 1]) << 32) | in ConstantValueWide() 732 Low32Bits(static_cast<int64_t>(constant_values_[loc.orig_sreg])); in ConstantValueWide()
|
/art/compiler/dex/quick/ |
D | mir_to_lir.cc | 632 bool is_taken = EvaluateBranch(opcode, mir_graph_->ConstantValue(rl_src[0].orig_sreg), in CompileDalvikInstruction() 633 mir_graph_->ConstantValue(rl_src[1].orig_sreg)); in CompileDalvikInstruction() 661 bool is_taken = EvaluateBranch(opcode, mir_graph_->ConstantValue(rl_src[0].orig_sreg), 0); in CompileDalvikInstruction() 941 mir_graph_->ConstantValue(rl_src[0].orig_sreg)); in CompileDalvikInstruction() 945 mir_graph_->ConstantValue(rl_src[1].orig_sreg)); in CompileDalvikInstruction()
|
D | gen_invoke.cc | 1273 OpRegImm(kOpAdd, reg_off, mir_graph_->ConstantValue(rl_idx.orig_sreg)); in GenInlinedCharAt() 1575 if (rl_dest.orig_sreg < 0) { in GenInlinedCurrentThread()
|
D | codegen_util.cc | 64 rl_src.orig_sreg--; in IsInexpensiveConstant()
|
/art/compiler/dex/quick/x86/ |
D | target_x86.cc | 947 << ", orig: " << loc.orig_sreg; in DumpRegLocation() 1142 int32_t pos_val = mir_graph_->ConstantValue(rl_srcPos.orig_sreg); in GenInlinedArrayCopyCharArray() 1167 int32_t pos_val = mir_graph_->ConstantValue(rl_dstPos.orig_sreg); in GenInlinedArrayCopyCharArray() 1249 rl_char.is_const ? mir_graph_->ConstantValue(rl_char.orig_sreg) : 0; in GenInlinedIndexOf() 1340 start_value = mir_graph_->ConstantValue(rl_start.orig_sreg); in GenInlinedIndexOf() 2858 mir_graph_->ConstantValue(rl_idx.orig_sreg), nullptr, &comparison); in GenInlinedCharAt() 2871 OpRegImm(kOpAdd, reg_off, mir_graph_->ConstantValue(rl_idx.orig_sreg)); in GenInlinedCharAt() 2897 if (rl_dest.orig_sreg < 0) { in GenInlinedCurrentThread()
|