/external/llvm/tools/llvm-extract/ |
H A D | llvm-extract.cpp | 126 GlobalAlias *GA = M->getNamedAlias(ExtractAliases[i]); local 127 if (!GA) { 132 GVs.insert(GA); 144 for (Module::alias_iterator GA = M->alias_begin(), E = M->alias_end(); 145 GA != E; GA++) { 146 if (RegEx.match(GA->getName())) { 147 GVs.insert(&*GA);
|
/external/clang/test/Layout/ |
H A D | ms-x86-vtordisp.cpp | 341 struct GA { struct 344 struct GB: public GA {}; 345 struct GC: public virtual GA { 357 // CHECK-NEXT: 4 | (vtordisp for vbase GA) 358 // CHECK-NEXT: 8 | struct GA (virtual base) 359 // CHECK-NEXT: 8 | (GA vftable pointer) 363 // CHECK-NEXT: 16 | struct GA (primary base) 364 // CHECK-NEXT: 16 | (GA vftable pointer) 373 // CHECK-X64-NEXT: 12 | (vtordisp for vbase GA) 374 // CHECK-X64-NEXT: 16 | struct GA (virtua [all...] |
/external/llvm/lib/Target/BPF/ |
H A D | BPFISelLowering.cpp | 532 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, MVT::i64); local 534 return DAG.getNode(BPFISD::Wrapper, DL, MVT::i64, GA);
|
/external/llvm/lib/Analysis/ |
H A D | MemoryBuiltins.cpp | 425 if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) 426 return visitGlobalAlias(*GA); 545 SizeOffsetType ObjectSizeOffsetVisitor::visitGlobalAlias(GlobalAlias &GA) { argument 546 if (GA.mayBeOverridden()) 548 return compute(GA.getAliasee());
|
/external/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyISelLowering.cpp | 199 const GlobalAddressSDNode * /*GA*/) const { 574 const auto *GA = cast<GlobalAddressSDNode>(Op); local 576 assert(GA->getTargetFlags() == 0 && "WebAssembly doesn't set target flags"); 577 if (GA->getAddressSpace() != 0) 581 DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT, GA->getOffset()));
|
/external/skia/src/core/ |
H A D | SkScalerContext.cpp | 751 // GA is the matrix A with rotation removed. 752 SkMatrix GA; local 759 // G is the Givens Matrix for A (rotational matrix where GA[0][1] == 0). 763 GA = G; 764 GA.preConcat(A); 774 GA = A; 780 // At this point, given GA, create s. 783 s->fX = SkScalarAbs(GA.get(SkMatrix::kMScaleX)); 784 s->fY = SkScalarAbs(GA.get(SkMatrix::kMScaleY)); 787 SkScalar yScale = SkScalarAbs(GA [all...] |
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/ |
H A D | rfc2217.py | 101 GA = to_bytes([249]) # Go Ahead variable
|
/external/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngine.cpp | 1342 void *GA = getPointerToGlobalIfAvailable(GV); local 1344 if (!GA) { 1346 GA = getMemoryForGV(GV); 1349 if (!GA) return; 1351 addGlobalMapping(GV, GA); 1356 InitializeMemory(GV->getInitializer(), GA);
|
/external/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 2293 auto *GA = dyn_cast<GlobalAlias>(Name.getValue()); local 2294 if (GA && GA->getBaseObject()) 2295 F = dyn_cast<Function>(GA->getBaseObject());
|
/external/llvm/lib/Target/XCore/ |
H A D | XCoreISelLowering.cpp | 254 SDValue XCoreTargetLowering::getGlobalAddressWrapper(SDValue GA, argument 258 SDLoc dl(GA); 261 return DAG.getNode(XCoreISD::PCRelativeWrapper, dl, MVT::i32, GA); 266 return DAG.getNode(XCoreISD::CPRelativeWrapper, dl, MVT::i32, GA); 268 return DAG.getNode(XCoreISD::DPRelativeWrapper, dl, MVT::i32, GA); 294 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, MVT::i32, FoldedOffset); local 295 GA = getGlobalAddressWrapper(GA, GV, DAG); 299 GA = DAG.getNode(ISD::ADD, DL, MVT::i32, GA, Remainin 305 Constant *GA = ConstantExpr::getBitCast(const_cast<GlobalValue*>(GV), Ty); local [all...] |
/external/llvm/lib/Transforms/IPO/ |
H A D | MergeFunctions.cpp | 1723 auto *GA = GlobalAlias::create(G->getLinkage(), "", F); local 1725 GA->takeName(G); 1726 GA->setVisibility(G->getVisibility()); 1728 G->replaceAllUsesWith(GA); 1731 DEBUG(dbgs() << "writeAlias: " << GA->getName() << '\n');
|
H A D | GlobalOpt.cpp | 2930 static bool hasUseOtherThanLLVMUsed(GlobalAlias &GA, const LLVMUsed &U) { argument 2931 if (GA.use_empty()) // No use at all. 2934 assert((!U.usedCount(&GA) || !U.compilerUsedCount(&GA)) && 2937 if (!GA.hasOneUse()) 2943 return !U.usedCount(&GA) && !U.compilerUsedCount(&GA); 2957 static bool mayHaveOtherReferences(GlobalAlias &GA, const LLVMUsed &U) { argument 2958 if (!GA.hasLocalLinkage()) 2961 return U.usedCount(&GA) || 2964 hasUsesToReplace(GlobalAlias &GA, const LLVMUsed &U, bool &RenameTarget) argument [all...] |
/external/tcpdump/ |
H A D | print-telnet.c | 73 #define GA 249 /* you may reverse the line */ macro 94 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 275 TargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { 282 GA && GA->getGlobal()->isStrongDefinitionForLinker()) 2093 bool TargetLowering::isGAPlusOffset(SDNode *N, const GlobalValue *&GA, argument 2097 GA = GASD->getGlobal(); 2105 if (isGAPlusOffset(N1.getNode(), GA, Offset)) { 2111 } else if (isGAPlusOffset(N2.getNode(), GA, Offset)) { 2210 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op); local 2215 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0)); 2216 if (!C || !GA) { 3063 LowerToTLSEmulatedModel(const GlobalAddressSDNode *GA, SelectionDAG &DAG) const argument [all...] |
/external/llvm/lib/IR/ |
H A D | AsmWriter.cpp | 722 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) 723 return new SlotTracker(GA->getParent()); 2256 for (const GlobalAlias &GA : M->aliases()) 2257 printAlias(&GA); 2438 void AssemblyWriter::printAlias(const GlobalAlias *GA) { argument 2439 if (GA->isMaterializable()) 2442 WriteAsOperandInternal(Out, GA, &TypePrinter, &Machine, GA->getParent()); 2445 PrintLinkage(GA->getLinkage(), Out); 2446 PrintVisibility(GA [all...] |
H A D | Verifier.cpp | 302 void visitGlobalAlias(const GlobalAlias &GA); 558 void Verifier::visitAliaseeSubExpr(const GlobalAlias &GA, const Constant &C) { argument 560 Visited.insert(&GA); 561 visitAliaseeSubExpr(Visited, GA, C); 565 const GlobalAlias &GA, const Constant &C) { 568 &GA); 571 Assert(Visited.insert(GA2).second, "Aliases cannot form a cycle", &GA); 574 &GA); 588 visitAliaseeSubExpr(Visited, GA, *GA2->getAliasee()); 590 visitAliaseeSubExpr(Visited, GA, *C 564 visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias*> &Visited, const GlobalAlias &GA, const Constant &C) argument 594 visitGlobalAlias(const GlobalAlias &GA) argument 598 &GA); local 605 "Aliasee should be either GlobalValue or ConstantExpr", &GA); local [all...] |
/external/llvm/lib/Target/AMDGPU/ |
H A D | SIISelLowering.cpp | 1113 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, MVT::i32); local 1114 return DAG.getNode(AMDGPUISD::CONST_DATA_PTR, DL, PtrVT, GA);
|
/external/llvm/lib/Target/Hexagon/ |
H A D | HexagonISelLowering.cpp | 1463 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, Offset); local 1465 return DAG.getNode(HexagonISD::CONST32_GP, dl, PtrVT, GA); 1466 return DAG.getNode(HexagonISD::CONST32, dl, PtrVT, GA); 1472 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, Offset, local 1474 return DAG.getNode(HexagonISD::AT_PCREL, dl, PtrVT, GA); 1479 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, HexagonII::MO_GOT); local 1481 return DAG.getNode(HexagonISD::AT_GOT, dl, PtrVT, GOT, GA, Off); 2741 bool HexagonTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA)
|
H A D | HexagonInstrInfo.cpp | 2926 unsigned HexagonInstrInfo::getCompoundOpcode(const MachineInstr *GA, argument 2928 assert(getCompoundCandidateGroup(GA) == HexagonII::HCG_A); 2930 if ((GA->getOpcode() != Hexagon::C2_cmpeqi) || 2933 unsigned DestReg = GA->getOperand(0).getReg();
|
/external/llvm/lib/Target/Sparc/ |
H A D | SparcISelLowering.cpp | 1862 if (const GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op)) 1863 return DAG.getTargetGlobalAddress(GA->getGlobal(), 1864 SDLoc(GA), 1865 GA->getValueType(0), 1866 GA->getOffset(), TF); 1968 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); local 1970 return LowerToTLSEmulatedModel(GA, DAG); 1972 SDLoc DL(GA); 1973 const GlobalValue *GV = GA->getGlobal(); 3313 SparcTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) cons [all...] |
/external/llvm/lib/Target/X86/ |
H A D | X86ISelDAGToDAG.cpp | 1651 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA 1680 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N); local 1683 AM.GV = GA->getGlobal(); 1684 AM.Disp += GA->getOffset(); 1686 AM.SymbolFlags = GA->getTargetFlags();
|
/external/llvm/lib/Transforms/Instrumentation/ |
H A D | DataFlowSanitizer.cpp | 163 /// If GA aliases a function, the alias's name is matched as a function name 165 bool isIn(const GlobalAlias &GA, StringRef Category) const { argument 166 if (isIn(*GA.getParent(), Category)) 169 if (isa<FunctionType>(GA.getType()->getElementType())) 170 return SCL->inSection("fun", GA.getName(), Category); 172 return SCL->inSection("global", GA.getName(), Category) || 173 SCL->inSection("type", GetGlobalTypeString(GA), Category); 262 bool isInstrumented(const GlobalAlias *GA); 495 bool DataFlowSanitizer::isInstrumented(const GlobalAlias *GA) { argument 496 return !ABIList.isIn(*GA, "uninstrumente 675 GlobalAlias *GA = &*i; local [all...] |
/external/clang/lib/CodeGen/ |
H A D | CodeGenModule.cpp | 262 static const llvm::GlobalObject *getAliasedGlobal(const llvm::GlobalAlias &GA) { argument 264 const llvm::Constant *C = &GA; 319 if (auto GA = dyn_cast<llvm::GlobalAlias>(AliaseeGV)) { 320 if (GA->mayBeOverridden()) { 322 << GV->getName() << GA->getName(); 324 GA->getAliasee(), Alias->getType()); 2763 auto *GA = llvm::GlobalAlias::create( local 2767 if (GA->getAliasee() == Entry) { 2781 GA->takeName(Entry); 2783 Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GA, [all...] |
/external/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 1816 auto *GA = dyn_cast<GlobalAlias>(V); local 1817 if (GA) 1818 GO = GA->getBaseObject();
|
/external/llvm/lib/Target/Mips/ |
H A D | MipsISelLowering.cpp | 1730 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); local 1732 return LowerToTLSEmulatedModel(GA, DAG); 1734 SDLoc DL(GA); 1735 const GlobalValue *GV = GA->getGlobal(); 3607 MipsTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
|