Home
last modified time | relevance | path

Searched refs:opcode (Results 76 – 85 of 85) sorted by relevance

1234

/art/compiler/optimizing/
Dcode_generator_arm_vixl.h306 void HandleBitwiseOperation(HBinaryOperation* operation, Opcode opcode);
315 Location ArmEncodableConstantOrRegister(HInstruction* constant, Opcode opcode);
316 bool CanEncodeConstantAsImmediate(HConstant* input_cst, Opcode opcode);
Dcode_generator_arm_vixl.cc5868 Opcode opcode) { in ArmEncodableConstantOrRegister() argument
5871 CanEncodeConstantAsImmediate(constant->AsConstant(), opcode)) { in ArmEncodableConstantOrRegister()
5880 Opcode opcode, in CanEncode32BitConstantAsImmediate() argument
5883 if (assembler->ShifterOperandCanHold(opcode, value, flags_update)) { in CanEncode32BitConstantAsImmediate()
5888 switch (opcode) { in CanEncode32BitConstantAsImmediate()
5904 return opcode == AND && IsPowerOfTwo(value + 1); in CanEncode32BitConstantAsImmediate()
5907 bool LocationsBuilderARMVIXL::CanEncodeConstantAsImmediate(HConstant* input_cst, Opcode opcode) { in CanEncodeConstantAsImmediate() argument
5910 Opcode high_opcode = opcode; in CanEncodeConstantAsImmediate()
5912 switch (opcode) { in CanEncodeConstantAsImmediate()
5916 opcode = ADD; in CanEncodeConstantAsImmediate()
[all …]
Dinstruction_builder.cc802 static InvokeType GetInvokeTypeFromOpCode(Instruction::Code opcode) { in GetInvokeTypeFromOpCode() argument
803 switch (opcode) { in GetInvokeTypeFromOpCode()
822 LOG(FATAL) << "Unexpected invoke opcode: " << opcode; in GetInvokeTypeFromOpCode()
Dinliner.cc1605 switch (inline_method.opcode) { in TryPatternSubstitution()
/art/runtime/verifier/
Dmethod_verifier.cc131 constexpr bool IsCompatThrow(Instruction::Code opcode) { in IsCompatThrow() argument
132 return opcode == Instruction::Code::RETURN_OBJECT || opcode == Instruction::Code::MOVE_EXCEPTION; in IsCompatThrow()
1082 Instruction::Code opcode = it->Opcode(); in ComputeWidthsAndCountOps() local
1083 switch (opcode) { in ComputeWidthsAndCountOps()
2009 Instruction::Code opcode = ret_inst->Opcode(); in AdjustReturnLine() local
2011 switch (opcode) { in AdjustReturnLine()
2031 LOG(FATAL) << "Unknown return opcode " << opcode; in AdjustReturnLine()
5556 Instruction::Code opcode = inst.Opcode(); in Fail() local
5557 if ((Instruction::FlagsOf(opcode) & Instruction::kThrow) == 0 && in Fail()
5558 !impl::IsCompatThrow(opcode) && in Fail()
[all …]
/art/tools/jvmti-agents/simple-force-redefine/
Dforceredefine.cc115 new_inst->opcode = dex::OP_NOP; in Transform()
/art/libdexfile/dex/
Ddex_file_verifier.cc1745 uint8_t opcode = *(ptr_++); in CheckIntraDebugInfoItem() local
1746 switch (opcode) { in CheckIntraDebugInfoItem()
1761 ErrorStringPrintf("Bad reg_num for opcode %x", opcode); in CheckIntraDebugInfoItem()
1784 ErrorStringPrintf("Bad reg_num for opcode %x", opcode); in CheckIntraDebugInfoItem()
1792 ErrorStringPrintf("Bad reg_num for opcode %x", opcode); in CheckIntraDebugInfoItem()
/art/dexlayout/
Ddex_ir_builder.cc55 uint8_t opcode = *stream++; in GetDebugInfoStreamSize() local
56 switch (opcode) { in GetDebugInfoStreamSize()
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h133 uint8_t opcode = inst->Opcode(inst_data); in Preamble() local
134 bool is_move_result_object = (opcode == Instruction::MOVE_RESULT_OBJECT); in Preamble()
/art/runtime/interpreter/mterp/arm64ng/
Dmain.S2143 NAME_START nterp_${opcode}
2145 NAME_END nterp_${opcode}

1234