Home
last modified time | relevance | path

Searched refs:Adjustment (Results 1 – 25 of 26) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangedConstraintManager.cpp111 llvm::APSInt Adjustment = WraparoundType.getZeroValue(); in assumeSymInclusiveRange() local
113 computeAdjustment(AdjustedSym, Adjustment); in assumeSymInclusiveRange()
123 Adjustment.setIsSigned(false); in assumeSymInclusiveRange()
127 ConvertedTo, Adjustment); in assumeSymInclusiveRange()
129 ConvertedTo, Adjustment); in assumeSymInclusiveRange()
181 llvm::APSInt Adjustment = WraparoundType.getZeroValue(); in assumeSymRel() local
182 computeAdjustment(Sym, Adjustment); in assumeSymRel()
191 Adjustment.setIsSigned(false); in assumeSymRel()
198 return assumeSymEQ(State, Sym, ConvertedInt, Adjustment); in assumeSymRel()
201 return assumeSymNE(State, Sym, ConvertedInt, Adjustment); in assumeSymRel()
[all …]
H A DRangeConstraintManager.cpp1926 const llvm::APSInt &Adjustment) override;
1930 const llvm::APSInt &Adjustment) override;
1934 const llvm::APSInt &Adjustment) override;
1938 const llvm::APSInt &Adjustment) override;
1942 const llvm::APSInt &Adjustment) override;
1946 const llvm::APSInt &Adjustment) override;
1950 const llvm::APSInt &To, const llvm::APSInt &Adjustment) override;
1954 const llvm::APSInt &To, const llvm::APSInt &Adjustment) override;
1965 const llvm::APSInt &Adjustment) const;
1968 const llvm::APSInt &Adjustment) const;
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h444 const llvm::APSInt &Adjustment) = 0;
448 const llvm::APSInt &Adjustment) = 0;
452 const llvm::APSInt &Adjustment) = 0;
456 const llvm::APSInt &Adjustment) = 0;
460 const llvm::APSInt &Adjustment) = 0;
464 const llvm::APSInt &Adjustment) = 0;
468 const llvm::APSInt &To, const llvm::APSInt &Adjustment) = 0;
472 const llvm::APSInt &To, const llvm::APSInt &Adjustment) = 0;
478 static void computeAdjustment(SymbolRef &Sym, llvm::APSInt &Adjustment);
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DARMWinEH.h201 uint16_t Adjustment = RF.StackAdjust(); in StackAdjustment() local
202 if (Adjustment >= 0x3f4) in StackAdjustment()
203 return (Adjustment & 0x3) + 1; in StackAdjustment()
204 return Adjustment; in StackAdjustment()
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DMicrosoftDemangle.h84 size_t Adjustment = AlignedP - P; in allocArray() local
86 Head->Used += Size + Adjustment; in allocArray()
103 size_t Adjustment = AlignedP - P; in alloc() local
105 Head->Used += Size + Adjustment; in alloc()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DCFIInstBuilder.h74 void buildAdjustCFAOffset(int64_t Adjustment) const { in buildAdjustCFAOffset() argument
75 insertCFIInst(MCCFIInstruction::createAdjustCfaOffset(nullptr, Adjustment)); in buildAdjustCFAOffset()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftMangle.cpp3810 const ThisAdjustment &Adjustment, in mangleThunkThisAdjustment() argument
3813 if (!Adjustment.Virtual.isEmpty()) { in mangleThunkThisAdjustment()
3828 if (Adjustment.Virtual.Microsoft.VBPtrOffset) { in mangleThunkThisAdjustment()
3831 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VBPtrOffset)); in mangleThunkThisAdjustment()
3833 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VBOffsetOffset)); in mangleThunkThisAdjustment()
3835 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VtordispOffset)); in mangleThunkThisAdjustment()
3836 Mangler.mangleNumber(static_cast<uint32_t>(Adjustment.NonVirtual)); in mangleThunkThisAdjustment()
3840 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VtordispOffset)); in mangleThunkThisAdjustment()
3841 Mangler.mangleNumber(-static_cast<uint32_t>(Adjustment.NonVirtual)); in mangleThunkThisAdjustment()
3843 } else if (Adjustment.NonVirtual != 0) { in mangleThunkThisAdjustment()
[all …]
H A DVTableBuilder.cpp1223 ReturnAdjustment Adjustment; in ComputeReturnAdjustment() local
1230 Adjustment.Virtual.Itanium.VBaseOffsetOffset = in ComputeReturnAdjustment()
1233 Adjustment.Virtual.Itanium.VBaseOffsetOffset = in ComputeReturnAdjustment()
1239 Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity(); in ComputeReturnAdjustment()
1242 return Adjustment; in ComputeReturnAdjustment()
1310 ThisAdjustment Adjustment; in ComputeThisAdjustment() local
1330 Adjustment.Virtual.Itanium.VCallOffsetOffset = in ComputeThisAdjustment()
1335 Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity(); in ComputeThisAdjustment()
1337 return Adjustment; in ComputeThisAdjustment()
H A DExprConstant.cpp3421 APSInt Adjustment) { in HandleLValueArrayAdjustment() argument
3426 LVal.adjustOffsetAndIndex(Info, E, Adjustment, SizeOfPointee); in HandleLValueArrayAdjustment()
3432 int64_t Adjustment) { in HandleLValueArrayAdjustment() argument
3434 APSInt::get(Adjustment)); in HandleLValueArrayAdjustment()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCDwarf.h608 static MCCFIInstruction createAdjustCfaOffset(MCSymbol *L, int64_t Adjustment,
610 return MCCFIInstruction(OpAdjustCfaOffset, L, 0, Adjustment, Loc);
H A DMCStreamer.h996 virtual void emitCFIAdjustCfaOffset(int64_t Adjustment, SMLoc Loc = {});
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp1449 CharUnits Adjustment = ML.VFPtrOffset; in getVirtualFunctionPrologueThisAdjustment() local
1456 Adjustment = CharUnits::Zero(); in getVirtualFunctionPrologueThisAdjustment()
1461 Adjustment += DerivedLayout.getVBaseClassOffset(ML.VBase); in getVirtualFunctionPrologueThisAdjustment()
1464 return Adjustment; in getVirtualFunctionPrologueThisAdjustment()
1473 CharUnits Adjustment = getVirtualFunctionPrologueThisAdjustment(GD); in adjustThisArgumentForVirtualFunctionCall() local
1474 if (Adjustment.isZero()) in adjustThisArgumentForVirtualFunctionCall()
1478 assert(Adjustment.isPositive()); in adjustThisArgumentForVirtualFunctionCall()
1479 return CGF.Builder.CreateConstByteGEP(This, Adjustment); in adjustThisArgumentForVirtualFunctionCall()
1585 CharUnits Adjustment = getVirtualFunctionPrologueThisAdjustment(CGF.CurGD); in EmitInstanceFunctionProlog() local
1586 if (!Adjustment.isZero()) { in EmitInstanceFunctionProlog()
[all …]
H A DCGExpr.cpp639 for (SubobjectAdjustment &Adjustment : llvm::reverse(Adjustments)) { in EmitMaterializeTemporaryExpr()
640 switch (Adjustment.Kind) { in EmitMaterializeTemporaryExpr()
643 GetAddressOfBaseClass(Object, Adjustment.DerivedToBase.DerivedClass, in EmitMaterializeTemporaryExpr()
644 Adjustment.DerivedToBase.BasePath->path_begin(), in EmitMaterializeTemporaryExpr()
645 Adjustment.DerivedToBase.BasePath->path_end(), in EmitMaterializeTemporaryExpr()
651 LV = EmitLValueForField(LV, Adjustment.Field); in EmitMaterializeTemporaryExpr()
659 llvm::Value *Ptr = EmitScalarExpr(Adjustment.Ptr.RHS); in EmitMaterializeTemporaryExpr()
661 E, Object, Ptr, Adjustment.Ptr.MPT, /*IsInBounds=*/true); in EmitMaterializeTemporaryExpr()
H A DCGOpenMPRuntime.cpp970 llvm::Value *Adjustment = CGF.Builder.CreatePtrDiff( in adjustPrivateAddress() local
977 SharedAddr.getElementType(), PrivatePointer, Adjustment); in adjustPrivateAddress()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FrameLowering.h118 Register &SPReg, int Adjustment) const;
H A DX86FrameLowering.cpp2762 int Adjustment) const { in getFrameIndexReferenceSP()
2766 getOffsetOfLocalArea() + Adjustment); in getFrameIndexReferenceSP()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrDFP.td60 // 5.6.4 DFP Quantum Adjustment Instructions
H A DPPCAsmPrinter.cpp852 ptrdiff_t Adjustment = in emitInstruction() local
855 Expr, MCConstantExpr::create(-Adjustment, OutContext), OutContext); in emitInstruction()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp362 void emitCFIAdjustCfaOffset(int64_t Adjustment, SMLoc Loc) override;
2071 void MCAsmStreamer::emitCFIAdjustCfaOffset(int64_t Adjustment, SMLoc Loc) { in emitCFIAdjustCfaOffset() argument
2072 MCStreamer::emitCFIAdjustCfaOffset(Adjustment, Loc); in emitCFIAdjustCfaOffset()
2073 OS << "\t.cfi_adjust_cfa_offset " << Adjustment; in emitCFIAdjustCfaOffset()
H A DMCStreamer.cpp503 void MCStreamer::emitCFIAdjustCfaOffset(int64_t Adjustment, SMLoc Loc) { in emitCFIAdjustCfaOffset() argument
506 MCCFIInstruction::createAdjustCfaOffset(Label, Adjustment, Loc); in emitCFIAdjustCfaOffset()
/freebsd/sys/contrib/device-tree/Bindings/usb/
H A Dci-hdrc-usb2.txt109 - samsung,picophy-dc-vol-level-adjust: HS DC Voltage Level Adjustment.
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp4229 int64_t Adjustment = 0; in parseDirectiveCFIAdjustCfaOffset() local
4230 if (parseAbsoluteExpression(Adjustment) || parseEOL()) in parseDirectiveCFIAdjustCfaOffset()
4233 getStreamer().emitCFIAdjustCfaOffset(Adjustment, DirectiveLoc); in parseDirectiveCFIAdjustCfaOffset()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1283 uint32_t Adjustment = Obj.isRelocatableObject() || Obj.isSharedObject() in addMissingWasmCodeSymbols() local
1286 uint64_t Address = Function.CodeSectionOffset + Adjustment; in addMissingWasmCodeSymbols()
/freebsd/contrib/mandoc/
H A DTODO93 Adjustment mode is ignored while in no-fill mode (.nf).
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp2480 unsigned Adjustment = ArgSlotSizeInBytes - ArgSizeInBytes; in lowerVAARG() local
2482 DAG.getIntPtrConstant(Adjustment, DL)); in lowerVAARG()

12