HomeSort by relevance Sort by last modified time
    Searched refs:GA (Results 51 - 75 of 229) sorted by null

1 23 4 5 6 7 8 910

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Transforms/Utils/
ValueMapper.h 176 void scheduleMapGlobalAliasee(GlobalAlias &GA, Constant &Aliasee,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Transforms/Utils/
ValueMapper.h 176 void scheduleMapGlobalAliasee(GlobalAlias &GA, Constant &Aliasee,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Transforms/Utils/
ValueMapper.h 176 void scheduleMapGlobalAliasee(GlobalAlias &GA, Constant &Aliasee,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/arpa/
telnet.h 44 #define GA 249 /* you may reverse the line */
65 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 251 SDValue XCoreTargetLowering::getGlobalAddressWrapper(SDValue GA,
255 SDLoc dl(GA);
258 return DAG.getNode(XCoreISD::PCRelativeWrapper, dl, MVT::i32, GA);
263 return DAG.getNode(XCoreISD::CPRelativeWrapper, dl, MVT::i32, GA);
265 return DAG.getNode(XCoreISD::DPRelativeWrapper, dl, MVT::i32, GA);
291 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, MVT::i32, FoldedOffset);
292 GA = getGlobalAddressWrapper(GA, GV, DAG);
296 GA = DAG.getNode(ISD::ADD, DL, MVT::i32, GA, Remaining)
    [all...]
XCoreISelLowering.h 161 SDValue getGlobalAddressWrapper(SDValue GA, const GlobalValue *GV,
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreISelLowering.cpp 224 getGlobalAddressWrapper(SDValue GA, const GlobalValue *GV,
228 DebugLoc dl = GA.getDebugLoc();
230 return DAG.getNode(XCoreISD::PCRelativeWrapper, dl, MVT::i32, GA);
235 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
236 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal());
240 return DAG.getNode(XCoreISD::CPRelativeWrapper, dl, MVT::i32, GA);
242 return DAG.getNode(XCoreISD::DPRelativeWrapper, dl, MVT::i32, GA);
249 SDValue GA = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(), MVT::i32);
250 return getGlobalAddressWrapper(GA, GV, DAG);
270 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, MVT::i32)
    [all...]
XCoreISelLowering.h 131 SDValue getGlobalAddressWrapper(SDValue GA, const GlobalValue *GV,
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 433 if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
434 return visitGlobalAlias(*GA);
577 SizeOffsetType ObjectSizeOffsetVisitor::visitGlobalAlias(GlobalAlias &GA) {
578 if (GA.isInterposable())
580 return compute(GA.getAliasee());
  /external/llvm/lib/IR/
Value.cpp 462 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
463 if (StripKind == PSK_ZeroIndices || GA->isInterposable())
465 V = GA->getAliasee();
519 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
520 V = GA->getAliasee();
Module.cpp 459 for (GlobalAlias &GA : aliases())
460 GA.dropAllReferences();
Verifier.cpp 328 for (const GlobalAlias &GA : M.aliases())
329 visitGlobalAlias(GA);
351 void visitGlobalAlias(const GlobalAlias &GA);
620 void Verifier::visitAliaseeSubExpr(const GlobalAlias &GA, const Constant &C) {
622 Visited.insert(&GA);
623 visitAliaseeSubExpr(Visited, GA, C);
627 const GlobalAlias &GA, const Constant &C) {
630 &GA);
633 Assert(Visited.insert(GA2).second, "Aliases cannot form a cycle", &GA);
636 &GA);
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 146 const GlobalAddressSDNode * /*GA*/) const {
610 const auto *GA = cast<GlobalAddressSDNode>(Op);
612 assert(GA->getTargetFlags() == 0 &&
614 if (GA->getAddressSpace() != 0)
618 DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT, GA->getOffset()));
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
MergeFunctions.cpp 761 GlobalAlias *GA = new GlobalAlias(G->getType(), G->getLinkage(), "",
764 GA->takeName(G);
765 GA->setVisibility(G->getVisibility());
767 G->replaceAllUsesWith(GA);
770 DEBUG(dbgs() << "writeAlias: " << GA->getName() << '\n');
  /external/llvm/lib/Target/ARM/
ARMISelLowering.h 408 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
537 SDValue LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
539 SDValue LowerToTLSExecModels(GlobalAddressSDNode *GA,
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 641 for (const GlobalAlias &GA : CG.getModule().aliases())
642 if (const Comdat *C = GA.getComdat())
  /external/swiftshader/third_party/LLVM/tools/llvm-nm/
llvm-nm.cpp 233 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(&GV)) {
234 const GlobalValue *AliasedGV = GA->getAliasedGlobal();
  /external/swiftshader/third_party/LLVM/lib/VMCore/
AsmWriter.cpp 398 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
399 return new SlotTracker(GA->getParent());
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 193 SizeOffsetType visitGlobalAlias(GlobalAlias &GA);
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 307 for (const GlobalAlias &GA : M.aliases())
308 EnumerateValue(&GA);
323 for (const GlobalAlias &GA : M.aliases())
324 EnumerateValue(GA.getAliasee());
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIISelLowering.h 110 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.h 100 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
MemoryBuiltins.h 214 SizeOffsetType visitGlobalAlias(GlobalAlias &GA);

Completed in 1090 milliseconds

1 23 4 5 6 7 8 910