Lines Matching refs:access

122     ConstantPoolEntry::Access access;  in constant_pool_entry_address()  local
123 if (Assembler::IsConstantPoolLoadStart(pc_, &access)) in constant_pool_entry_address()
125 pc_, constant_pool, access, ConstantPoolEntry::INTPTR); in constant_pool_entry_address()
144 ConstantPoolEntry::Access access; in target_address_from_return_address() local
146 IsConstantPoolLoadEnd(pc - 3 * kInstrSize, &access)) { in target_address_from_return_address()
147 len = (access == ConstantPoolEntry::OVERFLOWED) ? 2 : 1; in target_address_from_return_address()
157 ConstantPoolEntry::Access access; in return_address_from_call_start() local
159 IsConstantPoolLoadStart(pc, &access)) { in return_address_from_call_start()
160 len = (access == ConstantPoolEntry::OVERFLOWED) ? 2 : 1; in return_address_from_call_start()
437 ConstantPoolEntry::Access access; in target_address_at() local
438 if (IsConstantPoolLoadStart(pc, &access)) in target_address_at()
440 pc, constant_pool, access, ConstantPoolEntry::INTPTR)); in target_address_at()
482 ConstantPoolEntry::Access* access) { in IsConstantPoolLoadStart() argument
493 if (access) { in IsConstantPoolLoadStart()
494 *access = (overflowed ? ConstantPoolEntry::OVERFLOWED in IsConstantPoolLoadStart()
502 ConstantPoolEntry::Access* access) { in IsConstantPoolLoadEnd() argument
515 if (access) { in IsConstantPoolLoadEnd()
516 *access = (overflowed ? ConstantPoolEntry::OVERFLOWED in IsConstantPoolLoadEnd()
524 ConstantPoolEntry::Access access, in GetConstantPoolOffset() argument
526 bool overflowed = (access == ConstantPoolEntry::OVERFLOWED); in GetConstantPoolOffset()
531 DCHECK(access_check == access); in GetConstantPoolOffset()
546 int pc_offset, int offset, ConstantPoolEntry::Access access, in PatchConstantPoolAccessInstruction() argument
549 bool overflowed = (access == ConstantPoolEntry::OVERFLOWED); in PatchConstantPoolAccessInstruction()
555 DCHECK(access_check == access); in PatchConstantPoolAccessInstruction()
580 Address pc, Address constant_pool, ConstantPoolEntry::Access access, in target_constant_pool_address_at() argument
584 addr += GetConstantPoolOffset(pc, access, type); in target_constant_pool_address_at()
615 ConstantPoolEntry::Access access; in set_target_address_at() local
616 if (IsConstantPoolLoadStart(pc, &access)) { in set_target_address_at()
618 pc, constant_pool, access, ConstantPoolEntry::INTPTR)) = target; in set_target_address_at()