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

1 2 3 4 5 6 7 8 910

  /external/llvm/lib/Transforms/IPO/
GlobalDCE.cpp 94 for (GlobalAlias &GA : M.aliases())
95 if (Comdat *C = GA.getComdat())
96 ComdatMembers.insert(std::make_pair(C, &GA));
109 for (GlobalAlias &GA : M.aliases()) {
110 Changed |= RemoveUnusedGlobalValue(GA);
112 if (!GA.isDiscardableIfUnused())
113 GlobalIsNeeded(&GA);
151 for (GlobalAlias &GA : M.aliases())
152 if (!AliveGlobals.count(&GA)) {
153 DeadAliases.push_back(&GA);
    [all...]
Internalize.cpp 167 for (GlobalAlias &GA : M.aliases())
168 checkComdatVisibility(GA, ExternalComdats);
228 for (auto &GA : M.aliases()) {
229 if (!maybeInternalize(GA, ExternalComdats))
234 DEBUG(dbgs() << "Internalized alias " << GA.getName() << "\n");
FunctionImport.cpp 629 for (GlobalAlias &GA : SrcModule->aliases()) {
630 if (!GA.hasName())
632 auto GUID = GA.getGUID();
635 << " " << GA.getName() << " from "
642 GlobalObject *GO = GA.getBaseObject();
653 GA.materialize();
654 GlobalsToImport.insert(&GA);
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 126 GlobalAlias *GA = M->getNamedAlias(ExtractAliases[i]);
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/swiftshader/third_party/LLVM/unittests/VMCore/
VerifierTest.cpp 55 GlobalAlias *GA = new GlobalAlias(Type::getInt8PtrTy(C),
58 GA->setUnnamedAddr(true);
  /external/llvm/lib/Transforms/Utils/
FunctionImportUtils.cpp 27 if (auto *GA = dyn_cast<GlobalAlias>(SGV)) {
28 if (GA->hasWeakAnyLinkage())
30 const GlobalObject *GO = GA->getBaseObject();
229 for (GlobalAlias &GA : M.aliases())
230 processGlobalForThinLTO(GA);
CloneModule.cpp 98 auto *GA = GlobalAlias::create(I->getValueType(),
101 GA->copyAttributesFrom(&*I);
102 VMap[&*I] = GA;
159 GlobalAlias *GA = cast<GlobalAlias>(VMap[&*I]);
161 GA->setAliasee(MapValue(C, VMap));
SplitModule.cpp 237 for (GlobalAlias &GA : M->aliases())
238 externalize(&GA);
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
CloneModule.cpp 74 GlobalAlias *GA = new GlobalAlias(I->getType(), I->getLinkage(),
76 GA->copyAttributesFrom(I);
77 VMap[I] = GA;
111 GlobalAlias *GA = cast<GlobalAlias>(VMap[I]);
113 GA->setAliasee(MapValue(C, VMap));
  /external/clang/test/Layout/
ms-x86-vtordisp.cpp 341 struct GA {
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 (virtual base
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
Loads.cpp 70 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
71 if (GA->mayBeOverridden())
73 V = GA->getAliasee();
  /external/llvm/lib/IR/
Globals.cpp 59 if (auto *GA = dyn_cast<GlobalAlias>(this)) {
61 if (const GlobalObject *GO = GA->getBaseObject())
132 if (auto *GA = dyn_cast<GlobalAlias>(this)) {
134 if (const GlobalObject *GO = GA->getBaseObject())
142 if (auto *GA = dyn_cast<GlobalAlias>(this)) {
144 if (const GlobalObject *GO = GA->getBaseObject())
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.h 142 SDValue LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
144 SDValue LowerToTLSInitialExecModel(GlobalAddressSDNode *GA,
146 SDValue LowerToTLSLocalExecModel(GlobalAddressSDNode *GA,
149 GlobalAddressSDNode *GA, SDValue *InFlag, EVT PtrVT,
236 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
  /external/llvm/lib/LTO/
UpdateCompilerUsed.cpp 40 for (const GlobalAlias &GA : TheModule.aliases())
41 findLibCallsAndAsm(GA);
  /external/llvm/lib/Linker/
LinkModules.cpp 150 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) {
151 GVal = GA->getBaseObject();
540 for (GlobalAlias &GA : SrcM->aliases())
541 if (GA.hasLinkOnceLinkage())
542 if (const Comdat *SC = GA.getComdat())
543 LazyComdatMembers[SC].push_back(&GA);
555 for (GlobalAlias &GA : SrcM->aliases())
556 if (linkIfNeeded(GA))
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinISelLowering.h 51 virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
  /external/swiftshader/third_party/LLVM/lib/Target/Sparc/
SparcISelLowering.h 69 virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Globals.cpp 252 while (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV)) {
253 if (stopOnWeak && GA->mayBeOverridden())
256 GV = GA->getAliasedGlobal();
Verifier.cpp 248 void visitGlobalAlias(GlobalAlias &GA);
453 void Verifier::visitGlobalAlias(GlobalAlias &GA) {
454 Assert1(!GA.getName().empty(),
455 "Alias name cannot be empty!", &GA);
456 Assert1(GA.hasExternalLinkage() || GA.hasLocalLinkage() ||
457 GA.hasWeakLinkage(),
458 "Alias should have external or external weak linkage!", &GA);
459 Assert1(GA.getAliasee(),
460 "Aliasee cannot be NULL!", &GA);
    [all...]
  /device/google/contexthub/firmware/os/drivers/ams_tmd2772/
ams_tmd2772.c 277 float GA;
281 GA = 0.274f;
284 GA = 0.592f;
287 GA = 1.97f;
290 float lux1 = GA * 207 * (als0 - (1.799 * als1)) * cpl;
291 float lux2 = GA * 207 * ((0.188f * als0) - (0.303 * als1)) * cpl;
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.h 49 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaISelLowering.h 105 virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 103 FE, CO, NI, CU, ZN, GA, GE, AS, SE, BR, KR, RB, SR, Y, ZR, NB, MO, TC, RU, RH, PD, AG, CD,
  /external/skia/src/core/
SkScalerContext.cpp 673 // GA is the matrix A with rotation removed.
674 SkMatrix GA;
677 // QR by Givens rotations. G is Q^T and GA is R. G is rotational (no reflections).
682 // G is the Givens Matrix for A (rotational matrix where GA[0][1] == 0).
686 GA = G;
687 GA.preConcat(A);
697 GA = A;
707 if (SkScalarAbs(GA.get(SkMatrix::kMScaleX)) <= SK_ScalarNearlyZero ||
708 SkScalarAbs(GA.get(SkMatrix::kMScaleY)) <= SK_ScalarNearlyZero)
722 // At this point, given GA, create s
    [all...]
  /external/skqp/src/core/
SkScalerContext.cpp 679 // GA is the matrix A with rotation removed.
680 SkMatrix GA;
683 // QR by Givens rotations. G is Q^T and GA is R. G is rotational (no reflections).
688 // G is the Givens Matrix for A (rotational matrix where GA[0][1] == 0).
692 GA = G;
693 GA.preConcat(A);
703 GA = A;
713 if (SkScalarAbs(GA.get(SkMatrix::kMScaleX)) <= SK_ScalarNearlyZero ||
714 SkScalarAbs(GA.get(SkMatrix::kMScaleY)) <= SK_ScalarNearlyZero)
728 // At this point, given GA, create s
    [all...]

Completed in 712 milliseconds

1 2 3 4 5 6 7 8 910