HomeSort by relevance Sort by last modified time
    Searched refs:StackSize (Results 1 - 14 of 14) sorted by null

  /external/skia/gpu/src/
GrBinHashKey.h 58 template<typename Entry, size_t StackSize>
65 , fPhysicalSize(StackSize)
79 GrBinHashKey(const GrBinHashKey<Entry, StackSize>&) {}
80 GrBinHashKey<Entry, StackSize>& operator=(const GrBinHashKey<Entry,
81 StackSize>&) {
86 void copyAndTakeOwnership(GrBinHashKey<Entry, StackSize>& key) {
99 void deepCopyFrom(const GrBinHashKey<Entry, StackSize>& key) {
149 if (fLength + len <= StackSize) {
174 int compare(const GrBinHashKey<Entry, StackSize>& key) const {
189 EQ(const Entry& entry, const GrBinHashKey<Entry, StackSize>& key)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 107 uint64_t StackSize = MFI->getStackSize();
108 StackSize -= SystemZMFI->getCalleeSavedFrameSize();
110 uint64_t NumBytes = StackSize - getOffsetOfLocalArea();
122 if (StackSize || MFI->hasCalls()) {
160 uint64_t StackSize =
162 uint64_t NumBytes = StackSize - getOffsetOfLocalArea();
175 if (StackSize || MFI->hasCalls()) {
209 uint64_t StackSize = MFI->getStackSize();
213 StackSize -= SystemZMFI->getCalleeSavedFrameSize();
215 Offset += StackSize - getOffsetOfLocalArea()
    [all...]
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp 54 // StackSize -----------
62 // with offsets that exceeds the stack size: (stacksize+(4*(num_arg-1))
72 // lw REGX, 16+StackSize(SP)
159 unsigned StackSize = AlignOffset(LocalVarAreaOffset, StackAlign) +
163 MFI->setStackSize(StackSize);
174 if (StackSize == 0 && !MFI->adjustsStack()) return;
181 ATUsed = expandRegLargeImmPair(Mips::SP, -StackSize, NewReg, NewImm, MBB,
190 // emit ".cfi_def_cfa_offset StackSize"
195 SrcML = MachineLocation(MachineLocation::VirtualFP, -StackSize);
271 unsigned StackSize = MFI->getStackSize()
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 52 uint64_t StackSize = MFI->getStackSize();
57 uint64_t FrameSize = StackSize - 2;
79 NumBytes = StackSize - MSP430FI->getCalleeSavedFrameSize();
125 uint64_t StackSize = MFI->getStackSize();
131 uint64_t FrameSize = StackSize - 2;
137 NumBytes = StackSize - CSSize;
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 139 /// StackSize - The prolog/epilog code inserter calculates the final stack
141 /// above. It then updates StackSize to contain the number of bytes that need
144 uint64_t StackSize;
216 StackSize = NumFixedObjects = OffsetAdjustment = MaxAlignment = 0;
389 uint64_t getStackSize() const { return StackSize; }
393 void setStackSize(uint64_t Size) { StackSize = Size; }
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 365 uint64_t StackSize = MFI->getStackSize(); // Number of bytes to allocate.
404 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
405 MFI->setStackSize(StackSize);
443 uint64_t FrameSize = StackSize - SlotSize;
465 if (StackSize) {
514 NumBytes = StackSize - X86FI->getCalleeSavedFrameSize();
533 unsigned Ptr = StackSize ?
634 if (StackSize) {
    [all...]
X86ISelLowering.h 762 unsigned GetAlignedArgumentStackSize(unsigned StackSize,
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeFrameLowering.cpp 358 unsigned StackSize = MFI->getStackSize();
361 if (StackSize == 0 && !MFI->adjustsStack() && !requiresRA) return;
368 .addReg(MBlaze::R1).addImm(-StackSize);
421 int StackSize = (int) MFI->getStackSize();
424 if (StackSize) {
426 .addReg(MBlaze::R1).addImm(StackSize);
  /external/llvm/lib/Target/XCore/
XCoreRegisterInfo.cpp 184 int StackSize = MF.getFrameInfo()->getStackSize();
193 DEBUG(errs() << "StackSize : " << StackSize << "\n");
196 Offset += StackSize;
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h 332 unsigned StackSize;
347 DelayedDiagnostics() : Stack(0), StackSize(0), StackCapacity(0),
369 state.SavedStackSize = StackSize;
381 assert(StackSize >= ActiveStackBase);
387 ActiveStackBase = StackSize;
396 assert(ActiveStackBase == StackSize);
    [all...]
  /external/v8/src/
runtime.cc     [all...]

Completed in 212 milliseconds