/external/llvm/lib/Target/Hexagon/ |
H A D | HexagonInstrInfo.cpp | 57 HexagonInstrInfo::HexagonInstrInfo(HexagonSubtarget &ST) argument 59 RI(ST, *this), Subtarget(ST) {
|
H A D | HexagonISelDAGToDAG.cpp | 101 SDNode *SelectBaseOffsetStore(StoreSDNode *ST, DebugLoc dl); 102 SDNode *SelectIndexedStore(StoreSDNode *ST, DebugLoc dl); 634 SDNode *HexagonDAGToDAGISel::SelectIndexedStore(StoreSDNode *ST, DebugLoc dl) { argument 635 SDValue Chain = ST->getChain(); 636 SDValue Base = ST->getBasePtr(); 637 SDValue Offset = ST->getOffset(); 638 SDValue Value = ST->getValue(); 642 EVT StoredVT = ST->getMemoryVT(); 662 MemOp[0] = ST->getMemOperand(); 665 ReplaceUses(ST, Resul 703 SelectBaseOffsetStore(StoreSDNode *ST, DebugLoc dl) argument 759 StoreSDNode *ST = cast<StoreSDNode>(N); local [all...] |
/external/llvm/lib/Target/R600/ |
H A D | AMDILPeepholeOptimizer.cpp | 126 size_t getTypeSize(StructType * const ST, bool dereferencePtr = false); 192 const StructType *ST = dyn_cast<StructType>(Ty); local 193 for (StructType::element_iterator stb = ST->element_begin(), 194 ste = ST->element_end(); stb != ste; ++stb) { 1152 size_t AMDGPUPeepholeOpt::getTypeSize(StructType * const ST, argument 1155 if (!ST) { 1161 for (eib = ST->element_begin(), eie = ST->element_end(); eib != eie; ++eib) {
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCalls.cpp | 375 StructType *ST = cast<StructType>(II->getType()); local 376 Constant *Struct = ConstantStruct::get(ST, V); 389 StructType *ST = cast<StructType>(II->getType()); local 390 Constant *Struct = ConstantStruct::get(ST, V);
|
/external/smack/src/org/xbill/DNS/ |
H A D | WKSRecord.java | 36 public static final int ST = 5; field in class:WKSRecord.Protocol 162 protocols.add(ST, "st");
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | RegionStore.cpp | 401 /// \param ST The original store whose bindings are the basis for the new 409 StoreRef bindCompoundLiteral(Store ST, 432 /// \param ST the original store, that is the basis for the new store. 434 virtual StoreRef killBinding(Store ST, Loc L); 1768 StoreRef RegionStoreManager::killBinding(Store ST, Loc L) { argument 1771 return StoreRef(getRegionBindings(ST).removeBinding(R) 1776 return StoreRef(ST, *this); 1814 StoreRef RegionStoreManager::bindCompoundLiteral(Store ST, argument 1818 return Bind(ST, loc::MemRegionVal(MRMgr.getCompoundLiteralRegion(CL, LC)), V);
|
/external/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 340 StructType *ST = cast<StructType>(T); local 342 TypeVals.push_back(ST->isPacked()); 344 for (StructType::element_iterator I = ST->element_begin(), 345 E = ST->element_end(); I != E; ++I) 348 if (ST->isLiteral()) { 352 if (ST->isOpaque()) { 360 if (!ST->getName().empty()) 361 WriteStringRecord(bitc::TYPE_CODE_STRUCT_NAME, ST->getName(),
|
/external/llvm/lib/CodeGen/ |
H A D | RegisterCoalescer.cpp | 2143 const TargetSubtargetInfo &ST = TM->getSubtarget<TargetSubtargetInfo>(); local 2145 JoinGlobalCopies = ST.enableMachineScheduler();
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGISel.cpp | 226 const TargetSubtargetInfo &ST = IS->TM.getSubtarget<TargetSubtargetInfo>(); local 228 if (OptLevel == CodeGenOpt::None || ST.enableMachineScheduler() || 362 TargetSubtargetInfo &ST = local 364 ST.resetSubtargetFeatures(MF);
|
H A D | LegalizeVectorTypes.cpp | 2302 StoreSDNode *ST = cast<StoreSDNode>(N); local 2305 if (ST->isTruncatingStore()) 2306 GenWidenVectorTruncStores(StChain, ST); 2308 GenWidenVectorStores(StChain, ST); 2313 return DAG.getNode(ISD::TokenFactor, ST->getDebugLoc(), 2638 StoreSDNode *ST) { 2642 SDValue Chain = ST->getChain(); 2643 SDValue BasePtr = ST->getBasePtr(); 2644 unsigned Align = ST->getAlignment(); 2645 bool isVolatile = ST 2637 GenWidenVectorStores(SmallVector<SDValue, 16>& StChain, StoreSDNode *ST) argument 2706 GenWidenVectorTruncStores(SmallVector<SDValue, 16>& StChain, StoreSDNode *ST) argument [all...] |
H A D | SelectionDAG.cpp | 440 const StoreSDNode *ST = cast<StoreSDNode>(N); local 441 ID.AddInteger(ST->getMemoryVT().getRawBits()); 442 ID.AddInteger(ST->getRawSubclassData()); 443 ID.AddInteger(ST->getPointerInfo().getAddrSpace()); 4604 StoreSDNode *ST = cast<StoreSDNode>(OrigStore); local 4605 assert(ST->getOffset().getOpcode() == ISD::UNDEF && 4608 SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset }; 4611 ID.AddInteger(ST->getMemoryVT().getRawBits()); 4612 ID.AddInteger(ST [all...] |
/external/llvm/lib/IR/ |
H A D | Constants.cpp | 869 Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) { argument 870 assert((ST->isOpaque() || ST->getNumElements() == V.size()) && 890 return ConstantAggregateZero::get(ST); 892 return UndefValue::get(ST); 894 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
|
H A D | Verifier.cpp | 1948 StructType *ST = dyn_cast<StructType>(Ty); local 1949 if (ST == 0 || ST->getNumElements() != D.Struct_NumElements) 1953 if (VerifyIntrinsicType(ST->getElementType(i), Infos, ArgTys))
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMBaseInfo.h | 137 ST = 14, enumerator in enum:llvm::ARM_MB::MemBOpt 145 case ST: return "st";
|
/external/llvm/lib/Target/CppBackend/ |
H A D | CPPBackend.cpp | 579 StructType* ST = cast<StructType>(Ty); local 580 if (!ST->isLiteral()) { 582 printEscapedString(ST->getName()); 589 printEscapedString(ST->getName()); 600 StructType::element_iterator EI = ST->element_begin(); 601 StructType::element_iterator EE = ST->element_end(); 611 if (ST->isLiteral()) { 621 << (ST->isPacked() ? "true" : "false") << ");"; 623 if (!ST->isLiteral()) {
|
/external/llvm/lib/Target/NVPTX/ |
H A D | NVPTXAsmPrinter.cpp | 1919 StructType *ST = cast<StructType>(CPV->getType()); local 1922 Bytes = TD->getStructLayout(ST)->getElementOffset(0) + 1923 TD->getTypeAllocSize(ST) 1924 - TD->getStructLayout(ST)->getElementOffset(i); 1926 Bytes = TD->getStructLayout(ST)->getElementOffset(i+1) - 1927 TD->getStructLayout(ST)->getElementOffset(i);
|
H A D | NVPTXISelLowering.cpp | 971 StoreSDNode *ST = cast<StoreSDNode>(Node); local 972 SDValue Tmp1 = ST->getChain(); 973 SDValue Tmp2 = ST->getBasePtr(); 974 SDValue Tmp3 = ST->getValue(); 976 unsigned Alignment = ST->getAlignment(); 977 bool isVolatile = ST->isVolatile(); 978 bool isNonTemporal = ST->isNonTemporal(); 982 ST->getPointerInfo(), isVolatile,
|
/external/llvm/lib/Target/XCore/ |
H A D | XCoreISelLowering.cpp | 505 StoreSDNode *ST = cast<StoreSDNode>(Op); local 506 assert(!ST->isTruncatingStore() && "Unexpected store type"); 507 assert(ST->getMemoryVT() == MVT::i32 && "Unexpected store EVT"); 508 if (allowsUnalignedMemoryAccesses(ST->getMemoryVT())) { 512 getABITypeAlignment(ST->getMemoryVT().getTypeForEVT(*DAG.getContext())); 514 if (ST->getAlignment() >= ABIAlignment) { 517 SDValue Chain = ST->getChain(); 518 SDValue BasePtr = ST->getBasePtr(); 519 SDValue Value = ST->getValue(); 522 if (ST 1510 StoreSDNode *ST = cast<StoreSDNode>(N); local [all...] |
/external/llvm/lib/Transforms/Scalar/ |
H A D | ScalarReplAggregates.cpp | 62 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/utils/TableGen/ |
H A D | CodeGenRegisters.cpp | 591 void expand(SetTheory &ST, Record *Def, SetTheory::RecSet &Elts) { argument 605 ST.evaluate(SubRegs->getElement(i), Lists[i], Def->getLoc());
|
/external/llvm/lib/Transforms/IPO/ |
H A D | GlobalOpt.cpp | 1375 StructType *ST = local 1379 PHINode::Create(PointerType::getUnqual(ST->getElementType(FieldNo)), 1505 if (StructType *ST = dyn_cast<StructType>(FieldTy)) 1506 TypeSize = TD->getStructLayout(ST)->getSizeInBytes();
|
/external/clang/include/clang/AST/ |
H A D | ASTContext.h | 1169 void setObjCSuperType(QualType ST) { ObjCSuperType = ST; } argument
|
/external/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 2347 if (StoreInst *ST = dyn_cast<StoreInst>(it)) { 2348 Type *T = ST->getValueOperand()->getType(); 2519 StoreInst *ST = cast<StoreInst>(*I); local 2520 Value* Ptr = ST->getPointerOperand(); 2530 ReadWrites.insert(std::make_pair(Ptr, ST)); 3043 if (StoreInst *ST = dyn_cast<StoreInst>(it)) 3044 T = ST->getValueOperand()->getType(); 3485 if (StoreInst *ST = dyn_cast<StoreInst>(Inst)) 3486 return Legal->isConsecutivePtr(ST->getPointerOperand()) != 0;
|
/external/llvm/lib/Target/AArch64/Utils/ |
H A D | AArch64BaseInfo.h | 178 ST = 0xe, enumerator in enum:llvm::A64DB::DBValues
|
/external/qemu/ |
H A D | i386-dis.c | 4107 #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...] |