Home
last modified time | relevance | path

Searched refs:StSize (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp106 void add(size_t StNameOffset, uint64_t StSize, uint8_t StBind, uint8_t StType, in add() argument
110 S.st_size = StSize; in add()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp11359 static unsigned getStOpcode(unsigned StSize, bool IsThumb1, bool IsThumb2) { in getStOpcode() argument
11360 if (StSize >= 8) in getStOpcode()
11361 return StSize == 16 ? ARM::VST1q32wb_fixed in getStOpcode()
11362 : StSize == 8 ? ARM::VST1d32wb_fixed : 0; in getStOpcode()
11364 return StSize == 4 ? ARM::tSTRi in getStOpcode()
11365 : StSize == 2 ? ARM::tSTRHi in getStOpcode()
11366 : StSize == 1 ? ARM::tSTRBi : 0; in getStOpcode()
11368 return StSize == 4 ? ARM::t2STR_POST in getStOpcode()
11369 : StSize == 2 ? ARM::t2STRH_POST in getStOpcode()
11370 : StSize == 1 ? ARM::t2STRB_POST : 0; in getStOpcode()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp536 TypeSize StSize = StVT.getStoreSizeInBits(); in LegalizeStoreOps() local
539 if (StWidth != StSize) { in LegalizeStoreOps()
543 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), StSize.getFixedValue()); in LegalizeStoreOps()