/external/clang/include/clang/AST/ |
H A D | DeclAccessPair.h | 36 static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS) { argument 38 p.set(D, AS); 52 void setAccess(AccessSpecifier AS) { argument 53 set(getDecl(), AS); local 55 void set(NamedDecl *D, AccessSpecifier AS) { argument 56 Ptr = uintptr_t(AS) | reinterpret_cast<uintptr_t>(D);
|
H A D | ASTUnresolvedSet.h | 50 void addDecl(ASTContext &C, NamedDecl *D, AccessSpecifier AS) { argument 51 Decls.push_back(DeclAccessPair::make(D, AS), C); 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) { argument 60 I->set(New, AS); 101 void addLazyDecl(ASTContext &C, uintptr_t ID, AccessSpecifier AS) { argument 104 Impl.addDecl(C, reinterpret_cast<NamedDecl*>(ID << 2), AS);
|
H A D | UnresolvedSet.h | 47 void setAccess(AccessSpecifier AS) { I->setAccess(AS); } argument 86 void addDecl(NamedDecl *D, AccessSpecifier AS) { argument 87 decls().push_back(DeclAccessPair::make(D, AS)); 104 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) { argument 105 I.I->set(New, AS); 112 void setAccess(iterator I, AccessSpecifier AS) { I.I->setAccess(AS); } argument
|
/external/clang/test/SemaCXX/ |
H A D | missing-header.cpp | 7 if (const GCCAsmStmt *AS = dyn_cast<GCCAsmStmt>(S)) {}
|
H A D | attr-aligned.cpp | 8 typedef struct __attribute__((aligned(8))) S2 { char c; } AS; typedef in typeref:struct:S2
|
/external/llvm/lib/Analysis/ |
H A D | AliasSetTracker.cpp | 31 void AliasSet::mergeSetIn(AliasSet &AS, AliasSetTracker &AST) { argument 32 assert(!AS.Forward && "Alias set is already forwarding!"); 36 Access |= AS.Access; 37 Alias |= AS.Alias; 38 Volatile |= AS.Volatile; 46 PointerRec *R = AS.getSomePointer(); 55 bool ASHadUnknownInsts = !AS.UnknownInsts.empty(); 58 std::swap(UnknownInsts, AS.UnknownInsts); 62 UnknownInsts.insert(UnknownInsts.end(), AS.UnknownInsts.begin(), AS 83 removeAliasSet(AliasSet *AS) argument 316 AliasSet &AS = addPointer(LI->getOperand(0), local 333 AliasSet &AS = addPointer(SI->getOperand(1), local 362 AliasSet &AS = local 433 remove(AliasSet &AS) argument 464 AliasSet *AS = mergeAliasSetsForPointer(Ptr, Size, AAInfo); local 477 AliasSet *AS = mergeAliasSetsForPointer(LI->getOperand(0), Size, AAInfo); local 490 AliasSet *AS = mergeAliasSetsForPointer(SI->getOperand(1), Size, AAInfo); local 500 AliasSet *AS = mergeAliasSetsForPointer(VAAI->getOperand(0), local 517 AliasSet *AS = mergeAliasSetsForPointer(MSI->getRawDest(), Len, AAInfo); local 574 AliasSet *AS = PtrValEnt->getAliasSet(*this); local 602 AliasSet *AS = I->second->getAliasSet(*this); local [all...] |
H A D | ScalarEvolutionAliasAnalysis.cpp | 34 const SCEV *AS = SE.getSCEV(const_cast<Value *>(LocA.Ptr)); local 38 if (AS == BS) 43 if (SE.getEffectiveSCEVType(AS->getType()) == 45 unsigned BitWidth = SE.getTypeSizeInBits(AS->getType()); 50 const SCEV *BA = SE.getMinusSCEV(BS, AS); 60 // (because of INT_MIN, etc.); if the prior test failed, swap AS and BS 64 const SCEV *AB = SE.getMinusSCEV(AS, BS); 77 Value *AO = GetBaseValue(AS);
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
H A D | AliasSetTracker.cpp | 31 void AliasSet::mergeSetIn(AliasSet &AS, AliasSetTracker &AST) { argument 32 assert(!AS.Forward && "Alias set is already forwarding!"); 36 AccessTy |= AS.AccessTy; 37 AliasTy |= AS.AliasTy; 38 Volatile |= AS.Volatile; 46 PointerRec *R = AS.getSomePointer(); 60 if (!AS.UnknownInsts.empty()) 61 std::swap(UnknownInsts, AS.UnknownInsts); 62 } else if (!AS.UnknownInsts.empty()) { 63 UnknownInsts.insert(UnknownInsts.end(), AS 82 removeAliasSet(AliasSet *AS) argument 302 AliasSet &AS = addPointer(LI->getOperand(0), local 316 AliasSet &AS = addPointer(SI->getOperand(1), local 376 AliasSet &AS = const_cast<AliasSet&>(*I); local 395 remove(AliasSet &AS) argument 424 AliasSet *AS = findAliasSetForPointer(Ptr, Size, TBAAInfo); local 433 AliasSet *AS = findAliasSetForPointer(LI->getOperand(0), Size, TBAAInfo); local 442 AliasSet *AS = findAliasSetForPointer(SI->getOperand(1), Size, TBAAInfo); local 449 AliasSet *AS = findAliasSetForPointer(VAAI->getOperand(0), local 507 AliasSet *AS = PtrValEnt->getAliasSet(*this); local 538 AliasSet *AS = I->second->getAliasSet(*this); local [all...] |
H A D | ScalarEvolutionAliasAnalysis.cpp | 118 const SCEV *AS = SE->getSCEV(const_cast<Value *>(LocA.Ptr)); local 122 if (AS == BS) return MustAlias; 126 if (SE->getEffectiveSCEVType(AS->getType()) == 128 unsigned BitWidth = SE->getTypeSizeInBits(AS->getType()); 133 const SCEV *BA = SE->getMinusSCEV(BS, AS); 143 // (because of INT_MIN, etc.); if the prior test failed, swap AS and BS 147 const SCEV *AB = SE->getMinusSCEV(AS, BS); 160 Value *AO = GetBaseValue(AS);
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
H A D | AliasSetTracker.h | 42 AliasSet *AS; member in class:llvm::AliasSet::PointerRec 47 : Val(V), PrevInList(0), NextInList(0), AS(0), Size(0), 53 bool hasAliasSet() const { return AS != 0; } 84 assert(AS && "No AliasSet yet!"); 85 if (AS->Forward) { 86 AliasSet *OldAS = AS; 87 AS = OldAS->getForwardedTarget(AST); 88 AS->addRef(); 91 return AS; 95 assert(AS 275 operator <<(raw_ostream &OS, const AliasSet &AS) argument 421 AliasSet &AS = getAliasSetForPointer(P, Size, TBAAInfo, &NewSet); local [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
H A D | MCAsmInfo.h | 199 virtual const char *getDataASDirective(unsigned Size, unsigned AS) const { 200 assert(AS != 0 && "Don't know the directives for default addr space"); 372 const char *getData8bitsDirective(unsigned AS = 0) const { 373 return AS == 0 ? Data8bitsDirective : getDataASDirective(8, AS); 375 const char *getData16bitsDirective(unsigned AS = 0) const { 376 return AS == 0 ? Data16bitsDirective : getDataASDirective(16, AS); 378 const char *getData32bitsDirective(unsigned AS = 0) const { 379 return AS [all...] |
/external/llvm/include/llvm/Analysis/ |
H A D | AliasSetTracker.h | 43 AliasSet *AS; member in class:llvm::AliasSet::PointerRec 49 : Val(V), PrevInList(nullptr), NextInList(nullptr), AS(nullptr), Size(0), 55 bool hasAliasSet() const { return AS != nullptr; } 92 assert(AS && "No AliasSet yet!"); 93 if (AS->Forward) { 94 AliasSet *OldAS = AS; 95 AS = OldAS->getForwardedTarget(AST); 96 AS->addRef(); 99 return AS; 103 assert(!AS 237 AliasSet(const AliasSet &AS) = delete; member in class:llvm::AliasSet 238 void operator=(const AliasSet &AS) = delete; member in class:llvm::AliasSet 286 operator <<(raw_ostream &OS, const AliasSet &AS) argument 430 AliasSet &AS = getAliasSetForPointer(P, Size, AAInfo, &NewSet); local [all...] |
/external/toolchain-utils/user_activity_benchmarks/ |
H A D | select_hot_functions.sql | 6 frame.function_name AS function, 7 frame.filename AS file, 8 frame.load_module_path AS dso, 9 sum(frame.inclusive_count) AS inclusive_count
|
/external/eigen/test/ |
H A D | unalignedcount.cpp | 20 #define VERIFY_ALIGNED_UNALIGNED_COUNT(XPR,AL,UL,AS,US) {\ 23 if(!(nb_load==AL && nb_loadu==UL && nb_store==AS && nb_storeu==US)) \ 25 VERIFY( (#XPR) && nb_load==AL && nb_loadu==UL && nb_store==AS && nb_storeu==US ); \
|
/external/llvm/include/llvm/Transforms/Scalar/ |
H A D | SROA.h | 115 bool presplitLoadsAndStores(AllocaInst &AI, sroa::AllocaSlices &AS); 116 AllocaInst *rewritePartition(AllocaInst &AI, sroa::AllocaSlices &AS, 118 bool splitAlloca(AllocaInst &AI, sroa::AllocaSlices &AS);
|
/external/llvm/lib/IR/ |
H A D | Statepoint.cpp | 56 StatepointDirectives llvm::parseStatepointDirectivesFromAttrs(AttributeSet AS) { argument 60 AS.getAttribute(AttributeSet::FunctionIndex, "statepoint-id"); 67 Attribute AttrNumPatchBytes = AS.getAttribute(AttributeSet::FunctionIndex,
|
/external/mesa3d/src/amd/common/ |
H A D | ac_llvm_helper.cpp | 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 51 llvm::AttributeSet AS = A->getParent()->getAttributes(); local 53 return AS.hasAttribute(ArgNo + 1, llvm::Attribute::ByVal) || 54 AS.hasAttribute(ArgNo + 1, llvm::Attribute::InReg);
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
H A D | Type.h | 327 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0); 328 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0); 329 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0); 330 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0); 331 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0); 332 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0); 333 static PointerType *getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS = 0); 334 static PointerType *getInt1PtrTy(LLVMContext &C, unsigned AS = 0); 335 static PointerType *getInt8PtrTy(LLVMContext &C, unsigned AS = 0); 336 static PointerType *getInt16PtrTy(LLVMContext &C, unsigned AS [all...] |
/external/llvm/include/llvm/IR/ |
H A D | Type.h | 389 static PointerType *getHalfPtrTy(LLVMContext &C, unsigned AS = 0); 390 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0); 391 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0); 392 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0); 393 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0); 394 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0); 395 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0); 396 static PointerType *getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS = 0); 397 static PointerType *getInt1PtrTy(LLVMContext &C, unsigned AS = 0); 398 static PointerType *getInt8PtrTy(LLVMContext &C, unsigned AS [all...] |
H A D | Argument.h | 127 void addAttr(AttributeSet AS); 134 void removeAttr(AttributeSet AS);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
H A D | Type.h | 400 static PointerType *getHalfPtrTy(LLVMContext &C, unsigned AS = 0); 401 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0); 402 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0); 403 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0); 404 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0); 405 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0); 406 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0); 407 static PointerType *getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS = 0); 408 static PointerType *getInt1PtrTy(LLVMContext &C, unsigned AS = 0); 409 static PointerType *getInt8PtrTy(LLVMContext &C, unsigned AS [all...] |
/external/llvm/lib/Target/ |
H A D | Target.cpp | 82 unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS) { argument 83 return unwrap(TD)->getPointerSize(AS); 90 LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef TD, unsigned AS) { argument 91 return wrap(unwrap(TD)->getIntPtrType(*unwrap(LLVMGetGlobalContext()), AS)); 98 LLVMTypeRef LLVMIntPtrTypeForASInContext(LLVMContextRef C, LLVMTargetDataRef TD, unsigned AS) { argument 99 return wrap(unwrap(TD)->getIntPtrType(*unwrap(C), AS));
|
/external/llvm/lib/Target/NVPTX/ |
H A D | NVPTXTargetTransformInfo.cpp | 59 unsigned AS = LI->getPointerAddressSpace(); local 60 return AS == ADDRESS_SPACE_GENERIC || AS == ADDRESS_SPACE_LOCAL;
|
/external/sonivox/arm-wt-22k/host_src/ |
H A D | arm-wt-22k.mak | 11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
macro 19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa -I lib_src --defsym CHECK_STACK=0 --defsym REVERB=0 --defsym CHORUS=0 --defsym STEREO_OUTPUT=1 --defsym SAMPLE_RATE_22050=1 --defsym SAMPLES_8_BIT=1 --defsym FILTER_ENABLED=1 $<
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
H A D | InterferenceCache.cpp | 81 for (const unsigned *AS = TRI->getOverlaps(PhysReg); *AS; ++AS) { 82 LiveIntervalUnion *LIU = LIUArray + *AS; 97 for (const unsigned *AS = TRI->getOverlaps(PhysReg); *AS; ++AS, ++i) { 98 LiveIntervalUnion *LIU = LIUArray + *AS;
|