Searched refs:ST (Results 51 - 75 of 153) sorted by relevance

1234567

/external/openssl/crypto/sha/asm/
H A Dsha512-mips.pl82 $ST="sd"; # store to memory
96 $ST="sw"; # store to memory
187 $ST @X[0],`($i%16)*$SZ`($sp) # offload to ring buffer
342 $ST $A,0*$SZ($ctx)
344 $ST $B,1*$SZ($ctx)
346 $ST $C,2*$SZ($ctx)
348 $ST $D,3*$SZ($ctx)
349 $ST $E,4*$SZ($ctx)
350 $ST $F,5*$SZ($ctx)
351 $ST
[all...]
H A Dsha512-ppc.pl75 $ST="std";
87 $ST="stw";
362 $ST $A,`0*$SZ`($ctx)
364 $ST $B,`1*$SZ`($ctx)
366 $ST $C,`2*$SZ`($ctx)
368 $ST $D,`3*$SZ`($ctx)
370 $ST $E,`4*$SZ`($ctx)
372 $ST $F,`5*$SZ`($ctx)
373 $ST $G,`6*$SZ`($ctx)
375 $ST
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DCPPTarget.java31 import org.stringtemplate.v4.ST;
89 ST headerFileST,
H A DCSharp3Target.java38 import org.stringtemplate.v4.ST;
82 protected void genRecognizerFile(Tool tool, CodeGenerator generator, Grammar grammar, ST outputFileST) throws IOException
H A DTarget.java33 import org.stringtemplate.v4.ST;
89 ST outputFileST)
100 ST headerFileST,
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DST.stg38 using Antlr3.ST;
39 using Antlr3.ST.Language;
/external/llvm/lib/CodeGen/
H A DStackProtector.cpp124 const StructType *ST = dyn_cast<StructType>(Ty); local
125 if (!ST) return false;
127 for (StructType::element_iterator I = ST->element_begin(),
128 E = ST->element_end(); I != E; ++I)
/external/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.h41 explicit SparcInstrInfo(SparcSubtarget &ST);
/external/llvm/test/MC/X86/
H A Dintel-syntax.s57 fld ST(0)
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp84 SDNode *SelectBaseOffsetStore(StoreSDNode *ST, DebugLoc dl);
85 SDNode *SelectIndexedStore(StoreSDNode *ST, DebugLoc dl);
596 SDNode *HexagonDAGToDAGISel::SelectIndexedStore(StoreSDNode *ST, DebugLoc dl) { argument
597 SDValue Chain = ST->getChain();
598 SDValue Base = ST->getBasePtr();
599 SDValue Offset = ST->getOffset();
600 SDValue Value = ST->getValue();
604 EVT StoredVT = ST->getMemoryVT();
624 MemOp[0] = ST->getMemOperand();
627 ReplaceUses(ST, Resul
665 SelectBaseOffsetStore(StoreSDNode *ST, DebugLoc dl) argument
721 StoreSDNode *ST = cast<StoreSDNode>(N); local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp71 SDValue OptimizeFloatStore(StoreSDNode *ST);
297 static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG, argument
300 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
302 SDValue Chain = ST->getChain();
303 SDValue Ptr = ST->getBasePtr();
304 SDValue Val = ST->getValue();
306 int Alignment = ST->getAlignment();
307 DebugLoc dl = ST->getDebugLoc();
308 if (ST->getMemoryVT().isFloatingPoint() ||
309 ST
638 OptimizeFloatStore(StoreSDNode* ST) argument
696 StoreSDNode *ST = cast<StoreSDNode>(Node); local
[all...]
H A DLegalizeVectorOps.cpp143 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode()); local
144 EVT StVT = ST->getMemoryVT();
145 EVT ValVT = ST->getValue().getValueType();
146 if (StVT.isVector() && ST->isTruncatingStore())
393 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode()); local
394 SDValue Chain = ST->getChain();
395 SDValue BasePTR = ST->getBasePtr();
396 SDValue Value = ST->getValue();
397 EVT StVT = ST->getMemoryVT();
399 unsigned Alignment = ST
[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...]
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp62 SROA(int T, bool hasDT, char &ID, int ST, int AT, int SLT) argument
68 if (ST == -1)
71 StructMemberThreshold = ST;
191 SROA_DT(int T = -1, int ST = -1, int AT = -1, int SLT = -1) :
192 SROA(T, true, ID, ST, AT, SLT) {
208 SROA_SSAUp(int T = -1, int ST = -1, int AT = -1, int SLT = -1) :
209 SROA(T, false, ID, ST, AT, SLT) {
804 if (StructType *ST = dyn_cast<StructType>(ToType)) {
807 const StructLayout &Layout = *TD.getStructLayout(ST);
808 Value *Res = UndefValue::get(ST);
[all...]
/external/llvm/lib/VMCore/
H A DType.cpp434 StructType *ST; local
438 ST = new (Context.pImpl->TypeAllocator) StructType(Context);
439 ST->setSubclassData(SCDB_IsLiteral); // Literal struct.
440 ST->setBody(ETypes, isPacked);
441 Context.pImpl->AnonStructTypes[ST] = true;
443 ST = I->first;
446 return ST;
518 StructType *ST = new (Context.pImpl->TypeAllocator) StructType(Context); local
520 ST->setName(Name);
521 return ST;
543 StructType *ST = create(Context, Name); local
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestLexer.java32 import org.stringtemplate.v4.ST;
247 ST codeST = generator.getRecognizerST();
/external/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/llvm/lib/Target/Mips/
H A DMipsRegisterInfo.cpp45 MipsRegisterInfo::MipsRegisterInfo(const MipsSubtarget &ST) argument
46 : MipsGenRegisterInfo(Mips::RA), Subtarget(ST) {}
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp504 StoreSDNode *ST = cast<StoreSDNode>(Op); local
505 assert(!ST->isTruncatingStore() && "Unexpected store type");
506 assert(ST->getMemoryVT() == MVT::i32 && "Unexpected store EVT");
507 if (allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
511 getABITypeAlignment(ST->getMemoryVT().getTypeForEVT(*DAG.getContext()));
513 if (ST->getAlignment() >= ABIAlignment) {
516 SDValue Chain = ST->getChain();
517 SDValue BasePtr = ST->getBasePtr();
518 SDValue Value = ST->getValue();
521 if (ST
1490 StoreSDNode *ST = cast<StoreSDNode>(N); local
[all...]
/external/qemu/
H A Di386-dis.c4107 #define ST { OP_ST, 0 } macro
4123 { "fadd", { ST, STi } },
4124 { "fmul", { ST, STi } },
4127 { "fsub", { ST, STi } },
4128 { "fsubr", { ST, STi } },
4129 { "fdiv", { ST, STi } },
4130 { "fdivr", { ST, STi } },
4145 { "fcmovb", { ST, STi } },
4146 { "fcmove", { ST, STi } },
4147 { "fcmovbe",{ ST, ST
[all...]
/external/openssl/crypto/
H A Dpariscid.pl10 $ST ="std";
14 $ST ="stw";
116 $ST %r0,0($inp)
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.h151 void EnumerateValueSymbolTable(const ValueSymbolTable &ST);
/external/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp1406 const X86Subtarget *ST = &MF.getTarget().getSubtarget<X86Subtarget>();
1414 if (!ST->isTargetLinux() && !ST->isTargetDarwin() &&
1415 !ST->isTargetWin32() && !ST->isTargetFreeBSD())
1453 if (ST->isTargetLinux()) {
1456 } else if (ST->isTargetDarwin()) {
1459 } else if (ST->isTargetFreeBSD()) {
1475 if (ST->isTargetLinux()) {
1478 } else if (ST
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h72 /// \param ST the original store, that is the basis for the new store.
74 virtual StoreRef killBinding(Store ST, Loc L) = 0;
78 /// \param ST The original store whose bindings are the basis for the new
86 virtual StoreRef bindCompoundLiteral(Store ST,
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMBaseInfo.h137 ST = 14, enumerator in enum:llvm::ARM_MB::MemBOpt
145 case ST: return "st";

Completed in 568 milliseconds

1234567