| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| SDNodeProperties.cpp | 16 unsigned Properties = 0; 17 for (Record *Property : R->getValueAsListOfDefs("Properties")) { 19 Properties |= 1 << SDNPCommutative; 21 Properties |= 1 << SDNPAssociative; 23 Properties |= 1 << SDNPHasChain; 25 Properties |= 1 << SDNPOutGlue; 27 Properties |= 1 << SDNPInGlue; 29 Properties |= 1 << SDNPOptInGlue; 31 Properties |= 1 << SDNPMayStore; 33 Properties |= 1 << SDNPMayLoad [all...] |
| CodeGenIntrinsics.h | 88 /// properties (IntrReadMem, IntrArgMemOnly, etc.). 107 /// SDPatternOperator Properties applied to the intrinsic. 108 unsigned Properties; 180 return Properties & (1 << Prop);
|
| CodeGenTarget.h | 195 /// properties? 209 unsigned Properties; // Node properties 220 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
|
| CodeGenTarget.cpp | 552 /// properties instead of raising an error. 580 // Parse the properties. 581 Properties = 0; 582 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties"); 585 Properties |= 1 << SDNPHasChain; 587 Properties |= 1 << SDNPOptInGlue; 589 Properties |= 1 << SDNPMayStore; 591 Properties |= 1 << SDNPMayLoad; 593 Properties |= 1 << SDNPSideEffect; 595 Properties |= 1 << SDNPMemOperand [all...] |
| CodeGenDAGPatterns.h | 448 unsigned Properties; 476 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
|
| /src/external/apache2/llvm/dist/clang/lib/Index/ |
| IndexSymbol.cpp | 90 Info.Properties = SymbolPropertySet(); 94 Info.Properties |= (SymbolPropertySet)SymbolProperty::Local; 97 Info.Properties |= (SymbolPropertySet)SymbolProperty::ProtocolInterface; 101 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; 129 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; 135 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; 136 Info.Properties |= 139 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; 140 Info.Properties |= 155 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/ |
| InstrRefBasedImpl.cpp | 369 /// Extract properties from an existing DBG_VALUE instruction. 758 const DbgValueProperties &Properties) { 764 const DIExpression *Expr = Properties.DIExpr; 782 if (Properties.Indirect) 810 DbgValueProperties Properties; 825 : ID(Val), Properties(Prop), Kind(Kind) { 830 : BlockNo(BlockNo), Properties(Prop), Kind(Kind) { 835 : MO(MO), Properties(Prop), Kind(Kind) { 840 : Properties(Prop), Kind(Kind) { 856 if (Properties.Indirect [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| MachineFunction.h | 108 /// Properties which a MachineFunction may have at a given point in time. 118 // The properties are stated in "positive" form; i.e. a pass could require 166 return Properties[static_cast<unsigned>(P)]; 170 Properties.set(static_cast<unsigned>(P)); 175 Properties.reset(static_cast<unsigned>(P)); 179 /// Reset all the properties. 181 Properties.reset(); 186 Properties |= MFP.Properties; 191 Properties.reset(MFP.Properties) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/ |
| Assembler.cpp | 190 auto &Properties = MF.getProperties(); 191 Properties.set(MachineFunctionProperties::Property::NoVRegs); 192 Properties.reset(MachineFunctionProperties::Property::IsSSA); 193 Properties.set(MachineFunctionProperties::Property::NoPHIs); 213 Properties.reset(MachineFunctionProperties::Property::TracksLiveness);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| AMDGPUPropagateAttributes.cpp | 104 Properties(Props), OrigF(OrigF), NewF(NewF) {} 106 FnProperties Properties; 207 if (C.OrigF == OrigF && PropsNeeded == C.Properties)
|
| /src/external/apache2/llvm/dist/clang/include/clang/Index/ |
| IndexSymbol.h | 81 /// Set of properties that provide additional info about a symbol. 145 SymbolPropertySet Properties;
|
| /src/external/apache2/llvm/dist/clang/tools/clang-format-vs/ClangFormat/ |
| Vsix.cs | 76 if (view != null && view.TextBuffer.Properties.TryGetProperty(typeof(ITextDocument), out document))
|
| /src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| ClangASTPropertiesEmitter.cpp | 1 //=== ClangASTPropsEmitter.cpp - Generate Clang AST properties --*- C++ -*-===// 9 // This tablegen backend emits code for working with Clang AST properties. 78 std::vector<Property> Properties; 100 // Find all the properties. 104 NodeInfos[node].Properties.push_back(property); 191 // TODO: we should sort the properties in various ways 193 // - put conditional properties after properties used in the condition 197 for (Property prop : info.Properties) { 218 // Ignore intermediate nodes that don't add interesting properties [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| JSON.h | 105 explicit Object(std::initializer_list<KV> Properties); 311 Value(json::Object &&Properties) : Type(T_Object) { 312 create<json::Object>(std::move(Properties)); 553 inline Object::Object(std::initializer_list<KV> Properties) { 554 for (const auto &P : Properties) { 639 /// "properties": { ... }
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/ |
| MIRParser.cpp | 342 MachineFunctionProperties &Properties = MF.getProperties(); 355 Properties.set(MachineFunctionProperties::Property::NoPHIs); 359 Properties.set(MachineFunctionProperties::Property::IsSSA); 361 Properties.reset(MachineFunctionProperties::Property::IsSSA); 365 Properties.set(MachineFunctionProperties::Property::NoVRegs);
|
| /src/external/apache2/llvm/dist/clang/tools/c-index-test/ |
| core_main.cpp | 297 if (SymInfo.Properties) { 299 printSymbolProperties(SymInfo.Properties, OS);
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| OpenMPClause.cpp | 2265 assert(Selector.Properties.size() == 1 && 2266 Selector.Properties.front().Kind == 2291 for (const OMPTraitProperty &Property : Selector.Properties) 2298 assert(Selector.Properties.size() == 1 && 2299 Selector.Properties.front().Kind == 2304 VMI.ConstructTraits.push_back(Selector.Properties.front().Kind); 2348 for (const OMPTraitProperty &Property : Selector.Properties) { 2379 for (const OMPTraitProperty &Property : Selector.Properties) 2409 Selector.Properties.push_back(OMPTraitProperty()); 2410 OMPTraitProperty &Property = Selector.Properties.back() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| MachineFunction.cpp | 111 for (BitVector::size_type I = 0; I < Properties.size(); ++I) { 112 if (!Properties[I]) 157 Properties.set(MachineFunctionProperties::Property::IsSSA); 158 Properties.set(MachineFunctionProperties::Property::TracksLiveness); 215 Properties.reset();
|
| /src/external/bsd/kyua-cli/dist/store/ |
| schema_v1.sql | 46 -- Database-wide properties. 216 -- Properties specific to 'atf' test cases. 218 -- This table contains the representation of singly-valued properties such 219 -- as 'timeout'. Properties that can have more than one (textual) value 222 -- Note that all properties can be NULL because test cases are not required 246 -- Representation of test case properties that have more than one value. 248 -- While we could store the flattened values of the properties as provided 269 -- Properties specific to 'plain' test programs.
|
| /src/external/apache2/llvm/dist/clang/lib/APINotes/ |
| APINotesYAMLCompiler.cpp | 250 PropertiesSeq Properties; 274 IO.mapOptional("Properties", C.Properties);
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGObjCGNU.cpp | 247 // For read-only properties, clear the copy and retain flags 258 // For protocol properties, synthesized and dynamic have no meaning, so we 285 // struct objc_property properties[] 423 /// components and can not contain declared properties. We always emit 485 llvm::Constant *Properties, 728 /// Specialised function for setting atomic retain properties 730 /// Specialised function for setting atomic copy properties 732 /// Specialised function for setting nonatomic retain properties 734 /// Specialised function for setting nonatomic copy properties 1408 // Required instance properties 3369 auto properties = PushPropertyListHeader(propertyList, numProperties); local [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Parse/ |
| ParseOpenMP.cpp | 942 "Only for extension properties, e.g., " 965 for (OMPTraitProperty &SeenProp : TISelector.Properties) 985 "User conditions are special properties not handled here!"); 1009 TISelector.Properties.push_back(TIProperty); 1159 TISelector.Properties.push_back( 1178 TISelector.Properties.push_back( 1336 !TISelector.Properties.empty()) 1480 ParentSelector.Properties) { 1482 for (OMPTraitProperty &Property : Selector.Properties) { 1483 // Ignore "equivalent" properties [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaObjCProperty.cpp | 41 // on properties of retainable pointer type. 255 // We don't check if class extension. Because properties in class extension 335 /// Check for a mismatch in the atomicity of the given properties. 384 // One of the properties is atomic; if it's a readonly property, and 783 llvm_unreachable("properties cannot be autoreleasing"); 834 /// protocols. It also diagnoses properties declared in inherited protocols with 844 ObjCInterfaceDecl::PropertyDeclOrder Properties; 848 Properties); 855 Properties); 861 if (Properties.empty() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| HexagonConstPropagation.cpp | 52 // Properties of a value that are tracked by the propagation. 75 // For a given constant, deduce the set of trackable properties that this 122 uint32_t Properties; 135 uint32_t properties() const; 139 // This memcpy also copies Properties (when L.Size == 0). 141 L.IsSpecial ? sizeof L.Properties : L.Size * sizeof(const Constant *); 150 // This memcpy also copies Properties (when L.Size == 0). 151 uint32_t N = L.IsSpecial ? sizeof L.Properties 461 // properties. 468 uint32_t Ps = !isTop() ? properties() 603 uint32_t LatticeCell::properties() const { function in class:LatticeCell [all...] |
| /src/external/apache2/mDNSResponder/dist/mDNSShared/ |
| DebugServices.h | 329 #pragma mark == Properties == 335 @abstract Tag for properties.
|