HomeSort by relevance Sort by last modified time
    Searched defs:Align (Results 126 - 150 of 364) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 122 Error allocate(void *&Addr, size_t Size, uint32_t Align) {
377 uint64_t Size, uint32_t Align) {
384 if (auto Err = Allocator.allocate(LocalAllocAddr, Size, Align))
388 << " (" << Size << " bytes, alignment " << Align << ")\n");
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 122 Error allocate(void *&Addr, size_t Size, uint32_t Align) {
377 uint64_t Size, uint32_t Align) {
384 if (auto Err = Allocator.allocate(LocalAllocAddr, Size, Align))
388 << " (" << Size << " bytes, alignment " << Align << ")\n");
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 122 Error allocate(void *&Addr, size_t Size, uint32_t Align) {
377 uint64_t Size, uint32_t Align) {
384 if (auto Err = Allocator.allocate(LocalAllocAddr, Size, Align))
388 << " (" << Size << " bytes, alignment " << Align << ")\n");
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 119 Error allocate(void *&Addr, size_t Size, uint32_t Align) {
366 uint64_t Size, uint32_t Align) {
373 if (auto Err = Allocator.allocate(LocalAllocAddr, Size, Align))
377 << " (" << Size << " bytes, alignment " << Align << ")\n");
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 119 Error allocate(void *&Addr, size_t Size, uint32_t Align) {
366 uint64_t Size, uint32_t Align) {
373 if (auto Err = Allocator.allocate(LocalAllocAddr, Size, Align))
377 << " (" << Size << " bytes, alignment " << Align << ")\n");
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 119 Error allocate(void *&Addr, size_t Size, uint32_t Align) {
366 uint64_t Size, uint32_t Align) {
373 if (auto Err = Allocator.allocate(LocalAllocAddr, Size, Align))
377 << " (" << Size << " bytes, alignment " << Align << ")\n");
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 122 Error allocate(void *&Addr, size_t Size, uint32_t Align) {
377 uint64_t Size, uint32_t Align) {
384 if (auto Err = Allocator.allocate(LocalAllocAddr, Size, Align))
388 << " (" << Size << " bytes, alignment " << Align << ")\n");
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 122 Error allocate(void *&Addr, size_t Size, uint32_t Align) {
377 uint64_t Size, uint32_t Align) {
384 if (auto Err = Allocator.allocate(LocalAllocAddr, Size, Align))
388 << " (" << Size << " bytes, alignment " << Align << ")\n");
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 122 Error allocate(void *&Addr, size_t Size, uint32_t Align) {
377 uint64_t Size, uint32_t Align) {
384 if (auto Err = Allocator.allocate(LocalAllocAddr, Size, Align))
388 << " (" << Size << " bytes, alignment " << Align << ")\n");
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 122 Error allocate(void *&Addr, size_t Size, uint32_t Align) {
377 uint64_t Size, uint32_t Align) {
384 if (auto Err = Allocator.allocate(LocalAllocAddr, Size, Align))
388 << " (" << Size << " bytes, alignment " << Align << ")\n");
  /external/libmojo/mojo/edk/system/
