HomeSort by relevance Sort by last modified time
    Searched refs:GV (Results 126 - 150 of 191) sorted by null

1 2 3 4 56 7 8

  /external/clang/lib/CodeGen/
CGDebugInfo.h 256 void EmitGlobalVariable(llvm::GlobalVariable *GV, const VarDecl *Decl);
259 void EmitGlobalVariable(llvm::GlobalVariable *GV, ObjCInterfaceDecl *Decl);
TargetInfo.cpp 562 void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
    [all...]
CGCXXABI.cpp 219 llvm::GlobalVariable *GV,
CGException.cpp 288 if (llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Val))
291 if (GV->getName().startswith("OBJC_EHTYPE"))
298 if (llvm::GlobalVariable *GV =
302 if (GV->getName().startswith("OBJC_EHTYPE"))
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 129 const MachineInstrBuilder &addGlobalAddress(const GlobalValue *GV,
132 MI->addOperand(*MF, MachineOperand::CreateGA(GV, Offset, TargetFlags));
JITCodeEmitter.h 73 virtual void *allocIndirectGV(const GlobalValue *GV,
SelectionDAG.h 245 /// viewGraph - Pop up a GraphViz/gv window with the DAG rendered using 'dot'.
389 SDValue getGlobalAddress(const GlobalValue *GV, DebugLoc DL, EVT VT,
392 SDValue getTargetGlobalAddress(const GlobalValue *GV, DebugLoc DL, EVT VT,
395 return getGlobalAddress(GV, DL, VT, offset, true, TargetFlags);
    [all...]
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 247 Constant *GV = new GlobalVariable(*F.getParent(), FrameMap->getType(), true,
255 return ConstantExpr::getGetElementPtr(GV, GEPIndices);
  /external/llvm/lib/Analysis/
ValueTracking.cpp 275 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
276 unsigned Align = GV->getAlignment();
278 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) {
    [all...]
  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 207 SizeOffsetType visitGlobalVariable(GlobalVariable &GV);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 188 void exitCalled(GenericValue GV);
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 206 void EmitAlignment(unsigned NumBits, const GlobalValue *GV = 0) const {}
  /external/llvm/lib/Target/X86/
X86Subtarget.h 325 unsigned char ClassifyGlobalReference(const GlobalValue *GV,
X86ISelDAGToDAG.cpp 63 const GlobalValue *GV;
73 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
78 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
116 << "GV ";
117 if (GV)
118 GV->dump();
238 if (AM.GV)
239 Disp = CurDAG->getTargetGlobalAddress(AM.GV, DebugLoc(),
640 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
649 AM.GV = G->getGlobal()
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.h 134 SDValue getGlobalAddressWrapper(SDValue GA, const GlobalValue *GV,
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp     [all...]
MemCpyOptimizer.cpp 822 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(M->getSource()))
823 if (GV->isConstant() && GV->hasDefinitiveInitializer())
824 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) {
    [all...]
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 368 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
501 void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
506 const_cast<GlobalValue *>(GV),
509 const_cast<GlobalValue *>(GV), ACPV,
724 const GlobalValue *GV = cast<ARMConstantPoolConstant>(ACPV)->getGV();
725 if (GV) {
727 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
728 isa<Function>(GV),
729 Subtarget->GVIsIndirectSymbol(GV, RelocM),
    [all...]
ARMExpandPseudoInsts.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 194 /// cmp pred (load (gep GV, ...)), cmpcst
195 /// where GV is a global variable with a constant initializer. Try to simplify
202 FoldCmpLoadFromIndexedGlobal(GetElementPtrInst *GEP, GlobalVariable *GV,
207 Constant *Init = GV->getInitializer();
217 // Require: GEP GV, 0, i {{, constant indices}}
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 738 GlobalVariable *GV = 0;
745 GV = cast<GlobalVariable>(GVal);
751 GV = cast<GlobalVariable>(I->second.first);
756 if (GV == 0) {
757 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
761 if (GV->getType()->getElementType() != Ty)
766 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
770 NumberedVals.push_back(GV);
774 GV->setInitializer(Init);
775 GV->setConstant(IsConstant)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 695 const GlobalVariable *GV = *I;
698 Asm->EmitTTypeReference(GV, TTypeEncoding);
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 235 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
236 if (GV->isConstant()) {
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 97 GlobalVariable *GV = cast<GlobalVariable>(Val);
98 LPI->addClause(GV->getInitializer());
128 GlobalVariable *GV = cast<GlobalVariable>(Val);
129 LPI->addClause(GV->getInitializer());
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]

Completed in 4304 milliseconds

1 2 3 4 56 7 8