Home
last modified time | relevance | path

Searched refs:load_global (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/PTX/
DPTXInstrLoadStore.td24 def load_global : PatFrag<(ops node:$ptr), (load node:$ptr), [{
209 [(set RC:$d, (load_global ADDRlocal32:$a))]>;
212 [(set RC:$d, (load_global ADDRlocal64:$a))]>;
259 defm LDg : PTX_LD_ALL<"ld.global", load_global>;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DFLATInstructions.td810 def : FlatLoadSignedPat <GLOBAL_LOAD_USHORT, load_global, i16>;
812 def : FlatLoadSignedPat <GLOBAL_LOAD_DWORD, load_global, i32>;
813 def : FlatLoadSignedPat <GLOBAL_LOAD_DWORDX2, load_global, v2i32>;
814 def : FlatLoadSignedPat <GLOBAL_LOAD_DWORDX4, load_global, v4i32>;
833 defm : FlatSignedLoadPat_Hi16 <GLOBAL_LOAD_SHORT_D16_HI, load_global>;
837 defm : FlatSignedLoadPat_Lo16 <GLOBAL_LOAD_SHORT_D16, load_global>;
DAMDGPUInstructions.td413 def load_global : GlobalLoad <load>;
/external/python/cpython2/Lib/
Dpickle.py1093 def load_global(self): member in Unpickler
1098 dispatch[GLOBAL] = load_global
/external/python/cpython2/Doc/library/
Dpickle.rst658 single: load_global() (pickle protocol)
667 :class:`Unpickler`, overriding the :meth:`load_global` method.
668 :meth:`load_global` should read two lines from the pickle data stream where the
675 choose to accept it), would be to have :meth:`load_global` push onto the
/external/python/cpython3/Lib/
Dpickle.py1370 def load_global(self): member in _Unpickler
1375 dispatch[GLOBAL[0]] = load_global
/external/python/cpython2/Modules/
DcPickle.c4028 load_global(Unpicklerobject *self) in load_global() function
4876 if (load_global(self) < 0) in load()
/external/python/cpython3/Modules/
D_pickle.c5541 load_global(UnpicklerObject *self) in load_global() function
6459 OP(GLOBAL, load_global) in load()