node_channel.cc 27 T Align(T t) {
  /external/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 366 Alloc(uint64_t Size, unsigned Align)
367 : Size(Size), Align(Align), Contents(new char[Size + Align - 1]) {}
370 : Size(std::move(Other.Size)), Align(std::move(Other.Align)),
376 Align = std::move(Other.Align);
384 unsigned getAlign() const { return Align; }
388 LocalAddr = alignTo(LocalAddr, Align);
    [all...]
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 51 AlignAllFunctions("align-all-functions",
562 /// Make sure the function is at least Align bytes aligned.
563 void MachineFrameInfo::ensureMaxAlignment(unsigned Align) {
565 assert(Align <= StackAlignment &&
566 "For targets without stack realignment, Align is out of limit!");
567 if (MaxAlignment < Align) MaxAlignment = Align;
571 static inline unsigned clampStackAlignment(bool ShouldClamp, unsigned Align,
573 if (!ShouldClamp || Align <= StackAlign)
574 return Align;
    [all...]
PrologEpilogInserter.cpp 201 // to align the stack frame as necessary for any stack variables or
375 unsigned Align = RC->getAlignment();
381 Align = std::min(Align, StackAlign);
382 FrameIdx = MFI->CreateStackObject(RC->getSize(), Align, true);
561 unsigned Align = MFI->getObjectAlignment(FrameIdx);
565 MaxAlign = std::max(MaxAlign, Align);
568 Offset = alignTo(Offset, Align, Skew);
751 unsigned Align = MFI->getObjectAlignment(i);
753 Offset = alignTo(Offset, Align, Skew)
    [all...]
SafeStack.cpp 120 /// aligned to this value. We need to re-align the unsafe stack if the
530 unsigned Align =
533 Align, SSC.getFullLiveRange());
543 unsigned Align = std::max((unsigned)DL->getPrefTypeAlignment(Ty),
545 SSL.addObject(Arg, Size, Align, SSC.getFullLiveRange());
555 unsigned Align =
558 SSL.addObject(AI, Size, Align, SSC.getLiveRange(AI));
567 // Re-align the base pointer according to the max requested alignment.
656 // Re-align BasePointer so that our callees would see it aligned as
691 // Align the SP value to satisfy the AllocaInst, type and stack alignments
    [all...]
TargetLoweringObjectFileImpl.cpp 285 unsigned Align = GV->getParent()->getDataLayout().getPreferredAlignment(
289 Name = SizeSpec + utostr(Align);
357 unsigned &Align) const {
657 unsigned &Align) const {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 306 const unsigned Align = N->getConstantOperandVal(3);
308 Lo = DAG.getVAArg(NVT, dl, Chain, Ptr, N->getOperand(2), Align);
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 169 unsigned Align = getStackAlignment();
172 Amount = alignTo(Amount, Align);
231 // re-align the stack pointer. We avoid using callee-save registers since they
237 // of the callee-save registers as a scratch temp to re-align the stack pointer,
278 // Don't need a scratch register if we're not going to re-align the stack.
558 // .align 2
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp 164 unsigned Align = GV.getAlignment();
165 if (Align == 0)
166 Align = DL.getABITypeAlignment(GV.getValueType());
173 CurrentLocalMemUsage = alignTo(CurrentLocalMemUsage, Align);
658 unsigned Align = I.getAlignment();
659 if (Align == 0)
660 Align = DL.getABITypeAlignment(I.getAllocatedType());
668 uint32_t NewSize = alignTo(CurrentLocalMemUsage, Align);
SIRegisterInfo.cpp 560 unsigned Align = FrameInfo->getObjectAlignment(Index);
565 Size, Align);
606 unsigned Align = FrameInfo->getObjectAlignment(Index);
613 PtrInfo, MachineMemOperand::MOLoad, Size, Align);
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp 957 unsigned align = 0; local
963 O << ".param .align " << align << " .b8 "; local
995 unsigned align = Outs[OIdx].Flags.getByValAlign(); local
997 O << ".param .align " << align << " .b8 "; local
1107 unsigned align = getArgumentAlignment(Callee, CS, Ty, paramCount + 1); local
1147 unsigned align = getArgumentAlignment(Callee, CS, Ty, paramCount + 1); local
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 548 auto Align = LI.getAlignment();
549 if (!Align)
550 Align = DL.getABITypeAlignment(ST);
564 auto EltAlign = MinAlign(Align, SL->getElementOffset(i));
584 auto Align = LI.getAlignment();
585 if (!Align)
586 Align = DL.getABITypeAlignment(T);
601 auto *L = IC.Builder->CreateAlignedLoad(Ptr, MinAlign(Align, Offset),
690 // @f.a = private unnamed_addr constant [1 x i32] [i32 12], align 4
693 // ... = load i32* %arrayidx, align
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 638 unsigned Align = Layout.getElemAlign(I);
639 Stores[I] = Builder.CreateAlignedStore(Val[I], Ptr[I], Align);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ELFWriter.cpp 374 // The symbol align should update the section alignment if needed
376 unsigned Align = TD->getPreferredAlignment(GVar);
386 ES.Align = 1;
387 GblSym->Value = Align;
394 if (Align) ES.Size = (ES.Size + Align-1) & ~(Align-1);
395 ES.Align = std::max(ES.Align, Align);
    [all...]
SjLjEHPrepare.cpp 506 unsigned Align = 4; // FIXME: Should be a TLI check?
508 new AllocaInst(FunctionContextTy, 0, Align,
722 unsigned Align =
725 new AllocaInst(FunctionContextTy, 0, Align, "fn_context", EntryBB->begin());
    [all...]

Completed in 1001 milliseconds

1 2 3 4 56 7 8 91011>>