Searched defs:ST (Results 1 - 25 of 193) sorted by last modified time

12345678

/external/v8/src/arm/
H A Dconstants-arm.h233 ST = 0xe, enumerator in enum:v8::internal::BarrierOption
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DMachO.h1419 static inline int CPU_SUBTYPE_INTEL_FAMILY(CPUSubTypeX86 ST) { argument
1420 return ((int)ST) & 0x0f;
1422 static inline int CPU_SUBTYPE_INTEL_MODEL(CPUSubTypeX86 ST) { argument
1423 return ((int)ST) >> 4;
H A DYAMLParser.h455 SequenceType ST)
456 : Node(NK_Sequence, D, Anchor, Tag), SeqType(ST), IsAtBeginning(true),
454 SequenceNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag, SequenceType ST) argument
/external/swiftshader/third_party/subzero/src/
H A DIceELFObjectWriter.cpp345 void ELFObjectWriter::writeDataOfType(SectionType ST, argument
361 switch (ST) {
416 assert(ST == BSS || ST == ROData);
417 if (ST == ROData)
422 assert(ST != BSS);
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Ddata.c28 // ST - pointer to the EFI system table
31 EFI_SYSTEM_TABLE *ST; variable
/external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp298 StructType *ST = cast<StructType>(T); local
300 TypeVals.push_back(ST->isPacked());
302 for (StructType::element_iterator I = ST->element_begin(),
303 E = ST->element_end(); I != E; ++I)
306 if (ST->isLiteral()) {
310 if (ST->isOpaque()) {
318 if (!ST->getName().empty())
319 WriteStringRecord(bitc::TYPE_CODE_STRUCT_NAME, ST->getName(),
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DPostRASchedulerList.cpp223 const TargetSubtargetInfo &ST = Fn.getTarget().getSubtarget<TargetSubtargetInfo>(); local
224 if (!ST.enablePostRAScheduler(OptLevel, AntiDepMode, CriticalPathRCs))
H A DScheduleDAGInstrs.cpp210 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>(); local
211 unsigned SpecialAddressLatency = ST.getSpecialAddressLatency();
329 ST.adjustSchedDependency(SU, UseSU, const_cast<SDep &>(dep));
342 ST.adjustSchedDependency(SU, UseSU, const_cast<SDep &>(dep));
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5884 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
5885 if (ST->isIndexed())
5887 VT = ST->getMemoryVT();
5891 Ptr = ST->getBasePtr();
6016 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
6017 if (ST->isIndexed())
6019 VT = ST->getMemoryVT();
6023 Ptr = ST->getBasePtr();
6393 StoreSDNode *ST = cast<StoreSDNode>(N); local
6394 if (ST
6516 StoreSDNode *ST = cast<StoreSDNode>(N); local
6569 StoreSDNode *ST = cast<StoreSDNode>(N); local
[all...]
H A DLegalizeDAG.cpp91 SDValue OptimizeFloatStore(StoreSDNode *ST);
384 SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG, argument
386 SDValue Chain = ST->getChain();
387 SDValue Ptr = ST->getBasePtr();
388 SDValue Val = ST->getValue();
390 int Alignment = ST->getAlignment();
391 DebugLoc dl = ST->getDebugLoc();
392 if (ST->getMemoryVT().isFloatingPoint() ||
393 ST->getMemoryVT().isVector()) {
400 return DAG.getStore(Chain, dl, Result, Ptr, ST
706 OptimizeFloatStore(StoreSDNode* ST) argument
1488 StoreSDNode *ST = cast<StoreSDNode>(Node); local
[all...]
H A DLegalizeFloatTypes.cpp794 StoreSDNode *ST = cast<StoreSDNode>(N); local
795 SDValue Val = ST->getValue();
798 if (ST->isTruncatingStore())
800 Val = BitConvertToInteger(DAG.getNode(ISD::FP_ROUND, dl, ST->getMemoryVT(),
805 return DAG.getStore(ST->getChain(), dl, Val, ST->getBasePtr(),
806 ST->getPointerInfo(),
807 ST->isVolatile(), ST->isNonTemporal(),
808 ST
1445 StoreSDNode *ST = cast<StoreSDNode>(N); local
[all...]
H A DLegalizeVectorTypes.cpp2153 StoreSDNode *ST = cast<StoreSDNode>(N); local
2156 if (ST->isTruncatingStore())
2157 GenWidenVectorTruncStores(StChain, ST);
2159 GenWidenVectorStores(StChain, ST);
2164 return DAG.getNode(ISD::TokenFactor, ST->getDebugLoc(),
2445 StoreSDNode *ST) {
2449 SDValue Chain = ST->getChain();
2450 SDValue BasePtr = ST->getBasePtr();
2451 unsigned Align = ST->getAlignment();
2452 bool isVolatile = ST
2444 GenWidenVectorStores(SmallVector<SDValue, 16>& StChain, StoreSDNode *ST) argument
2513 GenWidenVectorTruncStores(SmallVector<SDValue, 16>& StChain, StoreSDNode *ST) argument
[all...]
H A DScheduleDAGSDNodes.cpp382 const TargetSubtargetInfo &ST = TM.getSubtarget<TargetSubtargetInfo>(); local
452 ST.adjustSchedDependency(OpSU, SU, const_cast<SDep &>(dep));
H A DSelectionDAG.cpp419 const StoreSDNode *ST = cast<StoreSDNode>(N); local
420 ID.AddInteger(ST->getMemoryVT().getRawBits());
421 ID.AddInteger(ST->getRawSubclassData());
4368 StoreSDNode *ST = cast<StoreSDNode>(OrigStore); local
4369 assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
4372 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
4375 ID.AddInteger(ST->getMemoryVT().getRawBits());
4376 ID.AddInteger(ST->getRawSubclassData());
4382 ST
[all...]
/external/swiftshader/third_party/LLVM/lib/Object/
H A DMachOObjectFile.cpp457 SymbolRef::SymbolType ST; local
458 getSymbolType(Symb, ST);
459 if (ST == SymbolRef::ST_External) {
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMISelLowering.cpp2295 DMBOpt = isOnlyStoreBarrier ? ARM_MB::ST : ARM_MB::SY;
3346 const ARMSubtarget *ST) {
3350 if (!ST->hasV6T2Ops())
3358 const ARMSubtarget *ST) {
3366 assert(ST->hasNEON() && "unexpected vector shift");
3393 const ARMSubtarget *ST) {
3410 if (ST->isThumb1Only()) return SDValue();
3908 const ARMSubtarget *ST, DebugLoc dl) {
3914 if (ST->isThumb1Only()) {
3927 const ARMSubtarget *ST) cons
3345 LowerCTTZ(SDNode *N, SelectionDAG &DAG, const ARMSubtarget *ST) argument
3357 LowerShift(SDNode *N, SelectionDAG &DAG, const ARMSubtarget *ST) argument
3392 Expand64BitShift(SDNode *N, SelectionDAG &DAG, const ARMSubtarget *ST) argument
3907 IsSingleInstrConstant(SDValue N, SelectionDAG &DAG, const ARMSubtarget *ST, DebugLoc dl) argument
7703 PerformShiftCombine(SDNode *N, SelectionDAG &DAG, const ARMSubtarget *ST) argument
7738 PerformExtendCombine(SDNode *N, SelectionDAG &DAG, const ARMSubtarget *ST) argument
7778 PerformSELECT_CCCombine(SDNode *N, SelectionDAG &DAG, const ARMSubtarget *ST) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
H A DARMBaseInfo.h124 ST = 14, enumerator in enum:llvm::ARM_MB::MemBOpt
137 case ST: return "st";
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
H A DBlackfinInstrInfo.cpp29 BlackfinInstrInfo::BlackfinInstrInfo(BlackfinSubtarget &ST) argument
31 RI(ST, *this),
32 Subtarget(ST) {}
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
H A DCBackend.cpp168 std::string getStructName(StructType *ST);
365 std::string CWriter::getStructName(StructType *ST) { argument
366 if (!ST->isLiteral() && !ST->getName().empty())
367 return CBEMangle("l_"+ST->getName().str());
369 return "l_unnamed_" + utostr(UnnamedStructIDs[ST]);
1079 StructType *ST = cast<StructType>(CPV->getType()); local
1081 if (ST->getNumElements()) {
1083 printConstant(Constant::getNullValue(ST->getElementType(0)), Static);
1084 for (unsigned i = 1, e = ST
2053 StructType *ST = StructTypes[i]; local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
H A DSPUISelLowering.cpp549 LowerLOAD(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { argument
757 LowerSTORE(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { argument
997 LowerConstantPool(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { argument
1008 if (!ST->usingLargeMem()) {
1030 LowerJumpTable(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { argument
1040 if (!ST->usingLargeMem()) {
1055 LowerGlobalAddress(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { argument
1067 if (!ST->usingLargeMem()) {
1269 const SPUSubtarget *ST = SPUTM.getSubtargetImpl(); local
1372 if (!ST
2902 const SPUSubtarget *ST = SPUTM.getSubtargetImpl(); local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/CppBackend/
H A DCPPBackend.cpp535 StructType* ST = cast<StructType>(Ty); local
536 if (!ST->isLiteral()) {
538 printEscapedString(ST->getName());
545 printEscapedString(ST->getName());
556 StructType::element_iterator EI = ST->element_begin();
557 StructType::element_iterator EE = ST->element_end();
567 if (ST->isLiteral()) {
577 << (ST->isPacked() ? "true" : "false") << ");";
579 if (!ST->isLiteral()) {
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeRegisterInfo.cpp45 MBlazeRegisterInfo(const MBlazeSubtarget &ST, const TargetInstrInfo &tii) argument
46 : MBlazeGenRegisterInfo(MBlaze::R15), Subtarget(ST), TII(tii) {}
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
H A DMipsRegisterInfo.cpp44 MipsRegisterInfo::MipsRegisterInfo(const MipsSubtarget &ST, argument
46 : MipsGenRegisterInfo(Mips::RA), Subtarget(ST), TII(tii) {}
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXAsmPrinter.cpp139 const PTXSubtarget& ST = TM.getSubtarget<PTXSubtarget>(); local
142 OutStreamer.EmitRawText(Twine("\t.version " + ST.getPTXVersionString()));
143 OutStreamer.EmitRawText(Twine("\t.target " + ST.getTargetString() +
144 (ST.supportsDouble() ? ""
148 if (ST.supportsPTX23()) {
149 std::string addrSize = ST.is64Bit() ? "64" : "32";
409 const PTXSubtarget& ST = TM.getSubtarget<PTXSubtarget>(); local
416 if (ST.useParamSpaceForDeviceArgs()) {
453 if (isKernel || ST.useParamSpaceForDeviceArgs()) {
473 if (ST
[all...]
H A DPTXFPRoundingModePass.cpp84 const PTXSubtarget& ST = TargetMachine.getSubtarget<PTXSubtarget>(); local
106 unsigned FDivRndMode = ST.fdivNeedsRoundingMode() ? RndNearestEven : RndNone;
112 unsigned FMADRndMode = ST.fmadNeedsRoundingMode() ? RndNearestEven : RndNone;

Completed in 566 milliseconds

12345678