Searched refs:getSize (Results 76 - 100 of 141) sorted by relevance

123456

/freebsd-9.3-release/contrib/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCCodeEmitter.cpp212 /// Size the instruction with Desc.getSize().
261 unsigned Size = Desc.getSize();
263 llvm_unreachable("Desc.getSize() returns 0");
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DFileManager.cpp439 uint64_t FileSize = Entry->getSize();
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenTypes.cpp461 ResultType = llvm::ArrayType::get(EltTy, A->getSize().getZExtValue());
H A DCGAtomic.cpp101 return CGF.CGM.getSize(size);
413 Val1Scalar = Builder.CreateMul(Val1Scalar, CGM.getSize(PointeeIncAmt));
H A DCGExprScalar.cpp1916 size = CGF.Builder.CreateNUWMul(CGF.CGM.getSize(eltSize), numElts);
2328 = CGF.CGM.getSize(CGF.getContext().getTypeSizeInChars(objectType));
2539 divisor = CGF.Builder.CreateNUWMul(CGF.CGM.getSize(eltSize), divisor);
2557 divisor = CGF.CGM.getSize(elementSize);
H A DCodeGenModule.h569 /// getSize - Emit the given number of characters as a value of type size_t.
570 llvm::ConstantInt *getSize(CharUnits numChars);
H A DTargetInfo.cpp177 if (AT->getSize() == 0)
277 if (AT->getSize().getZExtValue() != 1)
1596 uint64_t ArraySize = AT->getSize().getZExtValue();
1867 unsigned NumElts = (unsigned)AT->getSize().getZExtValue();
3252 Members *= AT->getSize().getZExtValue();
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DASTUnit.cpp747 ToFile->getSize(),
1446 Status.getSize(), Status.getLastModificationTime().toEpochTime());
1479 } else if (Status.getSize() != uint64_t(F->second.first) ||
1685 = std::make_pair(F->second->getSize(), File->getModificationTime());
H A DCacheTokens.cpp88 ::Emit64(Out, FE->getSize());
H A DInitPreprocessor.cpp778 ToFile->getSize(), 0);
/freebsd-9.3-release/contrib/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.cpp76 else if (error(si->getSize(SymbolSize)) ||
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp549 int64_t Overlapa = MMOa->getSize() + MMOa->getOffset() - MinOffset;
550 int64_t Overlapb = MMOb->getSize() + MMOb->getOffset() - MinOffset;
H A DTargetLoweringBase.cpp916 if (SuperRC->getSize() <= BestRC->getSize())
H A DLiveInterval.cpp573 unsigned LiveInterval::getSize() const {
H A DRegAllocFast.cpp208 int FrameIdx = MF->getFrameInfo()->CreateSpillStackObject(RC->getSize(),
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp2965 MRI.getRegClass(DstReg)->getSize(),
3122 if (RC->getSize() == 4 && X86::FR32XRegClass.hasSubClassEq(RC))
3124 if (RC->getSize() == 8 && X86::FR64XRegClass.hasSubClassEq(RC))
3131 switch (RC->getSize()) {
3221 assert(MF.getFrameInfo()->getObjectSize(FrameIdx) >= RC->getSize() &&
3223 unsigned Alignment = std::max<uint32_t>(RC->getSize(), 16);
3239 unsigned Alignment = std::max<uint32_t>(RC->getSize(), 16);
3259 unsigned Alignment = std::max<uint32_t>(RC->getSize(), 16);
3273 unsigned Alignment = std::max<uint32_t>(RC->getSize(), 16);
3671 NewOpc = getCMovFromCond(NewCC, MRI->getRegClass(DstReg)->getSize(),
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp1385 uint64_t Size = CAT->getSize().getZExtValue();
1461 uint64_t Size = CAT->getSize().getZExtValue();
1640 Width = toBits(Layout.getSize());
1659 Width = toBits(Layout.getSize());
2476 cat->getSize(),
3850 return getConstantArrayType(unqualElementType, CAT->getSize(),
4153 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
4233 ElementCount *= CA->getSize().getZExtValue();
5282 S += llvm::utostr(CAT->getSize().getZExtValue());
5585 size = includeVBases ? layout.getSize()
[all...]
H A DExprConstant.cpp125 ArraySize = CAT->getSize().getZExtValue();
230 MostDerivedArraySize = CAT->getSize().getZExtValue();
2000 unsigned Elts = CAT->getSize().getZExtValue();
2107 if (CAT->getSize().ule(Index)) {
5161 ArrayType->getSize().getZExtValue()))
5166 Result.getStructField(1) = APValue(APSInt(ArrayType->getSize()));
5440 CAT->getSize().getZExtValue());
5489 unsigned NumElts = CAT->getSize().getZExtValue();
5544 unsigned N = CAT->getSize().getZExtValue();
/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp778 for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
1803 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
2639 for (unsigned i = 0, e = LI->getSize(); i != e; ++i) {
2853 if (!LI || LI->getSize() == 0 || hasNullFragReference(LI)) {
3188 if (LI->getSize() == 0) continue; // no pattern.
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCFrameLowering.cpp1176 RS->addScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
1186 RS->addScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
/freebsd-9.3-release/contrib/llvm/lib/DebugInfo/
H A DDWARFContext.cpp665 RelocatedSection->getSize(SectionSize);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DSourceManager.h184 unsigned getSize() const;
/freebsd-9.3-release/contrib/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp547 if (error(i->getSize(s.Size))) break;
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp556 if (MCID.getSize())
557 return MCID.getSize();
800 switch (RC->getSize()) {
991 switch (RC->getSize()) {
2827 Size += (*I)->getSize();
/freebsd-9.3-release/contrib/llvm/lib/TableGen/
H A DTGParser.cpp323 for (int64_t i = 0; i < List->getSize(); ++i) {
875 if (LHSl && LHSl->getSize() == 0) {

Completed in 514 milliseconds

123456