HomeSort by: relevance | last modified time | path
    Searched defs:Adjustment (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
RangedConstraintManager.cpp 100 llvm::APSInt Adjustment = WraparoundType.getZeroValue();
102 computeAdjustment(AdjustedSym, Adjustment);
112 Adjustment.setIsSigned(false);
116 ConvertedTo, Adjustment);
118 ConvertedTo, Adjustment);
163 // The adjustment is "constant1" in the above expression. It's used to
167 // the subclasses of SimpleConstraintManager to handle the adjustment.
168 llvm::APSInt Adjustment = WraparoundType.getZeroValue();
169 computeAdjustment(Sym, Adjustment);
178 Adjustment.setIsSigned(false)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
MicrosoftDemangle.h 80 size_t Adjustment = AlignedP - P;
82 Head->Used += Size + Adjustment;
99 size_t Adjustment = AlignedP - P;
101 Head->Used += Size + Adjustment;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ARMWinEH.h 83 /// indicate the number of words' of adjustment (1-4), minus 1
85 /// indicates if the prologue combined adjustment into push
87 /// indicates if the epilogue combined adjustment into pop
187 /// prologue has stack adjustment combined into the push
192 /// epilogue has stack adjustment combined into the pop
196 /// StackAdjustment - calculated stack adjustment in words. The stack
197 /// adjustment should be determined via this function to account for the special
200 uint16_t Adjustment = RF.StackAdjust();
201 if (Adjustment >= 0x3f4)
202 return (Adjustment & 0x3) ? ((Adjustment & 0x3) << 2) - 1 : 0
    [all...]
Allocator.h 149 size_t Adjustment = offsetToAlignedAddr(CurPtr, Alignment);
150 assert(Adjustment + Size >= Size && "Adjustment + Size must not overflow");
159 if (Adjustment + SizeToAllocate <= size_t(End - CurPtr)) {
160 char *AlignedPtr = CurPtr + Adjustment;
  /src/external/apache2/llvm/dist/clang/lib/AST/
VTableBuilder.cpp 287 // No adjustment needed.
310 // No adjustment needed.
834 /// (Used for computing 'this' pointer adjustment thunks.
897 /// ComputeReturnAdjustment - Compute the return adjustment given a return
898 /// adjustment base offset.
906 /// ComputeThisAdjustment - Compute the 'this' pointer adjustment for the
930 /// adjustment is required and no thunk is generated. However, inside D
1126 // Check if we need an adjustment at all.
1129 // virtual base, gcc uses a virtual 'this' adjustment as well.
1147 // Add an adjustment for the deleting destructor as well
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsISelLowering.cpp 2308 unsigned Adjustment = ArgSlotSizeInBytes - ArgSizeInBytes;
2310 DAG.getIntPtrConstant(Adjustment, DL));
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 450 // as that will cause the lifetime adjustment to be lost for ARC
584 SubobjectAdjustment &Adjustment = Adjustments[I-1];
585 switch (Adjustment.Kind) {
588 GetAddressOfBaseClass(Object, Adjustment.DerivedToBase.DerivedClass,
589 Adjustment.DerivedToBase.BasePath->path_begin(),
590 Adjustment.DerivedToBase.BasePath->path_end(),
596 LV = EmitLValueForField(LV, Adjustment.Field);
604 llvm::Value *Ptr = EmitScalarExpr(Adjustment.Ptr.RHS);
606 Adjustment.Ptr.MPT);
4380 // For unions, there is no pointer adjustment
    [all...]
MicrosoftCXXABI.cpp 584 /// Shared code for virtual base adjustment. Returns the offset from
608 /// Performs a full virtual base adjustment. Used to dereference
1196 // which holds the extra amount of "this" adjustment we must do when we use
1391 // parameter, thus don't need this adjustment.
1395 // There's no Dtor_Base in vftable but it shares the this adjustment with
1402 CharUnits Adjustment = ML.VFPtrOffset;
1406 // do not. The vector deleting destructor thunk applies this adjustment for
1409 Adjustment = CharUnits::Zero();
1414 Adjustment += DerivedLayout.getVBaseClassOffset(ML.VBase);
1417 return Adjustment;
    [all...]
CGOpenMPRuntime.cpp 557 /// static with chunk adjustment (e.g., simd)
1013 llvm::Value *Adjustment = CGF.Builder.CreatePtrDiff(
1019 llvm::Value *Ptr = CGF.Builder.CreateGEP(PrivatePointer, Adjustment);
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmParser.cpp 4242 /// ::= .cfi_adjust_cfa_offset adjustment
4244 int64_t Adjustment = 0;
4245 if (parseAbsoluteExpression(Adjustment) || parseEOL())
4248 getStreamer().emitCFIAdjustCfaOffset(Adjustment);
MasmParser.cpp 5306 /// ::= .cfi_adjust_cfa_offset adjustment
5308 int64_t Adjustment = 0;
5309 if (parseAbsoluteExpression(Adjustment))
5312 getStreamer().emitCFIAdjustCfaOffset(Adjustment);

Completed in 115 milliseconds