Searched refs:Value (Results 201 - 225 of 704) sorted by relevance

1234567891011>>

/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_filedb/lib/
H A DSelectionPredicate.cpp38 mData = inPredicate.Attribute.Value[0];
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp94 virtual Value *Codegen() = 0;
102 virtual Value *Codegen();
110 virtual Value *Codegen();
120 virtual Value *Codegen();
130 virtual Value *Codegen();
357 static std::map<std::string, Value*> NamedValues;
360 Value *ErrorV(const char *Str) { Error(Str); return 0; }
362 Value *NumberExprAST::Codegen() {
366 Value *VariableExprAST::Codegen() {
368 Value *
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DLoads.cpp32 static bool AreEquivalentAddressValues(const Value *A, const Value *B) {
56 static Value *getUnderlyingObjectWithOffset(Value *V, const TargetData *TD,
65 SmallVector<Value*, 8> Indices(GEP->op_begin() + 1, GEP->op_end());
87 bool llvm::isSafeToLoadUnconditionally(Value *V, Instruction *ScanFrom,
90 Value *Base = V;
168 Value *llvm::FindAvailableLoadedValue(Value *Ptr, BasicBlock *ScanBB,
H A DMemoryBuiltins.cpp72 static Function *getCalledFunction(const Value *V, bool LookThroughBitCast) {
76 CallSite CS(const_cast<Value*>(V));
88 static const AllocFnsTy *getAllocationData(const Value *V, AllocType AllocTy,
133 static bool hasNoAliasAttr(const Value *V, bool LookThroughBitCast) {
142 bool llvm::isAllocationFn(const Value *V, const TargetLibraryInfo *TLI,
149 bool llvm::isNoAliasFn(const Value *V, const TargetLibraryInfo *TLI,
159 bool llvm::isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
166 bool llvm::isCallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
173 bool llvm::isAllocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
180 bool llvm::isReallocLikeFn(const Value *
[all...]
H A DLint.cpp73 void visitMemoryReference(Instruction &I, Value *Ptr,
98 Value *findValue(Value *V, bool OffsetOk) const;
99 Value *findValueImpl(Value *V, bool OffsetOk,
100 SmallPtrSet<Value *, 4> &Visited) const;
127 void WriteValue(const Value *V) {
141 const Value *V1 = 0, const Value *V2 = 0,
142 const Value *V
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/AsmParser/
H A DLLParser.h31 class Value;
48 t_APSInt, t_APFloat, // Value in APSIntVal/APFloatVal.
51 t_Constant, // Value in ConstantVal.
52 t_InlineAsm, // Value in StrVal/StrVal2/UIntVal.
53 t_MDNode, // Value in MDNodeVal.
54 t_MDString, // Value in MDStringVal.
55 t_ConstantStruct, // Value in ConstantStructElts.
56 t_PackedConstantStruct // Value in ConstantStructElts.
117 // Global Value reference information.
241 std::map<std::string, std::pair<Value*, LocT
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/IPO/
H A DIPConstantPropagation.cpp89 for (Value::use_iterator UI = F.use_begin(), E = F.use_end(); UI != E; ++UI) {
141 Value *V = ArgumentConstants[i].first;
169 SmallVector<Value *,4> RetVals;
182 Value *RV = RetVals[i];
187 Value *V;
223 for (Value::use_iterator UI = F.use_begin(), E = F.use_end(); UI != E; ++UI) {
239 Value* New = RetVals[0];
248 for (Value::use_iterator I = Call->use_begin(), E = Call->use_end();
264 Value *New = RetVals[index];
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DDemoteRegToStack.cpp53 DenseMap<BasicBlock*, Value*> Loads;
56 Value *&V = Loads[PN->getIncomingBlock(i)];
67 Value *V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, U);
127 Value *V = new LoadInst(Slot, P->getName()+".reload", P);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp166 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); local
247 MRE.Word1 = Value;
272 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); local
310 MRE.Word1 = Value;
323 int64_t Value = (int64_t)FixedValue; // The displacement is signed.
330 Value -= 8;
336 Value -= 4;
345 Value += Writer->getSectionAddress(&SymSD);
346 Value -= Writer->getSectionAddress(Fragment.getParent());
349 if (Value > Rang
460 uint32_t Value = 0; local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DEarlyCSE.cpp223 ScopedHashTableVal<SimpleValue, Value*> > AllocatorTy;
224 typedef ScopedHashTable<SimpleValue, Value*, DenseMapInfo<SimpleValue>,
242 ScopedHashTableVal<Value*, std::pair<Value*, unsigned> > > LoadMapAllocator;
243 typedef ScopedHashTable<Value*, std::pair<Value*, unsigned>,
244 DenseMapInfo<Value*>, LoadMapAllocator> LoadHTType;
249 typedef ScopedHashTable<CallValue, std::pair<Value*, unsigned> > CallHTType;
389 if (Value *V = SimplifyInstruction(Inst, TD, TLI, DT)) {
401 if (Value *
[all...]
H A DScalarReplAggregates.cpp94 SmallVector<Value*, 32> DeadInsts;
313 bool CanConvertToScalar(Value *V, uint64_t Offset, Value* NonConstantIdx);
316 void ConvertUsesToScalar(Value *Ptr, AllocaInst *NewAI, uint64_t Offset,
317 Value *NonConstantIdx);
319 Value *ConvertScalar_ExtractValue(Value *NV, Type *ToType,
320 uint64_t Offset, Value* NonConstantIdx,
322 Value *ConvertScalar_InsertValue(Value *StoredVa
[all...]
H A DObjCARC.cpp173 static bool IsPotentialUse(const Value *Op) {
280 static InstructionClass GetInstructionClass(const Value *V) {
372 static InstructionClass GetBasicInstructionClass(const Value *V) {
450 Value *OldArg = cast<CallInst>(CI)->getArgOperand(0);
470 static const Value *GetUnderlyingObjCPtr(const Value *V) {
482 /// Value::stripPointerCasts which also knows how to look through objc_retain
484 static const Value *StripPointerCastsAndObjCCalls(const Value *V) {
495 /// Value
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/mdsLookup/
H A DmdsLookup.cpp132 &attrData->Value[attrNum]);
155 CSSM_DATA_PTR data = &attrData->Value[j];
165 appFree(attrData->Value, NULL);
166 attrData->Value = NULL;
254 predicate.Attribute.Value = &predData;
295 if(outAttr.Value == NULL) {
305 outAttr.Value->Data, // valPtr, ModuleID, as string
306 outAttr.Value->Length, // valLen
325 if(outAttr.Value == NULL) {
335 outAttr.Value
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/examples/BrainF/
H A DBrainF.cpp93 Value *memset_params[] = {
168 Value *puts_params[] = {
206 Value *tape_0 = getchar_call;
209 Value *tape_1 = builder->
223 Value *tape_1 = builder->
227 Value *putchar_params[] = {
248 Value *test_0 = builder->
252 Value *test_1 = builder->
256 Value *test_2 = builder->
275 Value *tape_
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DCommandLine.cpp162 static Option *LookupOption(StringRef &Arg, StringRef &Value, argument
182 Value = Arg.substr(EqualPos+1);
237 StringRef Value, bool MultiArg = false)
242 StringRef Val(Value);
251 Value.substr(Pos+1); // Increment the original value pointer as well.
256 Value = Val;
259 if (Handler->addOccurrence(pos, ArgName, Value, MultiArg))
265 /// ProvideOption - For Value, this differentiates between an empty value ("")
269 StringRef Value, int argc,
277 if (Value
235 CommaSeparateAndAddOccurence(Option *Handler, unsigned pos, StringRef ArgName, StringRef Value, bool MultiArg = false) argument
268 ProvideOption(Option *Handler, StringRef ArgName, StringRef Value, int argc, const char *const *argv, int &i) argument
369 HandlePrefixedOrGroupedOption(StringRef &Arg, StringRef &Value, bool &ErrorParsing, const StringMap<Option*> &OptionsMap) argument
620 StringRef Value; local
868 addOccurrence(unsigned pos, StringRef ArgName, StringRef Value, bool MultiArg) argument
953 parse(Option &O, StringRef ArgName, StringRef Arg, bool &Value) argument
971 parse(Option &O, StringRef ArgName, StringRef Arg, boolOrDefault &Value) argument
989 parse(Option &O, StringRef ArgName, StringRef Arg, int &Value) argument
998 parse(Option &O, StringRef ArgName, StringRef Arg, unsigned &Value) argument
1008 parse(Option &O, StringRef ArgName, StringRef Arg, unsigned long long &Value) argument
1018 parseDouble(Option &O, StringRef Arg, double &Value) argument
1108 printGenericOptionDiff(const Option &O, const GenericOptionValue &Value, const GenericOptionValue &Default, size_t GlobalWidth) const argument
1238 operator =(bool Value) argument
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/examples/ParallelJIT/
H A DParallelJIT.cpp48 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1);
78 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1);
79 Value *Two = ConstantInt::get(Type::getInt32Ty(M->getContext()), 2);
91 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
98 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
99 Value *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB);
103 Value *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
106 Value *Sum =
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DFastISel.h43 class Value;
50 DenseMap<const Value *, unsigned> LocalValueMap;
109 unsigned getRegForValue(const Value *V);
114 unsigned lookUpRegForValue(const Value *V);
119 std::pair<unsigned, bool> getRegForGEPIndex(const Value *V);
341 void UpdateValueMap(const Value* I, unsigned Reg, unsigned NumRegs = 1);
389 unsigned materializeRegForValue(const Value *V, MVT VT);
397 bool hasTrivialKill(const Value *V) const;
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/
H A DGlobalAlias.h80 static inline bool classof(const Value *V) {
81 return V->getValueID() == Value::GlobalAliasVal;
H A DOperator.h54 static unsigned getOpcode(const Value *V) {
65 static inline bool classof(const Value *V) {
121 static inline bool classof(const Value *V) {
163 static inline bool classof(const Value *V) {
186 static inline bool classof(const Value *V) {
207 static inline bool classof(const Value *V) {
277 Value *getPointerOperand() {
280 const Value *getPointerOperand() const {
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/MC/
H A DMCContext.h155 void setAllowTemporaryLabels(bool Value) { AllowTemporaryLabels = Value; } argument
288 void setGenDwarfForAssembly(bool Value) { GenDwarfForAssembly = Value; } argument
317 void setSecureLog(raw_ostream *Value) { argument
318 SecureLog = Value;
320 void setSecureLogUsed(bool Value) { argument
321 SecureLogUsed = Value;
H A DSubtargetFeature.h37 uint64_t Value; // K-V integer value member in struct:llvm::SubtargetFeatureKV
53 const void *Value; // K-V pointer value member in struct:llvm::SubtargetInfoKV
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Transforms/Utils/
H A DCodeExtractor.h29 class Value;
45 typedef SetVector<Value *> ValueSet;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/PowerPC/
H A DPPCHazardRecognizers.h61 const Value *StoreValue[4];
85 const Value *LoadValue) const;
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DConstantFold.h25 class Value;
53 ArrayRef<Value *> Idxs);
H A DLeakDetector.cpp21 #include "llvm/Value.h"
37 void LeakDetector::addGarbageObjectImpl(const Value *Object) {
47 void LeakDetector::removeGarbageObjectImpl(const Value *Object) {

Completed in 280 milliseconds

1234567891011>>