HomeSort by relevance Sort by last modified time
    Searched defs:AccessWidth (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/CodeGen/
CGRecordLayout.h 44 /// %2 = (i(AccessWidth) *) %1
65 unsigned AccessWidth;
117 assert(AI.FieldBitStart + AI.TargetBitWidth <= AI.AccessWidth);
CGRecordLayoutBuilder.cpp 275 unsigned AccessWidth = TypeSizeInBits; // The current access width to attempt.
285 if (AccessWidth < Types.getTarget().getRegisterWidth())
286 AccessWidth = Types.getTarget().getRegisterWidth();
291 uint64_t AccessStart = FieldOffset - (FieldOffset % AccessWidth);
294 while (AccessWidth > Types.getTarget().getCharWidth() &&
295 AccessStart + AccessWidth > ContainingTypeSizeInBits) {
296 AccessWidth >>= 1;
297 AccessStart = FieldOffset - (FieldOffset % AccessWidth);
304 if (AccessStart + AccessWidth > ContainingTypeSizeInBits) {
306 AccessWidth >>= 1
    [all...]

Completed in 116 milliseconds