Home
last modified time | relevance | path

Searched refs:IsValidImmPCOffset (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/arm64/
Dinstructions-arm64.cc220 bool Instruction::IsValidImmPCOffset(ImmBranchType branch_type, in IsValidImmPCOffset() function in v8::internal::Instruction
227 return IsValidImmPCOffset(BranchType(), DistanceTo(target)); in IsTargetInImmPCOffsetRange()
265 IsValidImmPCOffset(BranchType(), DistanceTo(target) >> kInstrSizeLog2)); in SetBranchImmTarget()
Dinstructions-arm64.h400 static bool IsValidImmPCOffset(ImmBranchType branch_type, ptrdiff_t offset);
Dmacro-assembler-arm64.cc873 !Instruction::IsValidImmPCOffset(b_type, label->pos() - pc_offset()); in NeedExtraInstructionsOrRegisterBranch()
/external/vixl/src/aarch64/
Dinstructions-aarch64.cc286 bool Instruction::IsValidImmPCOffset(ImmBranchType branch_type, in IsValidImmPCOffset() function in vixl::aarch64::Instruction
Dinstructions-aarch64.h329 static bool IsValidImmPCOffset(ImmBranchType branch_type, int64_t offset);
Dassembler-aarch64.cc268 VIXL_ASSERT(Instruction::IsValidImmPCOffset(UncondBranchType, offset)); in b()
275 VIXL_ASSERT(Instruction::IsValidImmPCOffset(CondBranchType, offset)); in b()
285 VIXL_ASSERT(Instruction::IsValidImmPCOffset(UncondBranchType, offset)); in bl()
297 VIXL_ASSERT(Instruction::IsValidImmPCOffset(CompareBranchType, offset)); in cbz()
309 VIXL_ASSERT(Instruction::IsValidImmPCOffset(CompareBranchType, offset)); in cbnz()
428 VIXL_ASSERT(Instruction::IsValidImmPCOffset(TestBranchType, offset)); in tbz()
441 VIXL_ASSERT(Instruction::IsValidImmPCOffset(TestBranchType, offset)); in tbnz()
Dmacro-assembler-aarch64.h3603 return !Instruction::IsValidImmPCOffset(branch_type, in LabelIsOutOfRange()