| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/ |
| H A D | LanaiAsmParser.cpp | 63 bool parsePrePost(StringRef Type, int *OffsetValue); 839 bool LanaiAsmParser::parsePrePost(StringRef Type, int *OffsetValue) { in parsePrePost() argument 844 *OffsetValue = -SizeForSuffix(Type); in parsePrePost() 846 *OffsetValue = SizeForSuffix(Type); in parsePrePost() 902 int OffsetValue = 0; in parseMemoryOperand() local 930 PreOp = parsePrePost(Type, &OffsetValue); in parseMemoryOperand() 961 PostOp = parsePrePost(Type, &OffsetValue); in parseMemoryOperand() 971 MCConstantExpr::create(OffsetValue, getContext()); in parseMemoryOperand() 975 if (Offset || OffsetValue != 0) in parseMemoryOperand()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenFunction.cpp | 2482 if (OffsetValue && OffsetValue->getType() != IntPtrTy) in emitAlignmentAssumption() 2483 OffsetValue = in emitAlignmentAssumption() 2490 if (OffsetValue) { in emitAlignmentAssumption() 2492 if (const auto *CI = dyn_cast<llvm::ConstantInt>(OffsetValue)) in emitAlignmentAssumption() 2506 CGM.getDataLayout(), PtrValue, Alignment, OffsetValue); in emitAlignmentAssumption() 2511 OffsetValue, TheCheck, Assumption); in emitAlignmentAssumption() 2523 OffsetValue); in emitAlignmentAssumption() 2880 llvm::Value *OffsetValue, llvm::Value *TheCheck, in emitAlignmentAssumptionCheck() argument 2907 if (!OffsetValue) in emitAlignmentAssumptionCheck() 2908 OffsetValue = Builder.getInt1(false); // no offset. in emitAlignmentAssumptionCheck() [all …]
|
| H A D | CGObjCGNU.cpp | 1864 llvm::Constant *OffsetValue = llvm::ConstantInt::get(IntTy, Offset); in GenerateClass() local 1868 OffsetVar->setInitializer(OffsetValue); in GenerateClass() 1872 OffsetValue, OffsetName); in GenerateClass() 3670 llvm::Constant *OffsetValue = llvm::ConstantInt::get(IntTy, Offset); in GenerateClass() local 3677 OffsetVar->setInitializer(OffsetValue); in GenerateClass() 3685 OffsetValue, OffsetName); in GenerateClass() 3686 IvarOffsets.push_back(OffsetValue); in GenerateClass()
|
| H A D | CodeGenFunction.h | 3275 llvm::Value *OffsetValue, 3282 llvm::Value *OffsetValue = nullptr); 3287 llvm::Value *OffsetValue = nullptr);
|
| H A D | CGExpr.cpp | 5670 llvm::Value *OffsetValue = EmitIvarOffset(Interface, Ivar); in EmitIvarOffsetAsPointerDiff() local 5672 return Builder.CreateZExtOrTrunc(OffsetValue, in EmitIvarOffsetAsPointerDiff()
|
| H A D | CGBuiltin.cpp | 3287 Value *OffsetValue = in EmitBuiltinExpr() local 3298 AlignmentCI, OffsetValue); in EmitBuiltinExpr()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CheckPlacementNew.cpp | 251 int64_t OffsetValue = in checkFieldRegionAlign() local 253 unsigned AddressAlign = OffsetValue % AllocatedTAlign; in checkFieldRegionAlign()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | IRBuilder.cpp | 1318 Value *OffsetValue) { in CreateAlignmentAssumptionHelper() argument 1320 if (OffsetValue) in CreateAlignmentAssumptionHelper() 1321 Vals.push_back(OffsetValue); in CreateAlignmentAssumptionHelper() 1329 Value *OffsetValue) { in CreateAlignmentAssumption() argument 1336 return CreateAlignmentAssumptionHelper(DL, PtrValue, AlignValue, OffsetValue); in CreateAlignmentAssumption() 1342 Value *OffsetValue) { in CreateAlignmentAssumption() argument 1345 return CreateAlignmentAssumptionHelper(DL, PtrValue, Alignment, OffsetValue); in CreateAlignmentAssumption()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsInstructionSelector.cpp | 456 APInt OffsetValue = Offset->getOperand(1).getCImm()->getValue(); in select() local 457 if (OffsetValue.isSignedIntN(16)) { in select() 459 SignedOffset = OffsetValue.getSExtValue(); in select()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/ |
| H A D | MipsAsmParser.cpp | 4458 int64_t OffsetValue = OffsetImmOp.getImm(); in expandUlh() local 4467 bool IsLargeOffset = !(isInt<16>(OffsetValue + 1) && isInt<16>(OffsetValue)); in expandUlh() 4474 int64_t FirstOffset = IsLargeOffset ? 0 : OffsetValue; in expandUlh() 4510 int64_t OffsetValue = OffsetImmOp.getImm(); in expandUsh() local 4517 bool IsLargeOffset = !(isInt<16>(OffsetValue + 1) && isInt<16>(OffsetValue)); in expandUsh() 4524 int64_t FirstOffset = IsLargeOffset ? 1 : (OffsetValue + 1); in expandUsh() 4525 int64_t SecondOffset = IsLargeOffset ? 0 : OffsetValue; in expandUsh() 4561 int64_t OffsetValue = OffsetImmOp.getImm(); in expandUxw() local 4564 bool IsLargeOffset = !(isInt<16>(OffsetValue + 3) && isInt<16>(OffsetValue)); in expandUxw() 4565 int64_t LxlOffset = IsLargeOffset ? 0 : OffsetValue; in expandUxw() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCLoopInstrFormPrep.cpp | 609 Value *OffsetValue = SCEVE.expandCodeFor( in rewriteLoadStoresForCommoningChains() local 613 OffsetValue, DeletedPtrs); in rewriteLoadStoresForCommoningChains()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IRBuilder.h | 2606 Value *OffsetValue); 2617 Value *OffsetValue = nullptr); 2630 Value *OffsetValue = nullptr);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopStrengthReduce.cpp | 6252 void createOffsetExpr(int64_t Offset, Value *OffsetValue) { in createOffsetExpr() 6253 pushLocation(OffsetValue); in createOffsetExpr()
|