Searched refs:Attrs (Results 1 - 25 of 148) sorted by relevance

123456

/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DAttributes.cpp29 std::string Attribute::getAsString(Attributes Attrs) { argument
31 if (Attrs & Attribute::ZExt)
33 if (Attrs & Attribute::SExt)
35 if (Attrs & Attribute::NoReturn)
37 if (Attrs & Attribute::NoUnwind)
39 if (Attrs & Attribute::UWTable)
41 if (Attrs & Attribute::ReturnsTwice)
43 if (Attrs & Attribute::InReg)
45 if (Attrs & Attribute::NoAlias)
47 if (Attrs
130 SmallVector<AttributeWithIndex, 4> Attrs; member in class:llvm::AttributeListImpl
167 get(const AttributeWithIndex *Attrs, unsigned NumAttrs) argument
249 const SmallVector<AttributeWithIndex, 4> &Attrs = AttrList->Attrs; local
261 const SmallVector<AttributeWithIndex, 4> &Attrs = AttrList->Attrs; local
[all...]
/external/elfutils/tests/
H A Drun-show-die-info.sh30 Attrs : name stmt_list low_pc high_pc language comp_dir producer
40 Attrs : name low_pc high_pc prototyped decl_file decl_line external frame_base type
47 Attrs : name byte_size encoding
54 Attrs : name stmt_list low_pc high_pc language comp_dir producer
64 Attrs : name low_pc high_pc prototyped decl_file decl_line external frame_base type
71 Attrs : name byte_size encoding
78 Attrs : name stmt_list low_pc high_pc language comp_dir producer
88 Attrs : sibling name low_pc high_pc prototyped decl_file decl_line external frame_base type
95 Attrs : sibling name decl_file decl_line declaration external type
100 Attrs
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.cpp118 void DIEHash::collectAttributes(const DIE &Die, DIEAttrs &Attrs) { argument
121 Attrs.NAME = V; \
360 // Go through the attributes from \param Attrs in the order specified in 7.27.4
362 void DIEHash::hashAttributes(const DIEAttrs &Attrs, dwarf::Tag Tag) { argument
369 ADD_ATTR(Attrs.DW_AT_name);
370 ADD_ATTR(Attrs.DW_AT_accessibility);
371 ADD_ATTR(Attrs.DW_AT_address_class);
372 ADD_ATTR(Attrs.DW_AT_allocated);
373 ADD_ATTR(Attrs.DW_AT_artificial);
374 ADD_ATTR(Attrs
424 DIEAttrs Attrs = {}; local
[all...]
/external/clang/lib/CodeGen/
H A DCGLoopInfo.cpp22 static MDNode *createMetadata(LLVMContext &Ctx, const LoopAttributes &Attrs, argument
25 if (!Attrs.IsParallel && Attrs.VectorizeWidth == 0 &&
26 Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 &&
27 Attrs.VectorizeEnable == LoopAttributes::Unspecified &&
28 Attrs.UnrollEnable == LoopAttributes::Unspecified &&
29 Attrs.DistributeEnable == LoopAttributes::Unspecified &&
43 if (Attrs.VectorizeWidth > 0) {
46 Type::getInt32Ty(Ctx), Attrs
117 LoopInfo(BasicBlock *Header, const LoopAttributes &Attrs, llvm::DebugLoc Location) argument
129 push(BasicBlock *Header, clang::ASTContext &Ctx, ArrayRef<const clang::Attr *> Attrs, llvm::DebugLoc Location) argument
[all...]
H A DCGLoopInfo.h70 LoopInfo(llvm::BasicBlock *Header, const LoopAttributes &Attrs,
80 const LoopAttributes &getAttributes() const { return Attrs; }
88 LoopAttributes Attrs; member in class:clang::CodeGen::LoopInfo
106 /// \brief Begin a new structured loop. Stage attributes from the Attrs list.
109 llvm::ArrayRef<const Attr *> Attrs,
/external/llvm/unittests/ExecutionEngine/Orc/
H A DIndirectionUtilsTest.cpp23 SmallVector<AttributeSet, 4> Attrs; local
24 Attrs.push_back(
27 Attrs.push_back(
30 Attrs.push_back(
33 F->setAttributes(AttributeSet::get(MB.getModule()->getContext(), Attrs));
/external/swiftshader/third_party/LLVM/include/llvm/
H A DAttributes.h159 std::string getAsString(Attributes Attrs);
165 Attributes Attrs; ///< The attributes that are set, or'd together. member in struct:llvm::AttributeWithIndex
170 static AttributeWithIndex get(unsigned Idx, Attributes Attrs) { argument
173 P.Attrs = Attrs;
214 AttrListPtr addAttr(unsigned Idx, Attributes Attrs) const;
219 AttrListPtr removeAttr(unsigned Idx, Attributes Attrs) const;
/external/skia/src/gpu/
H A DGrUserStencilSettings.h114 template<GrUserStencilTest, GrUserStencilOp PassOp, GrUserStencilOp FailOp> struct Attrs;
150 typename Attrs = Attrs<Test, PassOp, FailOp> >
153 : fFrontFlags{(uint16_t)(Attrs::Flags(false) | kSingleSided_StencilFlag),
154 (uint16_t)(Attrs::Flags(true) | kSingleSided_StencilFlag)}
155 , fFront{Ref, Test, Attrs::EffectiveTestMask(TestMask), PassOp, FailOp,
156 Attrs::EffectiveWriteMask(WriteMask)}
157 , fBackFlags{(uint16_t)(Attrs::Flags(false) | kSingleSided_StencilFlag),
158 (uint16_t)(Attrs::Flags(true) | kSingleSided_StencilFlag)}
159 , fBack{Ref, Test, Attrs
209 struct GrUserStencilSettings::Attrs { struct in class:GrUserStencilSettings
[all...]
/external/skqp/src/gpu/
H A DGrUserStencilSettings.h114 template<GrUserStencilTest, GrUserStencilOp PassOp, GrUserStencilOp FailOp> struct Attrs;
150 typename Attrs = Attrs<Test, PassOp, FailOp> >
153 : fFrontFlags{(uint16_t)(Attrs::Flags(false) | kSingleSided_StencilFlag),
154 (uint16_t)(Attrs::Flags(true) | kSingleSided_StencilFlag)}
155 , fFront{Ref, Test, Attrs::EffectiveTestMask(TestMask), PassOp, FailOp,
156 Attrs::EffectiveWriteMask(WriteMask)}
157 , fBackFlags{(uint16_t)(Attrs::Flags(false) | kSingleSided_StencilFlag),
158 (uint16_t)(Attrs::Flags(true) | kSingleSided_StencilFlag)}
159 , fBack{Ref, Test, Attrs
209 struct GrUserStencilSettings::Attrs { struct in class:GrUserStencilSettings
[all...]
/external/llvm/lib/IR/
H A DAttributes.cpp544 ArrayRef<Attribute> Attrs) {
545 if (Attrs.empty())
552 SmallVector<Attribute, 8> SortedAttrs(Attrs.begin(), Attrs.end());
691 ArrayRef<std::pair<unsigned, AttributeSetNode*> > Attrs) {
694 AttributeSetImpl::Profile(ID, Attrs);
704 AttributeSetImpl::totalSizeToAlloc<IndexAttrPair>(Attrs.size()));
705 PA = new (Mem) AttributeSetImpl(C, Attrs);
714 ArrayRef<std::pair<unsigned, Attribute> > Attrs){
716 if (Attrs
543 get(LLVMContext &C, ArrayRef<Attribute> Attrs) argument
690 getImpl(LLVMContext &C, ArrayRef<std::pair<unsigned, AttributeSetNode*> > Attrs) argument
713 get(LLVMContext &C, ArrayRef<std::pair<unsigned, Attribute> > Attrs) argument
748 get(LLVMContext &C, ArrayRef<std::pair<unsigned, AttributeSetNode*> > Attrs) argument
807 SmallVector<std::pair<unsigned, Attribute>, 8> Attrs; local
815 SmallVector<std::pair<unsigned, Attribute>, 8> Attrs; local
821 get(LLVMContext &C, ArrayRef<AttributeSet> Attrs) argument
[all...]
H A DVerifier.cpp444 bool verifyAttributeCount(AttributeSet Attrs, unsigned Params);
445 void verifyAttributeTypes(AttributeSet Attrs, unsigned Idx, bool isFunction,
447 void verifyParameterAttrs(AttributeSet Attrs, unsigned Idx, Type *Ty,
449 void verifyFunctionAttrs(FunctionType *FT, AttributeSet Attrs,
1257 void Verifier::verifyAttributeTypes(AttributeSet Attrs, unsigned Idx, argument
1260 for (unsigned I = 0, E = Attrs.getNumSlots(); I != E; ++I)
1261 if (Attrs.getSlotIndex(I) == Idx) {
1268 for (AttributeSet::iterator I = Attrs.begin(Slot), E = Attrs.end(Slot);
1329 void Verifier::verifyParameterAttrs(AttributeSet Attrs, unsigne argument
1437 verifyFunctionAttrs(FunctionType *FT, AttributeSet Attrs, const Value *V) argument
1659 verifyAttributeCount(AttributeSet Attrs, unsigned Params) argument
1897 AttributeSet Attrs = F.getAttributes(); local
2525 AttributeSet Attrs = CS.getAttributes(); local
2664 getParameterABIAttributes(int I, AttributeSet Attrs) argument
[all...]
/external/llvm/utils/TableGen/
H A DAttributes.cpp47 std::vector<Record*> Attrs = local
50 for (auto A : Attrs)
60 std::vector<Record*> Attrs = local
66 for (auto A : Attrs) {
/external/tensorflow/tensorflow/core/framework/
H A Dfunction_testlib.h34 class Attrs { class in namespace:tensorflow::test::function
36 Attrs(const std::initializer_list< // NOLINT(runtime/explicit) function in class:tensorflow::test::function::Attrs
/external/tensorflow/tensorflow/go/op/
H A Dop.go47 Attrs: map[string]interface{}{
/external/llvm/include/llvm/IR/
H A DAttributes.h224 ArrayRef<std::pair<unsigned, Attribute> > Attrs);
227 AttributeSetNode*> > Attrs);
231 AttributeSetNode*> > Attrs);
243 static AttributeSet get(LLVMContext &C, ArrayRef<AttributeSet> Attrs);
268 AttributeSet Attrs) const;
286 AttributeSet Attrs) const;
292 const AttrBuilder &Attrs) const;
444 std::bitset<Attribute::EndAttrKinds> Attrs; member in class:llvm::AttributeSet::AttrBuilder
454 : Attrs(0), Alignment(0), StackAlignment(0), DerefBytes(0),
457 : Attrs(
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp123 const std::string &Attrs = Graph->getGraphAttrs(N); local
124 if (!Attrs.empty()) {
125 if (Attrs.find("shape=") == std::string::npos)
126 return std::string("shape=Mrecord,") + Attrs;
128 return Attrs;
184 void SelectionDAG::setGraphAttrs(const SDNode *N, const char *Attrs) { argument
186 NodeGraphAttrs[N] = Attrs;
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp118 const std::string &Attrs = Graph->getGraphAttrs(N); local
119 if (!Attrs.empty()) {
120 if (Attrs.find("shape=") == std::string::npos)
121 return std::string("shape=Mrecord,") + Attrs;
123 return Attrs;
179 void SelectionDAG::setGraphAttrs(const SDNode *N, const char *Attrs) { argument
181 NodeGraphAttrs[N] = Attrs;
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DAttributes.h225 ArrayRef<std::pair<unsigned, Attribute> > Attrs);
228 AttributeSetNode*> > Attrs);
232 AttributeSetNode*> > Attrs);
244 static AttributeSet get(LLVMContext &C, ArrayRef<AttributeSet> Attrs);
269 AttributeSet Attrs) const;
287 AttributeSet Attrs) const;
293 const AttrBuilder &Attrs) const;
446 std::bitset<Attribute::EndAttrKinds> Attrs; member in class:llvm::AttributeSet::AttrBuilder
456 : Attrs(0), Alignment(0), StackAlignment(0), DerefBytes(0),
459 : Attrs(
[all...]
/external/tensorflow/tensorflow/go/
H A Dutil_test.go23 Attrs: map[string]interface{}{
41 Attrs: map[string]interface{}{
/external/spirv-llvm/lib/SPIRV/
H A DOCL20To12.cpp125 AttributeSet Attrs = CI->getCalledFunction()->getAttributes(); local
130 }, &Attrs);
H A DOCL21ToSPIRV.cpp181 AttributeSet Attrs = CI->getCalledFunction()->getAttributes(); local
187 }, &Attrs);
212 AttributeSet Attrs = CI->getCalledFunction()->getAttributes(); local
219 }, &Attrs);
224 AttributeSet Attrs = CI->getCalledFunction()->getAttributes(); local
228 }, &Attrs);
/external/tensorflow/tensorflow/examples/wav_to_spectrogram/
H A Dwav_to_spectrogram.cc64 Placeholder::Attrs().Shape(TensorShape({})));
73 Squeeze::Attrs().Axis({0}));
/external/clang/lib/Parse/
H A DParseStmt.cpp108 ParsedAttributesWithRange Attrs(AttrFactory);
109 MaybeParseCXX11Attributes(Attrs, nullptr, /*MightBeObjCMessageSend*/ true);
110 if (!MaybeParseOpenCLUnrollHintAttribute(Attrs))
114 Stmts, Allowed, TrailingElseLoc, Attrs);
116 assert((Attrs.empty() || Res.isInvalid() || Res.isUsable()) &&
119 if (Attrs.empty() || Res.isInvalid())
122 return Actions.ProcessStmtAttributes(Res.get(), Attrs.getList(), Attrs.Range);
157 ParsedAttributesWithRange &Attrs) {
170 ProhibitAttributes(Attrs); // TOD
155 ParseStatementOrDeclarationAfterAttributes(StmtVector &Stmts, AllowedContsructsKind Allowed, SourceLocation *TrailingElseLoc, ParsedAttributesWithRange &Attrs) argument
1905 ParsePragmaLoopHint(StmtVector &Stmts, AllowedContsructsKind Allowed, SourceLocation *TrailingElseLoc, ParsedAttributesWithRange &Attrs) argument
2240 ParseOpenCLUnrollHintAttribute(ParsedAttributes &Attrs) argument
[all...]
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp144 const SmallVectorImpl<const Attr *> &Attrs) {
161 for (const auto *I : Attrs) {
297 SmallVector<const Attr*, 8> Attrs; local
300 Attrs.push_back(a);
303 CheckForIncompatibleAttributes(*this, Attrs);
305 if (Attrs.empty())
308 return ActOnAttributedStmt(Range.getBegin(), Attrs, S);
143 CheckForIncompatibleAttributes(Sema &S, const SmallVectorImpl<const Attr *> &Attrs) argument
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp154 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr"); local
157 for (const auto *Attr : Attrs) {
1505 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); local
1507 for (const auto *Attr : Attrs) {
1527 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr"); local
1529 for (const auto *Attr : Attrs) {
1553 ParsedAttrMap Attrs = getParsedAttrList(Records); local
1554 for (const auto &I : Attrs) {
1583 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); local
1585 for (const auto *Attr : Attrs) {
1611 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); local
1811 std::vector<Record*> Attrs = Records.getAllDerivedDefinitions("Attr"); local
[all...]

Completed in 2132 milliseconds

123456