HomeSort by relevance Sort by last modified time
    Searched refs:GV (Results 101 - 125 of 205) sorted by null

1 2 3 45 6 7 8 9

  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]
CodeGenModule.h 551 void setGlobalVisibility(llvm::GlobalValue *GV, const NamedDecl *D) const;
555 void setTLSMode(llvm::GlobalVariable *GV, const VarDecl &D) const;
569 void setTypeVisibility(llvm::GlobalValue *GV, const CXXRecordDecl *D,
776 void MaybeHandleStaticInExternC(const SomeDecl *D, llvm::GlobalValue *GV);
781 void AddUsedGlobal(llvm::GlobalValue *GV);
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 390 static unsigned getEncodedLinkage(const GlobalValue *GV) {
391 switch (GV->getLinkage()) {
412 static unsigned getEncodedVisibility(const GlobalValue *GV) {
413 switch (GV->getVisibility()) {
443 for (Module::const_global_iterator GV = M->global_begin(),E = M->global_end();
444 GV != E; ++GV) {
445 MaxAlignment = std::max(MaxAlignment, GV->getAlignment());
446 MaxGlobalType = std::max(MaxGlobalType, VE.getTypeID(GV->getType()));
448 if (!GV->hasSection()) continue
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 344 static unsigned getEncodedLinkage(const GlobalValue *GV) {
345 switch (GV->getLinkage()) {
366 static unsigned getEncodedVisibility(const GlobalValue *GV) {
367 switch (GV->getVisibility()) {
397 for (Module::const_global_iterator GV = M->global_begin(),E = M->global_end();
398 GV != E; ++GV) {
399 MaxAlignment = std::max(MaxAlignment, GV->getAlignment());
400 MaxGlobalType = std::max(MaxGlobalType, VE.getTypeID(GV->getType()));
402 if (!GV->hasSection()) continue
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 172 const GlobalValue *GV; // For MO_GlobalAddress.
430 return Contents.OffsetedInfo.Val.GV;
618 static MachineOperand CreateGA(const GlobalValue *GV, int64_t Offset,
621 Op.Contents.OffsetedInfo.Val.GV = GV;
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 302 const GlobalValue *GV = dyn_cast<GlobalValue>(CV->stripPointerCasts());
303 assert(GV && "C++ constructor pointer was not a GlobalValue!");
305 const MCExpr *E = MCSymbolRefExpr::Create(Mang->getSymbol(GV),
359 const GlobalValue *GV = MO.getGlobal();
366 O << *Mang->getSymbol(GV);
    [all...]
ARMConstantPoolValue.cpp 81 // Two PC relative constpool entries containing the same GV address or
133 ARMConstantPoolConstant::Create(const GlobalValue *GV,
135 return new ARMConstantPoolConstant((Type*)Type::getInt32Ty(GV->getContext()),
136 GV, 0, ARMCP::CPValue, 0,
ARMJITInfo.cpp 141 void *ARMJITInfo::emitGlobalValueIndirectSym(const GlobalValue *GV, void *Ptr,
147 GV, Buffer, sizeof(Buffer), /*Alignment=*/4);
174 << "] for GV '" << F->getName() << "'\n";
ARMConstantPoolValue.h 50 /// instruction and the constant being loaded, i.e. (&GV-(LPIC+8)).
56 ARMCP::ARMCPModifier Modifier; // GV modifier i.e. (&GV(modifier)-(LPIC+8))
132 static ARMConstantPoolConstant *Create(const GlobalValue *GV,
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 226 void TrackValueOfGlobalVariable(GlobalVariable *GV) {
228 if (GV->getType()->getElementType()->isSingleValueType()) {
229 LatticeVal &IV = TrackedGlobals[GV];
230 if (!isa<UndefValue>(GV->getInitializer()))
231 IV.markConstant(GV->getInitializer());
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 720 GlobalVariable *GV = M->getGlobalVariable("__llvm_gcov_global_state_pred");
721 if (!GV) {
722 GV = new GlobalVariable(*M, Type::getInt32Ty(*Ctx), false,
727 GV->setUnnamedAddr(true);
729 return GV;
769 GlobalVariable *GV = CountersBySP[j].first;
771 cast<ArrayType>(GV->getType()->getElementType())->getNumElements();
774 Builder.CreateConstGEP2_64(GV, 0, 0));
862 GlobalVariable *GV = I->first;
863 Constant *Null = Constant::getNullValue(GV->getType()->getElementType())
    [all...]
  /external/llvm/lib/IR/
DataLayout.cpp 672 unsigned DataLayout::getPreferredAlignment(const GlobalVariable *GV) const {
673 Type *ElemType = GV->getType()->getElementType();
675 unsigned GVAlignment = GV->getAlignment();
682 if (GV->hasInitializer() && GVAlignment == 0) {
696 unsigned DataLayout::getPreferredAlignmentLog(const GlobalVariable *GV) const {
697 return Log2_32(getPreferredAlignment(GV));
Core.cpp     [all...]
ConstantFold.cpp     [all...]
Value.cpp 152 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
153 if (Module *P = GV->getParent())
415 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
416 return !GV->hasExternalWeakLinkage();
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetObjectFile.h 115 getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
NVPTXAsmPrinter.cpp 71 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
72 Globals.insert(GV);
82 /// VisitGlobalVariableForEmission - Add \p GV to the list of GlobalVariable
86 const GlobalVariable *GV, SmallVectorImpl<const GlobalVariable *> &Order,
90 if (Visited.count(GV))
94 if (Visiting.count(GV))
98 Visiting.insert(GV);
102 for (unsigned i = 0, e = GV->getNumOperands(); i != e; ++i)
103 DiscoverDependentGlobals(GV->getOperand(i), Others);
111 Order.push_back(GV);
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCSubtarget.h 164 bool hasLazyResolverStub(const GlobalValue *GV,
PPCMCInstLower.cpp 43 const GlobalValue *GV = MO.getGlobal();
49 AP.Mang->getNameWithPrefix(Name, GV, isImplicitlyPrivate);
  /external/llvm/lib/Transforms/Utils/
Local.cpp     [all...]
  /external/llvm/include/llvm/IR/
DataLayout.h 384 unsigned getPreferredAlignment(const GlobalVariable *GV) const;
389 unsigned getPreferredAlignmentLog(const GlobalVariable *GV) const;
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 177 /// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
459 (!AM.GV || !Subtarget->isPICStyleRIPRel()) &&
494 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
500 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
506 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
518 AM.GV = GV;
521 unsigned char GVFlags = Subtarget->ClassifyGlobalReference(GV, TM);
554 StubAM.GV = GV;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetMachine.h 205 TLSModel::Model getTLSModel(const GlobalValue *GV) const;
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 324 const GlobalVariable *GV = M.getGlobalVariable("llvm.used");
325 if (!GV || !GV->hasInitializer()) return;
328 const ConstantArray *InitList = cast<ConstantArray>(GV->getInitializer());

Completed in 1502 milliseconds

1 2 3 45 6 7 8 9