Searched defs:idx1 (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dload_store_analysis.cc37 static bool CanBinaryOpAndIndexAlias(const HBinaryOperation* idx1, argument
41 if (!IsAddOrSub(idx1)) {
45 if (idx1->AsBinaryOperation()->GetLeastConstantLeft() != idx2) {
49 if (!idx1->GetConstantRight()->IsIntConstant()) {
55 int64_t l1 = idx1->IsAdd() ?
56 idx1->GetConstantRight()->AsIntConstant()->GetValue() :
57 -idx1->GetConstantRight()->AsIntConstant()->GetValue();
64 static bool CanBinaryOpsAlias(const HBinaryOperation* idx1, argument
68 if (!IsAddOrSub(idx1) || !IsAddOrSub(idx2)) {
72 if (idx1
95 CanArrayElementsAlias(const HInstruction* idx1, const size_t vector_length1, const HInstruction* idx2, const size_t vector_length2) const argument
[all...]
H A Dload_store_analysis.h356 bool CanArrayElementsAlias(const HInstruction* idx1,
396 HInstruction* idx1 = loc1->GetIndex(); local
400 if (!CanArrayElementsAlias(idx1, vector_length1, idx2, vector_length2)) {
/art/libdexfile/dex/
H A Ddex_file_verifier.cc2383 dex::TypeIndex idx1 = interfaces->GetTypeItem(i).type_idx_; local
2386 if (UNLIKELY(idx1 == idx2)) {
2387 ErrorStringPrintf("Duplicate interface: '%s'", dex_file_->StringByTypeIdx(idx1));

Completed in 59 milliseconds