Home
last modified time | relevance | path

Searched refs:gv (Results 1 – 25 of 160) sorted by relevance

1234567

/external/llvm/lib/Target/NVPTX/
DNVPTXUtilities.cpp69 static void cacheAnnotationFromMD(const Module *m, const GlobalValue *gv) { in cacheAnnotationFromMD() argument
83 if (entity != gv) in cacheAnnotationFromMD()
94 (*annotationCache)[m][gv] = std::move(tmp); in cacheAnnotationFromMD()
97 tmp1[gv] = std::move(tmp); in cacheAnnotationFromMD()
102 bool llvm::findOneNVVMAnnotation(const GlobalValue *gv, std::string prop, in findOneNVVMAnnotation() argument
105 const Module *m = gv->getParent(); in findOneNVVMAnnotation()
107 cacheAnnotationFromMD(m, gv); in findOneNVVMAnnotation()
108 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end()) in findOneNVVMAnnotation()
109 cacheAnnotationFromMD(m, gv); in findOneNVVMAnnotation()
110 if ((*annotationCache)[m][gv].find(prop) == (*annotationCache)[m][gv].end()) in findOneNVVMAnnotation()
[all …]
/external/icu/icu4c/source/data/lang/
Dgv.txt6 // * Source File: <path>/common/main/gv.xml
9 gv{
11 gv{"Gaelg"}
Dyi.txt69 gv{"מאַנקס"}
/external/llvm/lib/Target/SystemZ/
DSystemZConstantPoolValue.cpp19 SystemZConstantPoolValue(const GlobalValue *gv, in SystemZConstantPoolValue() argument
21 : MachineConstantPoolValue(gv->getType()), GV(gv), Modifier(modifier) {} in SystemZConstantPoolValue()
/external/icu/icu4c/source/data/curr/
Dgv.txt6 // * Source File: <path>/common/main/gv.xml
9 gv{
/external/icu/icu4c/source/data/unit/
Dgv.txt6 // * Source File: <path>/common/main/gv.xml
9 gv{
/external/icu/icu4c/source/data/zone/
Dgv.txt6 // * Source File: <path>/common/main/gv.xml
9 gv{
/external/icu/icu4c/source/data/region/
Dgv.txt6 // * Source File: <path>/common/main/gv.xml
9 gv{
/external/nist-sip/java/gov/nist/core/
DNameValue.java165 GenericObject gv = (GenericObject) value; in encode() local
167 gv.encode(buffer); in encode()
193 GenericObject gv = (GenericObject) value; in encode() local
194 gv.encode(buffer); in encode()
/external/eigen/bench/
Dspmv.cpp194 std::vector<Scalar> gv(cols), gres(rows); in main() local
195 Map<Matrix<Scalar,Dynamic,1> >(&gv[0], cols) = dv; in main()
198 SPMV_BENCH(gmm::mult(gm, gv, gres)); in main()
201 SPMV_BENCH(gmm::mult(gmm::transposed(gm), gv, gres)); in main()
/external/llvm/test/CodeGen/R600/
Dlarge-constant-initializer.ll5 @gv = external unnamed_addr addrspace(2) constant [239 x i32], align 4
8 …%val = load i32, i32 addrspace(2)* getelementptr ([239 x i32], [239 x i32] addrspace(2)* @gv, i64 …
/external/llvm/lib/LTO/
DLTOModule.cpp396 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) { in addDefinedDataSymbol() local
397 addObjCClass(gv); in addDefinedDataSymbol()
403 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) { in addDefinedDataSymbol() local
404 addObjCCategory(gv); in addDefinedDataSymbol()
410 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) { in addDefinedDataSymbol() local
411 addObjCClassRef(gv); in addDefinedDataSymbol()
443 const GlobalVariable *gv = dyn_cast<GlobalVariable>(def); in addDefinedSymbol() local
444 if (gv && gv->isConstant()) in addDefinedSymbol()
/external/llvm/examples/HowToUseJIT/
DHowToUseJIT.cpp126 GenericValue gv = EE->runFunction(FooF, noargs); in main() local
129 outs() << "Result: " << gv.IntVal << "\n"; in main()
/external/icu/icu4c/source/data/locales/
Dgv.txt6 // * Source File: <path>/common/main/gv.xml
9 gv{
/external/llvm/bindings/ocaml/executionengine/
Dllvm_executionengine.mli73 (** [add_global_mapping gv ptr ee] tells the execution engine [ee] that
74 the global [gv] is at the specified location [ptr], which must outlive
75 [gv] and [ee].
76 All uses of [gv] in the compiled code will refer to [ptr]. *)
/external/llvm/test/Assembler/
Dgv-invalid-type.ll3 @gv = global metadata undef
/external/llvm/test/Transforms/CorrelatedValuePropagation/
Dbasic.ll44 @gv = internal constant i8 7
48 %cond = icmp eq i8* %a, @gv
55 ; CHECK: %should_be_const = load i8, i8* @gv
/external/llvm/examples/ParallelJIT/
DParallelJIT.cpp236 GenericValue gv = p->EE->runFunction(p->F, Args); in callFunc() local
238 return (void*)(intptr_t)gv.IntVal.getZExtValue(); in callFunc()
/external/lldb/source/Expression/
DIRForTarget.cpp1032 GlobalVariable *gv = dyn_cast<GlobalVariable>(vi->second); in RewriteObjCConstStrings() local
1034 if (!gv) in RewriteObjCConstStrings()
1045 gv->eraseFromParent(); in RewriteObjCConstStrings()
1853 GlobalVariable *gv = gi; in ReplaceStrings() local
1855 if (!gv->hasInitializer()) in ReplaceStrings()
1858 Constant *gc = gv->getInitializer(); in ReplaceStrings()
1896 offsets[gv] = m_data_allocator.GetStream().GetSize(); in ReplaceStrings()
1907 GlobalVariable *gv = oi->first; in ReplaceStrings() local
1913 …log->Printf("Replacing GV %s with %s", PrintValue(gv).c_str(), PrintValue(new_initializer).c_str()… in ReplaceStrings()
1915 for (GlobalVariable::use_iterator ui = gv->use_begin(), ue = gv->use_end(); in ReplaceStrings()
[all …]
/external/robolectric/
D.pairs13 gv: Gregg Van Hove; gvanhove
/external/llvm/bindings/ocaml/llvm/
Dllvm.mli1323 (** [delete_global gv] destroys the global variable [gv].
1333 (** [global_succ gv] returns the global variable list position succeeding
1334 [Before gv].
1352 (** [global_pred gv] returns the global variable list position preceding
1353 [After gv].
1365 (** [is_global_constant gv] returns [true] if the global variabile [gv] is a
1370 (** [set_global_constant c gv] sets the global variable [gv] to be a constant if
1375 (** [global_initializer gv] returns the initializer for the global variable
1376 [gv]. See the method [llvm::GlobalVariable::getInitializer]. *)
1379 (** [set_initializer c gv] sets the initializer for the global variable
[all …]
/external/llvm/test/Linker/
D2011-08-04-Metadata2.ll20 !llvm.dbg.gv = !{!5}
/external/llvm/test/Transforms/StripSymbols/
D2010-06-30-StripDebug.ll19 !llvm.dbg.gv = !{!8}
/external/llvm/test/CodeGen/X86/
Dcompact-unwind.ll20 @gv = external global i32
42 %tmp20 = load i32, i32* @gv, align 4
/external/llvm/examples/BrainF/
DBrainFDriver.cpp147 GenericValue gv = ee->runFunction(brainf_func, args); in main() local

1234567