Searched defs:gv (Results 1 - 15 of 15) sorted by relevance

/external/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp125 GenericValue gv = EE->runFunction(FooF, noargs); local
128 outs() << "Result: " << gv.IntVal << "\n";
/external/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp19 SystemZConstantPoolValue(const GlobalValue *gv, argument
21 : MachineConstantPoolValue(gv->getType()), GV(gv), Modifier(modifier) {}
/external/llvm/examples/BrainF/
H A DBrainFDriver.cpp147 GenericValue gv = ee->runFunction(brainf_func, args); local
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp236 GenericValue gv = p->EE->runFunction(p->F, Args); local
238 return (void*)(intptr_t)gv.IntVal.getZExtValue();
/external/llvm/lib/LTO/
H A DLTOModule.cpp314 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
315 addObjCClass(gv);
321 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
322 addObjCCategory(gv);
328 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) {
329 addObjCClassRef(gv);
385 const GlobalVariable *gv = dyn_cast<GlobalVariable>(def); local
386 if (gv && gv->isConstant())
/external/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp69 static void cacheAnnotationFromMD(const Module *m, const GlobalValue *gv) { argument
82 if (entity != gv)
89 if (tmp.empty()) // no annotations for this gv
93 (*annotationCache)[m][gv] = tmp;
96 tmp1[gv] = tmp;
101 bool llvm::findOneNVVMAnnotation(const GlobalValue *gv, std::string prop, argument
104 const Module *m = gv->getParent();
106 cacheAnnotationFromMD(m, gv);
107 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end())
108 cacheAnnotationFromMD(m, gv);
115 findAllNVVMAnnotation(const GlobalValue *gv, std::string prop, std::vector<unsigned> &retval) argument
[all...]
H A DNVPTXAsmPrinter.cpp1000 if (md->hasName() && ((md->getName().str() == "llvm.dbg.gv") ||
1018 static bool canDemoteGlobalVar(const GlobalVariable *gv, Function const *&f) { argument
1019 if (gv->hasInternalLinkage() == false)
1021 const PointerType *Pty = gv->getType();
1027 bool flag = usedInOneFunc(gv, oneFunc);
/external/clang/test/Parser/
H A Daltivec.c105 gccvector unsigned int gv = v; local
H A Dcxx-altivec.cpp95 gccvector unsigned int gv = v; local
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILPeepholeOptimizer.cpp1132 GlobalVariable *gv = dyn_cast<GlobalVariable>(lInst->getPointerOperand()); local
1135 if (!gv) {
1141 if (!gv->hasInitializer()
1142 || !gv->getInitializer()->getType()->isIntegerTy(32)) {
1149 Constant *samplerVal = gv->getInitializer();
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILPeepholeOptimizer.cpp1132 GlobalVariable *gv = dyn_cast<GlobalVariable>(lInst->getPointerOperand()); local
1135 if (!gv) {
1141 if (!gv->hasInitializer()
1142 || !gv->getInitializer()->getType()->isIntegerTy(32)) {
1149 Constant *samplerVal = gv->getInitializer();
/external/lldb/source/Expression/
H A DIRForTarget.cpp1032 GlobalVariable *gv = dyn_cast<GlobalVariable>(vi->second); local
1034 if (!gv)
1045 gv->eraseFromParent();
1853 GlobalVariable *gv = gi; local
1855 if (!gv->hasInitializer())
1858 Constant *gc = gv->getInitializer();
1896 offsets[gv] = m_data_allocator.GetStream().GetSize();
1907 GlobalVariable *gv = oi->first; local
1913 log->Printf("Replacing GV %s with %s", PrintValue(gv).c_str(), PrintValue(new_initializer).c_str());
1915 for (GlobalVariable::use_iterator ui = gv
[all...]
/external/llvm/include/llvm/IR/
H A DIRBuilder.h1084 Value *gv = CreateGlobalString(Str, Name); local
1087 return CreateInBoundsGEP(gv, Args, Name);
/external/clang/lib/CodeGen/
H A DCodeGenModule.cpp1086 auto *gv = new llvm::GlobalVariable(getModule(), Array->getType(), false, local
1089 gv->setSection(AnnotationSection);
1099 auto *gv = local
1102 gv->setSection(AnnotationSection);
1103 gv->setUnnamedAddr(true);
1104 AStr = gv;
1105 return gv;
/external/valgrind/main/perf/
H A Dtinycc.c5416 int gv(int rc);
5866 r = gv(RC_INT);
5899 gv(RC_FLOAT); /* only one float register */
5917 r = gv(RC_INT);
6146 v = gv(RC_INT);
6170 r = gv(RC_INT);
6235 r = gv(RC_INT);
6299 gv(RC_FLOAT);
6303 gv(RC_FLOAT);
6309 gv(RC_FLOA
10426 int gv(int rc) function
[all...]

Completed in 1971 milliseconds