Lines Matching defs:margin
1480 int32_t margin = test->GetPoolCheckpoint() - masm->GetCursorOffset();
1483 ExactAssemblyScope scope(masm, margin, ExactAssemblyScope::kExactSize);
2250 // the literal when placing it. We keep a margin to account for this.
2251 const int margin = masm.IsUsingT32() ? 4 : 0;
2255 range - masm.GetArchitectureStatePCOffset() - sizeof(uint32_t) - margin;
2257 // The margin computation below is correct because the ranges are not
2266 (2 * kMaxInstructionSizeInBytes) - margin;
2562 int32_t margin = end - masm.GetCursorOffset();
2565 ExactAssemblyScope scope(&masm, margin, ExactAssemblyScope::kExactSize);
3449 // Generate code to fill all the margin we have before generating the literal
3451 int32_t margin = test.GetPoolCheckpoint() - masm.GetCursorOffset();
3454 ExactAssemblyScope scope(&masm, margin, ExactAssemblyScope::kExactSize);
3464 // There should be no margin left to emit the literal pool.
3495 // Generate code to fill all the margin we have before generating the veneer
3497 int32_t margin = test.GetPoolCheckpoint() - masm.GetCursorOffset();
3500 ExactAssemblyScope scope(&masm, margin, ExactAssemblyScope::kExactSize);
3509 // There should be no margin left to emit the veneer pool.
5231 // margin (minus the size of the veneers).
5337 int32_t margin = test.GetPoolCheckpoint() - masm.GetCursorOffset() -
5339 int32_t end = masm.GetCursorOffset() + margin;
5342 ExactAssemblyScope scope(&masm, margin, ExactAssemblyScope::kExactSize);
5662 int32_t margin = test.GetPoolCheckpoint() - masm.GetCursorOffset();
5663 VIXL_CHECK(margin < kBNarrowRange);
5676 margin = test.GetPoolCheckpoint() - masm.GetCursorOffset();
5677 VIXL_CHECK(margin > kBNarrowRange);
5777 int32_t margin = test.GetPoolCheckpoint() - masm.GetCursorOffset();
5778 VIXL_CHECK(margin < kBConditionalNarrowRange);
5791 margin = test.GetPoolCheckpoint() - masm.GetCursorOffset();
5792 VIXL_CHECK(margin > kBConditionalNarrowRange);
6149 int32_t margin =
6151 int32_t end = masm.GetCursorOffset() + margin;
6153 ExactAssemblyScope scope(&masm, margin, ExactAssemblyScope::kExactSize);
6200 int32_t margin =
6202 int32_t end = masm.GetCursorOffset() + margin;
6204 ExactAssemblyScope scope(&masm, margin, ExactAssemblyScope::kExactSize);
6234 int32_t margin) {
6240 // Get close to the veneer emission margin (considering the heuristic).
6245 int32_t space = end - masm->GetCursorOffset() - margin;