HomeSort by relevance Sort by last modified time
    Searched defs:AS (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/clang/test/SemaCXX/
attr-aligned.cpp 8 typedef struct __attribute__((aligned(8))) S2 { char c; } AS;
  /external/sonivox/arm-fm-22k/host_src/
arm-fm-22k.mak 11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa $<
  /external/sonivox/arm-fm-22k/lib_src/
arm-fm-22k_lib.mak 11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa $<
  /external/sonivox/arm-hybrid-22k/host_src/
arm-hybrid-22k.mak 11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
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/sonivox/arm-hybrid-22k/lib_src/
arm-hybrid-22k_lib.mak 11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
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/sonivox/arm-wt-22k/host_src/
arm-wt-22k.mak 11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
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/sonivox/arm-wt-22k/lib_src/
arm-wt-22k_lib.mak 11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
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/llvm/lib/Target/NVPTX/
NVPTXTargetTransformInfo.cpp 59 unsigned AS = LI->getPointerAddressSpace();
60 return AS == ADDRESS_SPACE_GENERIC || AS == ADDRESS_SPACE_LOCAL;
77 // Handle the NVPTX atomic instrinsics that cannot be represented as an
82 // Conservatively consider the return value of function calls as divergent.
111 // estimate that arithmetic operations on i64 are twice as expensive as
  /external/llvm/unittests/IR/
VerifierTest.cpp 52 AttributeSet AS = F->getAttributes();
53 F->setAttributes(AS.addAttribute(C, AttributeSet::ReturnIndex,
  /external/clang/include/clang/AST/
DeclAccessPair.h 13 // natural access of a declaration when named in a class, as
36 static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS) {
38 p.set(D, AS);
52 void setAccess(AccessSpecifier AS) {
53 set(getDecl(), AS);
55 void set(NamedDecl *D, AccessSpecifier AS) {
56 Ptr = uintptr_t(AS) | reinterpret_cast<uintptr_t>(D);
  /external/llvm/lib/Analysis/
ScalarEvolutionAliasAnalysis.cpp 45 /// should override this to adjust the this pointer as needed for the
119 const SCEV *AS = SE->getSCEV(const_cast<Value *>(LocA.Ptr));
123 if (AS == BS) return MustAlias;
127 if (SE->getEffectiveSCEVType(AS->getType()) ==
129 unsigned BitWidth = SE->getTypeSizeInBits(AS->getType());
134 const SCEV *BA = SE->getMinusSCEV(BS, AS);
144 // (because of INT_MIN, etc.); if the prior test failed, swap AS and BS
148 const SCEV *AB = SE->getMinusSCEV(AS, BS);
161 Value *AO = GetBaseValue(AS);
AliasSetTracker.cpp 30 void AliasSet::mergeSetIn(AliasSet &AS, AliasSetTracker &AST) {
31 assert(!AS.Forward && "Alias set is already forwarding!");
35 AccessTy |= AS.AccessTy;
36 AliasTy |= AS.AliasTy;
37 Volatile |= AS.Volatile;
45 PointerRec *R = AS.getSomePointer();
58 bool ASHadUnknownInsts = !AS.UnknownInsts.empty();
61 std::swap(UnknownInsts, AS.UnknownInsts);
65 UnknownInsts.insert(UnknownInsts.end(), AS.UnknownInsts.begin(), AS.UnknownInsts.end())
    [all...]
  /external/clang/lib/CodeGen/
CGCXXABI.cpp 223 // Derive a char* in the same address space as the pointer.
224 unsigned AS = ptr->getType()->getPointerAddressSpace();
225 llvm::Type *charPtrTy = CGF.Int8Ty->getPointerTo(AS);
CodeGenTypes.cpp 169 // structure as a member.
187 /// point. This boils down to being whether it is complete, as well as whether
330 // LLVM void type can only be used as the result of a function call. Just
331 // map to the same as char.
336 // Note that we always return bool as i1 for use as a scalar type.
376 // Model std::nullptr_t as i8*
417 unsigned AS = Context.getTargetAddressSpace(ETy);
418 ResultType = llvm::PointerType::get(PointeeType, AS);
    [all...]
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 336 // only encodes the metadata type when it's used as a value.
630 // If it is a non-anonymous struct, mark the type as being visited so that we
648 // If this is actually a struct that we are treating as forward ref'able,
686 // Don't enumerate basic blocks here, this happens as operands to
708 AttributeSet AS = PAL.getSlotAttributes(i);
709 unsigned &Entry = AttributeGroupMap[AS];
711 AttributeGroups.push_back(AS);
797 /// should only be used by rare constructs such as address-of-label.
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 30 unsigned AS = V->getType()->getPointerAddressSpace();
31 return B.CreateBitCast(V, B.getInt8PtrTy(AS), "cstr");
42 AttributeSet AS[2];
43 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
45 AS[1] = AttributeSet::get(M->getContext(), AttributeSet::FunctionIndex, AVs);
49 "strlen", AttributeSet::get(M->getContext(), AS),
67 AttributeSet AS[2];
68 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
70 AS[1] = AttributeSet::get(M->getContext(), AttributeSet::FunctionIndex, AVs);
74 M->getOrInsertFunction("strnlen", AttributeSet::get(M->getContext(), AS),
    [all...]
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfAnnotationDictionary_autogen.cpp 155 SkString SkPdfAnnotationDictionary::AS(SkPdfNativeDoc* doc) {
156 SkPdfNativeObject* ret = get("AS", "");
164 return get("AS", "") != NULL;
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 70 // only encodes the metadata type when it's used as a value.
346 // need to enumerate the individual elements, as well as mark the
347 // outer constant as used.
369 // If it is a non-anonymous struct, mark the type as being visited so that we
387 // If this is actually a struct that we are treating as forward ref'able,
425 // Don't enumerate basic blocks here, this happens as operands to
447 AttributeSet AS = PAL.getSlotAttributes(i);
448 unsigned &Entry = AttributeGroupMap[AS];
450 AttributeGroups.push_back(AS);
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 70 // only encodes the metadata type when it's used as a value.
346 // need to enumerate the individual elements, as well as mark the
347 // outer constant as used.
369 // If it is a non-anonymous struct, mark the type as being visited so that we
387 // If this is actually a struct that we are treating as forward ref'able,
425 // Don't enumerate basic blocks here, this happens as operands to
447 AttributeSet AS = PAL.getSlotAttributes(i);
448 unsigned &Entry = AttributeGroupMap[AS];
450 AttributeGroups.push_back(AS);
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 70 // only encodes the metadata type when it's used as a value.
346 // need to enumerate the individual elements, as well as mark the
347 // outer constant as used.
369 // If it is a non-anonymous struct, mark the type as being visited so that we
387 // If this is actually a struct that we are treating as forward ref'able,
425 // Don't enumerate basic blocks here, this happens as operands to
447 AttributeSet AS = PAL.getSlotAttributes(i);
448 unsigned &Entry = AttributeGroupMap[AS];
450 AttributeGroups.push_back(AS);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 301 if (const AllocationState *AS = State->get<AllocatedData>(V)) {
302 if (!definitelyReturnedError(AS->Region, State, C.getSValBuilder())) {
312 unsigned int DIdx = FunctionsToTrack[AS->AllocatorIdx].DeallocatorIdx;
320 Report->markInteresting(AS->Region);
356 const AllocationState *AS = State->get<AllocatedData>(ArgSM);
357 if (!AS && FunctionsToTrack[idx].Kind != ValidAPI) {
360 // If trying to free data which has not been allocated yet, report as a bug.
363 if (!AS || RegionArgIsBad) {
365 // have entered as an enclosing function parameter.
376 if (AS)
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 42 AliasSet *AS;
47 : Val(V), PrevInList(nullptr), NextInList(nullptr), AS(nullptr), Size(0),
53 bool hasAliasSet() const { return AS != nullptr; }
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;
94 void setAliasSet(AliasSet *as) {
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 69 AttributeSet AS = Fn->getAttributes();
70 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
71 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
72 AS.getFnAttributes());
76 // If the alignment was parsed as an attribute, move to the alignment
83 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
87 Fn->setAttributes(AS);
89 AttributeSet AS = CI->getAttributes()
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 56 // We track lifetime intrinsics as we encounter them. If we decide to go
105 // If this is being passed as a byval argument, the caller is making a
121 // If this is isn't our memcpy/memmove, reject it as something we can't
127 // If the transfer is using the alloca as a source of the transfer, then
141 // If the memintrinsic isn't using the alloca as the dest, reject it.
250 // dominance as the array size was forced to a constant earlier already.
319 unsigned AS = LI.getPointerAddressSpace();
324 IC.Builder->CreateBitCast(Ptr, NewTy->getPointerTo(AS)),
385 unsigned AS = SI.getPointerAddressSpace();
390 V, IC.Builder->CreateBitCast(Ptr, V->getType()->getPointerTo(AS)),
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 10 // This pass performs loop invariant code motion, attempting to remove as much
11 // code from the body of a loop as possible. It does this by either hoisting
135 // State that is updated as we process loops.
256 // reform LCSSA as any nested loop may now have values defined within the
260 // it as it went.
300 // Set changed as false.
356 // Set changed as false.
432 // in the same alias set as something that ends up being modified.
458 // in the loop, we can hoist or sink the call as appropriate.
462 AliasSet &AS = *I
    [all...]

Completed in 991 milliseconds

1 2 3 4 5