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

  /art/compiler/dex/quick/arm/
utility_arm.cc 134 bool ArmMir2Lir::InexpensiveConstantInt(int32_t value) {
138 bool ArmMir2Lir::InexpensiveConstantInt(int32_t value, Instruction::Code opcode) {
208 return InexpensiveConstantInt(High32Bits(value)) && InexpensiveConstantInt(Low32Bits(value));
719 if ((InexpensiveConstantInt(val_lo) && (InexpensiveConstantInt(val_hi)))) {
    [all...]
codegen_arm.h 232 bool InexpensiveConstantInt(int32_t value) OVERRIDE;
233 bool InexpensiveConstantInt(int32_t value, Instruction::Code opcode) OVERRIDE;
int_arm.cc 222 DCHECK(InexpensiveConstantInt(true_val));
223 DCHECK(InexpensiveConstantInt(false_val));
262 bool cheap_false_val = InexpensiveConstantInt(false_val);
275 } else if (cheap_false_val && InexpensiveConstantInt(true_val)) {
    [all...]
  /art/compiler/dex/quick/arm64/
codegen_arm64.h 226 bool InexpensiveConstantInt(int32_t value) OVERRIDE;
227 bool InexpensiveConstantInt(int32_t value, Instruction::Code opcode) OVERRIDE;
utility_arm64.cc 311 bool Arm64Mir2Lir::InexpensiveConstantInt(int32_t value ATTRIBUTE_UNUSED) {
336 bool Arm64Mir2Lir::InexpensiveConstantInt(int32_t value, Instruction::Code opcode) {
    [all...]
  /art/compiler/dex/quick/
mir_to_lir.cc 1004 InexpensiveConstantInt(mir_graph_->ConstantValue(rl_src[0]), opcode)) {
    [all...]
mir_to_lir.h     [all...]
gen_common.cc 392 InexpensiveConstantInt(constant_value, opcode)) {
    [all...]
codegen_util.cc 81 res = InexpensiveConstantInt(mir_graph_->ConstantValue(rl_src));
    [all...]
  /art/compiler/dex/quick/mips/
codegen_mips.h 227 bool InexpensiveConstantInt(int32_t value);
utility_mips.cc 101 bool MipsMir2Lir::InexpensiveConstantInt(int32_t value) {
    [all...]
  /art/compiler/dex/quick/x86/
codegen_x86.h 320 bool InexpensiveConstantInt(int32_t value) OVERRIDE;
    [all...]
utility_x86.cc 60 bool X86Mir2Lir::InexpensiveConstantInt(int32_t value) {
    [all...]

Completed in 456 milliseconds