Home
last modified time | relevance | path

Searched refs:GV (Results 1 – 25 of 518) sorted by relevance

12345678910>>...21

/external/autotest/client/site_tests/firmware_TouchMTB/
Dfirmware_constants.py64 GV = _GestureVariation() variable
66 GV.HORIZONTAL = 'horizontal'
67 GV.VERTICAL = 'vertical'
68 GV.DIAGONAL = 'diagonal'
69 GV.LR = 'left_to_right'
70 GV.RL = 'right_to_left'
71 GV.TB = 'top_to_bottom'
72 GV.BT = 'bottom_to_top'
73 GV.CL = 'center_to_left'
74 GV.CR = 'center_to_right'
[all …]
Dtest_conf.py10 from firmware_constants import DEV, GV, VAL
324 variations=((GV.LOW_FREQUENCY, GV.MED_FREQUENCY, GV.HIGH_FREQUENCY),
325 (GV.HALF_AMPLITUDE, GV.MAX_AMPLITUDE),
326 (GV.SQUARE_WAVE,),
327 (GV.TL, GV.TR, GV.BL, GV.BR, GV.TS, GV.BS, GV.LS, GV.RS,
328 GV.CENTER),
333 GV.TL: ('top left corner',),
334 GV.TR: ('top right corner',),
335 GV.BL: ('bottom left corner',),
336 GV.BR: ('bottom right corner',),
[all …]
DtouchbotII_robot_wrapper.py16 from firmware_constants import GV, MODE, OPTIONS
126 GV.LR: (START, CENTER, END, CENTER),
127 GV.RL: (END, CENTER, START, CENTER),
128 GV.TB: (CENTER, START, CENTER, END),
129 GV.BT: (CENTER, END, CENTER, START),
130 GV.BLTR: (START, END, END, START),
131 GV.TRBL: (END, START, START, END),
132 GV.BRTL: (END, END, START, START),
133 GV.TLBR: (START, START, END, END),
134 GV.CUR: (CENTER, CENTER, END, START),
[all …]
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DConstantMerge.cpp47 bool hasKnownAlignment(GlobalVariable *GV) const;
51 unsigned getAlignment(GlobalVariable *GV) const;
73 if (GlobalValue *GV = in FindUsedValues() local
75 UsedValues.insert(GV); in FindUsedValues()
90 bool ConstantMerge::hasKnownAlignment(GlobalVariable *GV) const { in hasKnownAlignment()
91 return TD || GV->getAlignment() != 0; in hasKnownAlignment()
94 unsigned ConstantMerge::getAlignment(GlobalVariable *GV) const { in getAlignment()
96 return TD->getPreferredAlignment(GV); in getAlignment()
97 return GV->getAlignment(); in getAlignment()
127 GlobalVariable *GV = GVI++; in runOnModule() local
[all …]
DGlobalOpt.cpp78 bool ProcessGlobal(GlobalVariable *GV,Module::global_iterator &GVI);
79 bool ProcessInternalGlobal(GlobalVariable *GV,Module::global_iterator &GVI,
211 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>( in AnalyzeGlobal() local
214 if (StoredVal == GV->getInitializer()) { in AnalyzeGlobal()
218 cast<LoadInst>(StoredVal)->getOperand(0) == GV) { in AnalyzeGlobal()
415 static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) { in IsUserOfGlobalSafeForSRA() argument
481 static bool GlobalUsersSafeToSRA(GlobalValue *GV) { in GlobalUsersSafeToSRA() argument
482 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); in GlobalUsersSafeToSRA()
484 if (!IsUserOfGlobalSafeForSRA(*UI, GV)) in GlobalUsersSafeToSRA()
496 static GlobalVariable *SRAGlobal(GlobalVariable *GV, const TargetData &TD) { in SRAGlobal() argument
[all …]
/external/llvm/lib/Transforms/IPO/
DConstantMerge.cpp46 GlobalValue *GV = cast<GlobalValue>(Operand); in FindUsedValues() local
47 UsedValues.insert(GV); in FindUsedValues()
63 static unsigned getAlignment(GlobalVariable *GV) { in getAlignment() argument
64 unsigned Align = GV->getAlignment(); in getAlignment()
67 return GV->getParent()->getDataLayout().getPreferredAlignment(GV); in getAlignment()
93 GlobalVariable *GV = &*GVI++; in mergeConstants() local
96 GV->removeDeadConstantUsers(); in mergeConstants()
97 if (GV->use_empty() && GV->hasLocalLinkage()) { in mergeConstants()
98 GV->eraseFromParent(); in mergeConstants()
103 if (!GV->isConstant() || !GV->hasDefinitiveInitializer() || in mergeConstants()
[all …]
DGlobalOpt.cpp70 static bool isLeakCheckerRoot(GlobalVariable *GV) { in isLeakCheckerRoot() argument
79 if (GV->hasPrivateLinkage()) in isLeakCheckerRoot()
83 Types.push_back(GV->getValueType()); in isLeakCheckerRoot()
147 static bool CleanupPointerRootUsers(GlobalVariable *GV, in CleanupPointerRootUsers() argument
165 for (Value::user_iterator UI = GV->user_begin(), E = GV->user_end(); in CleanupPointerRootUsers()
204 CleanupPointerRootUsers(GV, TLI); in CleanupPointerRootUsers()
353 static bool IsUserOfGlobalSafeForSRA(User *U, GlobalValue *GV) { in IsUserOfGlobalSafeForSRA() argument
419 static bool GlobalUsersSafeToSRA(GlobalValue *GV) { in GlobalUsersSafeToSRA() argument
420 for (User *U : GV->users()) in GlobalUsersSafeToSRA()
421 if (!IsUserOfGlobalSafeForSRA(U, GV)) in GlobalUsersSafeToSRA()
[all …]
DInternalize.cpp66 bool operator()(const GlobalValue &GV) { in operator ()() argument
67 return ExternalNames.count(GV.getName()); in operator ()()
92 bool InternalizePass::shouldPreserveGV(const GlobalValue &GV) { in shouldPreserveGV() argument
94 if (GV.isDeclaration()) in shouldPreserveGV()
98 if (GV.hasAvailableExternallyLinkage()) in shouldPreserveGV()
102 if (GV.hasDLLExportStorageClass()) in shouldPreserveGV()
106 if (GV.hasLocalLinkage()) in shouldPreserveGV()
110 if (AlwaysPreserved.count(GV.getName())) in shouldPreserveGV()
113 return MustPreserveGV(GV); in shouldPreserveGV()
117 GlobalValue &GV, const std::set<const Comdat *> &ExternalComdats) { in maybeInternalize() argument
[all …]
DGlobalDCE.cpp91 for (GlobalVariable &GV : M.globals()) in run()
92 if (Comdat *C = GV.getComdat()) in run()
93 ComdatMembers.insert(std::make_pair(C, &GV)); in run()
129 for (GlobalVariable &GV : M.globals()) in run()
130 if (!AliveGlobals.count(&GV)) { in run()
131 DeadGlobalVars.push_back(&GV); // Keep track of dead globals in run()
132 if (GV.hasInitializer()) { in run()
133 Constant *Init = GV.getInitializer(); in run()
134 GV.setInitializer(nullptr); in run()
177 for (GlobalVariable *GV : DeadGlobalVars) { in run()
[all …]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
DExecutionEngine.cpp89 GVMemoryBlock(const GlobalVariable *GV) in GVMemoryBlock() argument
90 : CallbackVH(const_cast<GlobalVariable*>(GV)) {} in GVMemoryBlock()
95 static char *Create(const GlobalVariable *GV, const TargetData& TD) { in Create() argument
96 Type *ElTy = GV->getType()->getElementType(); in Create()
100 TD.getPreferredAlignment(GV)) in Create()
102 new(RawMemory) GVMemoryBlock(GV); in Create()
116 char *ExecutionEngine::getMemoryForGV(const GlobalVariable *GV) { in getMemoryForGV() argument
117 return GVMemoryBlock::Create(GV, *getTargetData()); in getMemoryForGV()
160 void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) { in addGlobalMapping() argument
163 DEBUG(dbgs() << "JIT: Map \'" << GV->getName() in addGlobalMapping()
[all …]
/external/llvm/lib/Target/Hexagon/
DHexagonTargetObjectFile.cpp105 const GlobalValue *GV, SectionKind Kind, Mangler &Mang, in SelectSectionForGlobal() argument
107 TRACE("[SelectSectionForGlobal] GV(" << GV->getName() << ") "); in SelectSectionForGlobal()
108 TRACE("input section(" << GV->getSection() << ") "); in SelectSectionForGlobal()
110 TRACE((GV->hasPrivateLinkage() ? "private_linkage " : "") in SelectSectionForGlobal()
111 << (GV->hasLocalLinkage() ? "local_linkage " : "") in SelectSectionForGlobal()
112 << (GV->hasInternalLinkage() ? "internal " : "") in SelectSectionForGlobal()
113 << (GV->hasExternalLinkage() ? "external " : "") in SelectSectionForGlobal()
114 << (GV->hasCommonLinkage() ? "common_linkage " : "") in SelectSectionForGlobal()
115 << (GV->hasCommonLinkage() ? "common " : "" ) in SelectSectionForGlobal()
120 if (isGlobalInSmallSection(GV, TM)) in SelectSectionForGlobal()
[all …]
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp99 GVMemoryBlock(const GlobalVariable *GV) in GVMemoryBlock() argument
100 : CallbackVH(const_cast<GlobalVariable*>(GV)) {} in GVMemoryBlock()
105 static char *Create(const GlobalVariable *GV, const DataLayout& TD) { in Create() argument
106 Type *ElTy = GV->getValueType(); in Create()
109 alignTo(sizeof(GVMemoryBlock), TD.getPreferredAlignment(GV)) + GVSize); in Create()
110 new(RawMemory) GVMemoryBlock(GV); in Create()
124 char *ExecutionEngine::getMemoryForGV(const GlobalVariable *GV) { in getMemoryForGV() argument
125 return GVMemoryBlock::Create(GV, getDataLayout()); in getMemoryForGV()
165 GlobalVariable *GV = Modules[i]->getGlobalVariable(Name,AllowInternal); in FindGlobalVariableNamed() local
166 if (GV && !GV->isDeclaration()) in FindGlobalVariableNamed()
[all …]
/external/llvm/lib/Transforms/Utils/
DSplitModule.cpp44 const GlobalValue *GV, const User *U) { in addNonConstUser() argument
49 GVtoClusterMap.unionSets(GV, F); in addNonConstUser()
52 GVtoClusterMap.unionSets(GV, cast<GlobalValue>(U)); in addNonConstUser()
60 const GlobalValue *GV, const Value *V) { in addAllGlobalValueUsers() argument
71 addNonConstUser(GVtoClusterMap, GV, UU); in addAllGlobalValueUsers()
89 auto recordGVSet = [&GVtoClusterMap, &ComdatMembers](GlobalValue &GV) { in findPartitions() argument
90 if (GV.isDeclaration()) in findPartitions()
93 if (!GV.hasName()) in findPartitions()
94 GV.setName("__llvmsplit_unnamed"); in findPartitions()
100 if (const Comdat *C = GV.getComdat()) { in findPartitions()
[all …]
/external/llvm/lib/Target/Lanai/
DLanaiTargetObjectFile.cpp52 const GlobalValue *GV, const TargetMachine &TM) const { in isGlobalInSmallSection() argument
56 if (GV->isDeclaration() || GV->hasAvailableExternallyLinkage()) in isGlobalInSmallSection()
57 return isGlobalInSmallSectionImpl(GV, TM); in isGlobalInSmallSection()
59 return isGlobalInSmallSection(GV, TM, getKindForGlobal(GV, TM)); in isGlobalInSmallSection()
64 bool LanaiTargetObjectFile::isGlobalInSmallSection(const GlobalValue *GV, in isGlobalInSmallSection() argument
67 return (isGlobalInSmallSectionImpl(GV, TM) && in isGlobalInSmallSection()
75 const GlobalValue *GV, const TargetMachine &TM) const { in isGlobalInSmallSectionImpl() argument
77 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV); in isGlobalInSmallSectionImpl()
81 if (GV->hasLocalLinkage()) in isGlobalInSmallSectionImpl()
84 if (((GV->hasExternalLinkage() && GV->isDeclaration()) || in isGlobalInSmallSectionImpl()
[all …]
/external/llvm/lib/Target/
DTargetMachine.cpp91 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) { in getSelectedTLSModel() argument
92 switch (GV->getThreadLocalMode()) { in getSelectedTLSModel()
112 const GlobalValue *GV) const { in shouldAssumeDSOLocal()
117 if (GV && GV->hasDLLImportStorageClass()) in shouldAssumeDSOLocal()
124 if (GV && (GV->hasLocalLinkage() || !GV->hasDefaultVisibility())) in shouldAssumeDSOLocal()
130 return GV && GV->isStrongDefinitionForLinker(); in shouldAssumeDSOLocal()
140 if (GV && !GV->isDeclarationForLinker()) in shouldAssumeDSOLocal()
143 bool IsTLS = GV && GV->isThreadLocal(); in shouldAssumeDSOLocal()
153 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const { in getTLSModel()
154 bool IsPIE = GV->getParent()->getPIELevel() != PIELevel::Default; in getTLSModel()
[all …]
DTargetLoweringObjectFile.cpp53 static bool isSuitableForBSS(const GlobalVariable *GV, bool NoZerosInBSS) { in isSuitableForBSS() argument
54 const Constant *C = GV->getInitializer(); in isSuitableForBSS()
61 if (GV->isConstant()) in isSuitableForBSS()
65 if (GV->hasSection()) in isSuitableForBSS()
104 const GlobalValue *GV, StringRef Suffix, Mangler &Mang, in getSymbolWithGlobalValueBase() argument
109 NameStr += GV->getParent()->getDataLayout().getPrivateGlobalPrefix(); in getSymbolWithGlobalValueBase()
110 TM.getNameWithPrefix(NameStr, GV, Mang); in getSymbolWithGlobalValueBase()
116 const GlobalValue *GV, Mangler &Mang, const TargetMachine &TM, in getCFIPersonalitySymbol() argument
118 return TM.getSymbol(GV, Mang); in getCFIPersonalitySymbol()
132 SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalValue *GV, in getKindForGlobal() argument
[all …]
/external/llvm/lib/Target/Mips/
DMipsTargetObjectFile.cpp65 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM) const { in IsGlobalInSmallSection() argument
69 if (GV->isDeclaration() || GV->hasAvailableExternallyLinkage()) in IsGlobalInSmallSection()
70 return IsGlobalInSmallSectionImpl(GV, TM); in IsGlobalInSmallSection()
72 return IsGlobalInSmallSection(GV, TM, getKindForGlobal(GV, TM)); in IsGlobalInSmallSection()
78 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM, in IsGlobalInSmallSection() argument
80 return (IsGlobalInSmallSectionImpl(GV, TM) && in IsGlobalInSmallSection()
88 IsGlobalInSmallSectionImpl(const GlobalValue *GV, in IsGlobalInSmallSectionImpl() argument
98 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV); in IsGlobalInSmallSectionImpl()
103 if (!LocalSData && GV->hasLocalLinkage()) in IsGlobalInSmallSectionImpl()
107 if (!ExternSData && ((GV->hasExternalLinkage() && GV->isDeclaration()) || in IsGlobalInSmallSectionImpl()
[all …]
/external/llvm/lib/Linker/
DLinkModules.cpp47 void addLazyFor(GlobalValue &GV, const IRMover::ValueAdder &Add);
106 void dropReplacedComdat(GlobalValue &GV,
109 bool linkIfNeeded(GlobalValue &GV);
353 bool ModuleLinker::linkIfNeeded(GlobalValue &GV) { in linkIfNeeded() argument
354 GlobalValue *DGV = getLinkedToGlobal(&GV); in linkIfNeeded()
359 if (DGV && !GV.hasLocalLinkage() && !GV.hasAppendingLinkage()) { in linkIfNeeded()
361 auto *SGVar = dyn_cast<GlobalVariable>(&GV); in linkIfNeeded()
376 getMinVisibility(DGV->getVisibility(), GV.getVisibility()); in linkIfNeeded()
378 GV.setVisibility(Visibility); in linkIfNeeded()
381 DGV->getUnnamedAddr(), GV.getUnnamedAddr()); in linkIfNeeded()
[all …]
/external/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp53 const GlobalValue *GV, Mangler &Mang, const TargetMachine &TM, in getCFIPersonalitySymbol() argument
58 TM.getSymbol(GV, Mang)->getName()); in getCFIPersonalitySymbol()
60 return TM.getSymbol(GV, Mang); in getCFIPersonalitySymbol()
87 const GlobalValue *GV, unsigned Encoding, Mangler &Mang, in getTTypeGlobalReference() argument
94 MCSymbol *SSym = getSymbolWithGlobalValueBase(GV, ".DW.stub", Mang, TM); in getTTypeGlobalReference()
100 MCSymbol *Sym = TM.getSymbol(GV, Mang); in getTTypeGlobalReference()
101 StubSym = MachineModuleInfoImpl::StubValueTy(Sym, !GV->hasLocalLinkage()); in getTTypeGlobalReference()
110 getTTypeGlobalReference(GV, Encoding, Mang, TM, MMI, Streamer); in getTTypeGlobalReference()
195 static const Comdat *getELFComdat(const GlobalValue *GV) { in getELFComdat() argument
196 const Comdat *C = GV->getComdat(); in getELFComdat()
[all …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp47 TargetLoweringObjectFileELF::getCFIPersonalitySymbol(const GlobalValue *GV, in getCFIPersonalitySymbol() argument
55 return Mang->getSymbol(GV); in getCFIPersonalitySymbol()
59 Mang->getSymbol(GV)->getName()); in getCFIPersonalitySymbol()
175 getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind, in getExplicitSectionGlobal() argument
177 StringRef SectionName = GV->getSection(); in getExplicitSectionGlobal()
207 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind, in SelectSectionForGlobal() argument
219 if ((GV->isWeakForLinker() || EmitUniquedSection) && in SelectSectionForGlobal()
225 MCSymbol *Sym = Mang->getSymbol(GV); in SelectSectionForGlobal()
229 if (GV->isWeakForLinker()) { in SelectSectionForGlobal()
249 TM.getTargetData()->getPreferredAlignment(cast<GlobalVariable>(GV)); in SelectSectionForGlobal()
[all …]
/external/llvm/lib/Target/XCore/
DXCoreLowerThreadLocal.cpp49 bool lowerGlobal(GlobalVariable *GV);
161 static bool rewriteNonInstructionUses(GlobalVariable *GV, Pass *P) { in rewriteNonInstructionUses() argument
163 for (User *U : GV->users()) in rewriteNonInstructionUses()
180 bool XCoreLowerThreadLocal::lowerGlobal(GlobalVariable *GV) { in lowerGlobal() argument
181 Module *M = GV->getParent(); in lowerGlobal()
182 if (!GV->isThreadLocal()) in lowerGlobal()
186 if (!rewriteNonInstructionUses(GV, this) || in lowerGlobal()
187 !GV->getType()->isSized() || isZeroLengthArray(GV->getType())) in lowerGlobal()
191 ArrayType *NewType = createLoweredType(GV->getValueType()); in lowerGlobal()
193 if (GV->hasInitializer()) in lowerGlobal()
[all …]
DXCoreAsmPrinter.cpp78 void emitArrayBound(MCSymbol *Sym, const GlobalVariable *GV);
79 void EmitGlobalVariable(const GlobalVariable *GV) override;
92 void XCoreAsmPrinter::emitArrayBound(MCSymbol *Sym, const GlobalVariable *GV) { in emitArrayBound() argument
93 assert( ( GV->hasExternalLinkage() || GV->hasWeakLinkage() || in emitArrayBound()
94 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage() ) && in emitArrayBound()
96 if (ArrayType *ATy = dyn_cast<ArrayType>(GV->getValueType())) { in emitArrayBound()
104 if (GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() || in emitArrayBound()
105 GV->hasCommonLinkage()) { in emitArrayBound()
111 void XCoreAsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) { in EmitGlobalVariable() argument
113 if (!GV->hasInitializer() || in EmitGlobalVariable()
[all …]
/external/llvm/lib/Object/
DIRObjectFile.cpp138 const GlobalValue *GV = &*I; in skipEmpty() local
139 return reinterpret_cast<uintptr_t>(GV) | 2; in skipEmpty()
145 const GlobalValue *GV = &*I; in skipEmpty() local
146 return reinterpret_cast<uintptr_t>(GV) | 1; in skipEmpty()
152 const GlobalValue *GV = &*I; in skipEmpty() local
153 return reinterpret_cast<uintptr_t>(GV) | 0; in skipEmpty()
164 const GlobalValue *GV = getGV(Symb); in moveSymbolNext() local
169 Module::const_iterator Iter(static_cast<const Function*>(GV)); in moveSymbolNext()
175 Module::const_global_iterator Iter(static_cast<const GlobalVariable*>(GV)); in moveSymbolNext()
181 Module::const_alias_iterator Iter(static_cast<const GlobalAlias*>(GV)); in moveSymbolNext()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
DMBlazeTargetObjectFile.cpp46 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM) const { in IsGlobalInSmallSection() argument
47 if (GV->isDeclaration() || GV->hasAvailableExternallyLinkage()) in IsGlobalInSmallSection()
50 return IsGlobalInSmallSection(GV, TM, getKindForGlobal(GV, TM)); in IsGlobalInSmallSection()
56 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM, in IsGlobalInSmallSection() argument
59 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV); in IsGlobalInSmallSection()
72 Type *Ty = GV->getType()->getElementType(); in IsGlobalInSmallSection()
77 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind, in SelectSectionForGlobal() argument
83 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind)) in SelectSectionForGlobal()
85 if (Kind.isDataNoRel() && IsGlobalInSmallSection(GV, TM, Kind)) in SelectSectionForGlobal()
89 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GV, Kind, Mang,TM); in SelectSectionForGlobal()
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
DMipsTargetObjectFile.cpp49 bool MipsTargetObjectFile::IsGlobalInSmallSection(const GlobalValue *GV, in IsGlobalInSmallSection() argument
51 if (GV->isDeclaration() || GV->hasAvailableExternallyLinkage()) in IsGlobalInSmallSection()
54 return IsGlobalInSmallSection(GV, TM, getKindForGlobal(GV, TM)); in IsGlobalInSmallSection()
60 IsGlobalInSmallSection(const GlobalValue *GV, const TargetMachine &TM, in IsGlobalInSmallSection() argument
69 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV); in IsGlobalInSmallSection()
82 Type *Ty = GV->getType()->getElementType(); in IsGlobalInSmallSection()
89 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind, in SelectSectionForGlobal() argument
95 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind)) in SelectSectionForGlobal()
97 if (Kind.isDataNoRel() && IsGlobalInSmallSection(GV, TM, Kind)) in SelectSectionForGlobal()
101 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GV, Kind, Mang,TM); in SelectSectionForGlobal()

12345678910>>...21