Searched refs:GV (Results 176 - 200 of 221) sorted by relevance

123456789

/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp64 const GlobalValue *GV; member in struct:__anon26191::X86ISelAddressMode
74 Segment(), GV(nullptr), CP(nullptr), BlockAddr(nullptr), ES(nullptr),
79 return GV != nullptr || CP != nullptr || ES != nullptr ||
119 << "GV ";
120 if (GV)
121 GV->dump();
248 if (AM.GV)
249 Disp = CurDAG->getTargetGlobalAddress(AM.GV, SDLoc(),
653 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
662 AM.GV
[all...]
H A DX86CodeEmitter.cpp88 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
271 void Emitter<CodeEmitter>::emitGlobalAddress(const GlobalValue *GV, argument
283 const_cast<GlobalValue *>(GV),
286 const_cast<GlobalValue *>(GV), RelocCST, false);
H A DX86ISelLowering.h886 SDValue LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
H A DX86MCInstLower.cpp102 const GlobalValue *GV = MO.getGlobal(); local
103 AsmPrinter.getNameWithPrefix(Name, GV);
176 default: llvm_unreachable("Unknown target flag on GV operand");
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1653 GlobalVariable *GV = dyn_cast<GlobalVariable>(LI->getPointerOperand());
1654 if (!GV || !GV->isDeclaration())
1656 return GV->getName() == "stderr";
1694 Value *GV = B.CreateGlobalString(FormatStr, "str"); local
1695 Value *NewCI = EmitPutS(GV, B, DL, TLI);
/external/clang/lib/CodeGen/
H A DCGException.cpp270 if (llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Val))
273 if (GV->getName().startswith("OBJC_EHTYPE"))
280 if (llvm::GlobalVariable *GV =
284 if (GV->getName().startswith("OBJC_EHTYPE"))
H A DCGBlocks.cpp2239 auto *GV = cast<llvm::GlobalValue>(C->stripPointerCasts());
2240 if (GV->isDeclaration() && GV->hasExternalLinkage())
2241 GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
H A DCGDebugInfo.h274 void EmitGlobalVariable(llvm::GlobalVariable *GV, const VarDecl *Decl);
/external/llvm/lib/IR/
H A DConstants.cpp314 if (const auto *GV = dyn_cast<GlobalValue>(WorkItem))
315 if (Predicate(GV))
330 auto DLLImportPredicate = [](const GlobalValue *GV) {
331 return GV->isThreadLocal();
337 auto DLLImportPredicate = [](const GlobalValue *GV) {
338 return GV->hasDLLImportStorageClass();
374 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
375 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp32 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
33 return GV->isConstant();
H A DInstCombine.h164 GlobalVariable *GV, CmpInst &ICI,
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpprof92 my @GV = ("gv");
227 --scale=<n> Set GV scaling [default=0]
720 if (!system(ShellEscape(@GV, "--version") . " >$dev_null 2>&1")) {
726 system(ShellEscape(@GV, "--scale=$main::opt_scale", "--noantialias", $fname)
730 print STDERR ShellEscape(@GV, "-scale", $main::opt_scale) . "\n";
731 system(ShellEscape(@GV, "-scale", "$main::opt_scale", $fname) . $bg);
1004 Like GV, but displays profile in your web browser instead of using
/external/jemalloc/bin/
H A Dpprof92 my @GV = ("gv");
227 --scale=<n> Set GV scaling [default=0]
720 if (!system(ShellEscape(@GV, "--version") . " >$dev_null 2>&1")) {
726 system(ShellEscape(@GV, "--scale=$main::opt_scale", "--noantialias", $fname)
730 print STDERR ShellEscape(@GV, "-scale", $main::opt_scale) . "\n";
731 system(ShellEscape(@GV, "-scale", "$main::opt_scale", $fname) . $bg);
1004 Like GV, but displays profile in your web browser instead of using
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h430 SDValue getGlobalAddress(const GlobalValue *GV, SDLoc DL, EVT VT,
433 SDValue getTargetGlobalAddress(const GlobalValue *GV, SDLoc DL, EVT VT, argument
436 return getGlobalAddress(GV, DL, VT, offset, true, TargetFlags);
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp1614 const GlobalValue *GV = G->getGlobal(); local
1618 ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 0);
1644 const GlobalValue *GV = G->getGlobal(); local
1646 bool isExt = GV->isDeclaration() || GV->isWeakForLinker();
1656 DAG.getTargetGlobalAddress(GV, dl, getPointerTy()));
1660 unsigned TargetFlags = GV->hasDLLImportStorageClass()
1663 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), /*Offset=*/0,
1665 if (GV->hasDLLImportStorageClass())
1676 Callee = DAG.getTargetGlobalAddress(GV, d
2363 const GlobalValue *GV = GA->getGlobal(); local
2435 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); local
2478 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); local
2504 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); local
[all...]
/external/lldb/source/Expression/
H A DIRForTarget.cpp1913 log->Printf("Replacing GV %s with %s", PrintValue(gv).c_str(), PrintValue(new_initializer).c_str());
2093 GlobalVariable *GV = dyn_cast<GlobalVariable>(Old); local
2095 if (!GV || !GV->hasName() || !GV->getName().startswith("_ZGV"))
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h542 void createGlobalVariableDIE(DIGlobalVariable GV);
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp399 const GlobalValue* GV = local
402 CurDAG->getTargetGlobalAddress(GV, dl, PointerTy, 0);
782 const GlobalValue* GV = local
785 CurDAG->getTargetGlobalAddress(GV, dl, PointerTy, 0);
H A DHexagonISelLowering.cpp1020 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); local
1023 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
1027 if (TLOF.IsGlobalInSmallSection(GV, getTargetMachine())) {
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp619 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
620 // Note: this doesn't require GV to be "ODR" because it isn't legal for a
622 // others. GV may even be a declaration, not a definition.
623 if (!GV->isConstant()) {
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1797 const GlobalValue *GV = Node->getGlobal(); local
1804 if (Subtarget.isPC32DBLSymbol(GV, RM, CM)) {
1807 Result = DAG.getTargetGlobalAddress(GV, DL, PtrVT, Anchor);
1813 SDValue Full = DAG.getTargetGlobalAddress(GV, DL, PtrVT, Anchor + Offset);
1818 Result = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, SystemZII::MO_GOT);
1836 const GlobalValue *GV = Node->getGlobal(); local
1838 TLSModel::Model model = DAG.getTarget().getTLSModel(GV);
1860 SystemZConstantPoolValue::Create(GV, SystemZCP::NTPOFF);
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp649 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
650 S = SE.getConstant(GV->getType(), 0);
651 return GV;
1395 // fold a GV into an ICmp.
3403 GlobalValue *GV = ExtractSymbol(G, SE); local
3404 if (G->isZero() || !GV)
3407 F.BaseGV = GV;
4057 // Look for a formula with a constant or GV in a register. If the use
4076 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
4079 NewF.BaseGV = GV;
[all...]
H A DGVN.cpp1082 GlobalVariable *GV = dyn_cast<GlobalVariable>(GetUnderlyingObject(Src, &DL));
1083 if (!GV || !GV->isConstant()) return -1;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpprof92 my @GV = ("gv");
227 --scale=<n> Set GV scaling [default=0]
720 if (!system(ShellEscape(@GV, "--version") . " >$dev_null 2>&1")) {
726 system(ShellEscape(@GV, "--scale=$main::opt_scale", "--noantialias", $fname)
730 print STDERR ShellEscape(@GV, "-scale", $main::opt_scale) . "\n";
731 system(ShellEscape(@GV, "-scale", "$main::opt_scale", $fname) . $bg);
1004 Like GV, but displays profile in your web browser instead of using
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp2159 const GlobalValue *GV = GA->getGlobal(); local
2162 if (GV->getAlignment() < 4 &&
2168 ImmOpnd = CurDAG->getTargetGlobalAddress(GV, dl, MVT::i64, 0, Flags);

Completed in 5792 milliseconds

123456789