Home | History | Annotate | Download | only in AST

Lines Matching defs:Adjustment

285     // No adjustment needed.
308 // No adjustment needed.
834 /// (Used for computing 'this' pointer adjustment thunks.
891 /// ComputeReturnAdjustment - Compute the return adjustment given a return
892 /// adjustment base offset.
900 /// ComputeThisAdjustment - Compute the 'this' pointer adjustment for the
924 /// adjustment is required and no thunk is generated. However, inside D
1112 // Check if we need an adjustment at all.
1115 // virtual base, gcc uses a virtual 'this' adjustment as well.
1133 // Add an adjustment for the deleting destructor as well.
1174 ReturnAdjustment Adjustment;
1181 Adjustment.VBaseOffsetOffset =
1184 Adjustment.VBaseOffsetOffset =
1190 Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity();
1193 return Adjustment;
1258 // Compute the adjustment offset.
1264 ThisAdjustment Adjustment;
1284 Adjustment.VCallOffsetOffset =
1288 // Set the non-virtual part of the adjustment.
1289 Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity();
1291 return Adjustment;
1299 "Destructor can't have return adjustment!");
1311 // Add the return adjustment if necessary.
1492 // base. If this is the case, and the return type doesn't require adjustment
1518 // Compute the this adjustment.
1526 // There's no return adjustment from OverriddenMD and MD,
1561 // Check if this overrider needs a return adjustment.
1913 // If this function pointer has a return adjustment, dump it.
1915 Out << "\n [return adjustment: ";
1926 // If this function pointer has a 'this' pointer adjustment, dump it.
1928 Out << "\n [this adjustment: ";
1963 // If this destructor has a 'this' pointer adjustment, dump it.
1965 Out << "\n [this adjustment: ";
2091 // If this function pointer has a return pointer adjustment, dump it.
2093 Out << "return adjustment: " << Thunk.This.NonVirtual;
2104 // If this function pointer has a 'this' pointer adjustment, dump it.
2106 Out << "this adjustment: ";
2228 // between their return types does not require an adjustment.