HomeSort by: relevance | last modified time | path
    Searched refs:Adjusted (Results 1 - 14 of 14) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 97 /// \param [in,out] Adjusted the current SP offset from the top of the frame.
101 int &Adjusted, int FrameSize, bool emitFrameMoves) {
102 while (OffsetFromTop > Adjusted) {
103 assert(Adjusted < FrameSize && "OffsetFromTop is beyond FrameSize");
104 int remaining = FrameSize - Adjusted;
108 Adjusted += OpImm;
110 EmitDefCfaOffset(MBB, MBBI, dl, TII, Adjusted*4);
188 /// The SP will be adjusted at the same time, thus the SpillList must be ordered
249 int Adjusted = 0;
261 Adjusted = (FrameSize > MaxImmU16) ? MaxImmU16 : FrameSize
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ODRHash.cpp 763 QualType Adjusted = T->getAdjustedType();
768 SplitQualType split = Adjusted.split();
784 AddQualType(Adjusted);
JSONNodeDumper.cpp 1280 QualType Adjusted = CTE->getTypeOperand(Ctx);
1283 if (Adjusted != Unadjusted)
1284 JOS.attribute("adjustedTypeArg", createQualType(Adjusted));
TypePrinter.cpp 251 case Type::Adjusted:
562 // Print the adjusted representation, otherwise the adjustment will be
ASTStructuralEquivalence.cpp 703 case Type::Adjusted:
ASTContext.cpp 2247 case Type::Adjusted:
3230 AdjustedType(Type::Adjusted, Orig, New, Canonical);
3243 // adjusted to "qualified pointer to type", where the type
3251 // shall be adjusted to "pointer to function returning type", as
9621 // type is adjusted to "T" prior to any further analysis, the expression
ItaniumMangle.cpp 2220 case Type::Adjusted:
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ScaledNumber.h 704 auto Adjusted = ScaledNumbers::getAdjusted<DigitsT>(N, Shift);
705 return Adjusted;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 2660 /// Represents a type which was implicitly adjusted by the semantic
2662 /// decay, and function types can have their calling conventions adjusted.
2692 return T->getTypeClass() == Adjusted || T->getTypeClass() == Decayed;
6620 /// 8.5.3), the type is adjusted to "T" prior to any further
7244 QualType Adjusted = getAdjustedType();
7245 (void)AttributedType::stripOuterNullability(Adjusted);
7246 assert(isa<PointerType>(Adjusted));
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplate.cpp 1436 // "function returning T" is adjusted to be of type "pointer to
7488 // "function returning T" is adjusted to be of type "pointer to
9207 QualType Adjusted = Function->getType();
9208 if (!hasExplicitCallingConv(Adjusted))
9209 Adjusted = adjustCCAndNoReturn(Adjusted, Method->getType());
9212 if (Context.hasSameType(Adjusted, Method->getType())) {
10163 QualType Adjusted = adjustCCAndNoReturn(R, Method->getType(),
10165 if (Context.hasSameUnqualifiedType(Method->getType(), Adjusted)) {
SemaExpr.cpp 4371 case Type::Adjusted:
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.cpp 2151 case Type::Adjusted:
CGDebugInfo.cpp 3192 case Type::Adjusted:
3194 // Decayed and adjusted types use the adjusted type in LLVM and DWARF.
3362 case Type::Adjusted:
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp 4636 SDValue Adjusted = adjustLoadValueTypeImpl(Load, LoadVT, DL, DAG, Unpacked);
4638 return DAG.getMergeValues({ Adjusted, Load.getValue(1) }, DL);

Completed in 93 milliseconds