Searched refs:CONST (Results 1 - 23 of 23) sorted by path

/art/compiler/dex/
H A Dglobal_value_numbering_test.cc562 DEF_CONST(5, Instruction::CONST, 8u, 1000),
564 DEF_IGET(6, Instruction::IGET, 10u, 300u, 2u), // Differs from the top and the CONST.
568 DEF_CONST(3, Instruction::CONST, 13u, 2000),
571 DEF_IGET(6, Instruction::IGET, 16u, 400u, 3u), // Differs from the top, equals the CONST.
590 DEF_CONST(4, Instruction::CONST, 32u, 3000),
593 DEF_CONST(5, Instruction::CONST, 35u, 3001),
601 DEF_CONST(4, Instruction::CONST, 42u, 3000),
604 DEF_CONST(5, Instruction::CONST, 45u, 3001),
662 DEF_CONST(5, Instruction::CONST, 5u, 1000),
664 DEF_IGET(6, Instruction::IGET, 7u, 100u, 2u), // Differs from the top and the CONST
[all...]
H A Dgvn_dead_code_elimination.cc1203 case Instruction::CONST:
H A Dgvn_dead_code_elimination_test.cc632 DEF_CONST(3, Instruction::CONST, 4u, 1000),
821 DEF_CONST(3, Instruction::CONST, 0u, 1000u),
844 // Check that the CONST defines the s_reg 1, v_reg 1, originally defined by the move 1u.
858 DEF_CONST(3, Instruction::CONST, 0u, 1000u),
881 // Check that the CONST defines the s_reg 1, v_reg 1, originally defined by the move 1u.
896 DEF_CONST(3, Instruction::CONST, 0u, 1000u),
899 DEF_CONST(3, Instruction::CONST, 3u, 3000u),
943 DEF_CONST(3, Instruction::CONST, 4u, 1000),
982 DEF_CONST(3, Instruction::CONST, 4u, 1000),
984 DEF_CONST(3, Instruction::CONST,
[all...]
H A Dlocal_value_numbering.cc1215 Instruction::Code op = raw_dest.fp ? Instruction::CONST_HIGH16 : Instruction::CONST;
1224 Instruction::Code op = raw_dest.fp ? Instruction::CONST_HIGH16 : Instruction::CONST;
1566 uint16_t index = gvn_->LookupValue(Instruction::CONST, i, 0u, 0);
1696 case Instruction::CONST:
1909 uint16_t operand2 = gvn_->LookupValue(Instruction::CONST, mir->dalvikInsn.vC, 0, 0);
H A Dlocal_value_numbering_test.cc734 DEF_CONST(Instruction::CONST, 0u, 100),
735 DEF_CONST(Instruction::CONST, 1u, 200),
738 DEF_CONST(Instruction::CONST, 20u, 0),
739 DEF_CONST(Instruction::CONST, 21u, 1),
878 DEF_CONST(Instruction::CONST, 11u, (1 << 16) + 1),
879 DEF_CONST(Instruction::CONST, 12u, (1 << 16) - 1),
880 DEF_CONST(Instruction::CONST, 13u, (-1 << 16) + 1),
881 DEF_CONST(Instruction::CONST, 14u, (-1 << 16) - 1),
894 DEF_CONST(Instruction::CONST, 26u, (1 << 16) + 1),
895 DEF_CONST(Instruction::CONST, 2
[all...]
H A Dmir_graph.cc2283 case Instruction::CONST:
H A Dmir_optimization.cc80 case Instruction::CONST:
213 case Instruction::CONST:
1045 * Note: we can't tell if a CONST definition might be used as an object, so treat
H A Dtype_inference.cc738 case Instruction::CONST:
H A Dtype_inference_test.cc759 DEF_CONST(3u, Instruction::CONST, 0u, 0),
761 DEF_CONST(3u, Instruction::CONST, 1u, 0),
765 DEF_CONST(3u, Instruction::CONST, 4u, 0),
767 DEF_CONST(3u, Instruction::CONST, 5u, 0),
771 DEF_CONST(3u, Instruction::CONST, 8u, 0),
773 DEF_CONST(3u, Instruction::CONST, 9u, 0),
775 DEF_CONST(3u, Instruction::CONST, 10u, 0),
777 DEF_CONST(3u, Instruction::CONST, 11u, 0),
826 DEF_CONST(3u, Instruction::CONST, 0u, 0),
828 DEF_CONST(3u, Instruction::CONST,
[all...]
/art/compiler/dex/quick/arm/
H A Dutility_arm.cc162 case Instruction::CONST:
994 } else if (!InexpensiveConstantInt(displacement >> scale, Instruction::CONST) &&
1010 if (!InexpensiveConstantInt(displacement >> scale, Instruction::CONST) ||
1011 (scale != 0 && InexpensiveConstantInt(displacement, Instruction::CONST))) {
1133 } else if (!InexpensiveConstantInt(displacement >> scale, Instruction::CONST) &&
1152 if (!InexpensiveConstantInt(displacement >> scale, Instruction::CONST) ||
1153 (scale != 0 && InexpensiveConstantInt(displacement, Instruction::CONST))) {
/art/compiler/dex/quick/
H A Ddex_file_method_inliner.cc851 // Insert the CONST instruction.
853 insn->dalvikInsn.opcode = Instruction::CONST;
H A Dmir_to_lir.cc582 case Instruction::CONST:
H A Dquick_compiler.cc158 Instruction::CONST,
/art/compiler/optimizing/
H A Dbuilder.cc1336 case Instruction::CONST: {
H A Dcodegen_test.cc398 Instruction::CONST | 0 << 8, input_lo, input_hi, \
/art/runtime/
H A Ddex_instruction_list.h41 V(0x14, CONST, "const", k31i, true, kNone, kContinue | kRegBFieldOrConstant, kVerifyRegA) \
/art/runtime/interpreter/
H A Dinterpreter_goto_table_impl.cc368 HANDLE_INSTRUCTION_START(CONST) {
H A Dinterpreter_switch_impl.cc270 case Instruction::CONST: {
/art/runtime/quick/
H A Dinline_method_analyser.cc99 case Instruction::CONST:
/art/runtime/verifier/
H A Dmethod_verifier.cc1842 case Instruction::CONST: {
/art/test/003-omnibus-opcodes/src/
H A DInternedString.java20 public static final String CONST = "Class InternedString"; field in class:InternedString
43 WeakReference strRef = new WeakReference<String>(CONST.intern());
47 Main.assertTrue(CONST == CONST.intern());
51 String s = CONST;
57 Main.assertTrue(strRef.get() == CONST);
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DInstruction.java340 addOpcodeInfo(Opcode.CONST, "const", 0x14, new Format31i());
H A DOpcode.java40 CONST, enum constant in enum:Opcode

Completed in 123 milliseconds