Searched refs:Value (Results 151 - 175 of 728) sorted by relevance

1234567891011>>

/macosx-10.10/gpatch-3/patch/
H A Dargmatch.h80 # define invalid_arg(Context, Value, Problem) \
81 argmatch_invalid ((Context), (Value), (Problem))
125 # define ARGMATCH_TO_ARGUMENT(Value, Arglist, Vallist) \
126 argmatch_to_argument ((Value), (Arglist), \
/macosx-10.10/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp87 virtual Value *Codegen() = 0;
95 virtual Value *Codegen();
103 virtual Value *Codegen();
113 virtual Value *Codegen();
123 virtual Value *Codegen();
350 static std::map<std::string, Value*> NamedValues;
352 Value *ErrorV(const char *Str) { Error(Str); return 0; }
354 Value *NumberExprAST::Codegen() {
358 Value *VariableExprAST::Codegen() {
360 Value *
[all...]
/macosx-10.10/llvmCore-3425.0.34/include/llvm/MC/
H A DMCTargetAsmParser.h88 void setAvailableFeatures(unsigned Value) { AvailableFeatures = Value; } argument
91 void setParsingInlineAsm (bool Value) { ParsingInlineAsm = Value; } argument
H A DMCAsmBackend.h104 MCValue &Target, uint64_t &Value,
109 /// applyFixup - Apply the \p Value for given \p Fixup into the provided
113 uint64_t Value) const = 0;
129 uint64_t Value,
101 processFixupValue(const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFixup &Fixup, const MCFragment *DF, MCValue &Target, uint64_t &Value, bool &IsResolved) argument
/macosx-10.10/llvmCore-3425.0.34/lib/Analysis/
H A DLoopDependenceAnalysis.cpp63 static inline bool IsMemRefInstr(const Value *V) {
78 static bool IsLoadOrStoreInst(Value *I) {
88 static Value *GetPointerOperand(Value *I) {
93 llvm_unreachable("Value is no load or store instruction!");
97 const Value *A,
98 const Value *B) {
99 const Value *aObj = GetUnderlyingObject(A);
100 const Value *bObj = GetUnderlyingObject(B);
113 bool LoopDependenceAnalysis::isDependencePair(const Value *
[all...]
H A DPHITransAddr.cpp57 static bool VerifySubExpr(Value *Expr,
123 static void RemoveInstInputs(Value *V,
145 Value *PHITransAddr::PHITranslateSubExpr(Value *V, BasicBlock *CurBB,
191 Value *PHIIn = PHITranslateSubExpr(Cast->getOperand(0), CurBB, PredBB, DT);
205 for (Value::use_iterator UI = PHIIn->use_begin(), E = PHIIn->use_end();
218 SmallVector<Value*, 8> GEPOps;
221 Value *GEPOp = PHITranslateSubExpr(GEP->getOperand(i), CurBB, PredBB, DT);
232 if (Value *V = SimplifyGEPInst(GEPOps, TD, TLI, DT)) {
240 Value *APHIO
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h25 class Value;
44 const Value *Const; // valid for constants
63 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl,
89 // Returns the Value* for a constant
90 const Value *getConst() { assert (kind==CONST); return u.Const; }
/macosx-10.10/mDNSResponder-561.1.1/Clients/DNSServiceBrowser.VB/
H A DDNSServiceBrowser.vb152 Set(ByVal Value As String)
153 m_serviceName = Value
161 Set(ByVal Value As String)
162 m_regType = Value
170 Set(ByVal Value As String)
171 m_domain = Value
179 Set(ByVal Value As Integer)
180 m_refs = Value
/macosx-10.10/llvmCore-3425.0.34/examples/HowToUseJIT/
H A DHowToUseJIT.cpp78 Value *One = builder.getInt32(1);
86 Value *Add = builder.CreateAdd(One, ArgX);
107 Value *Ten = builder.getInt32(10);
/macosx-10.10/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DPseudoSourceValue.h17 #include "llvm/Value.h"
27 class PseudoSourceValue : public Value {
30 /// from Value::print or Value's operator<<.
43 /// PseudoSourceValue may also be pointed to by an LLVM IR Value.
47 /// PseudoSourceValue can ever alias a LLVM IR Value.
54 static inline bool classof(const Value *V) {
96 static inline bool classof(const Value *V) {
/macosx-10.10/llvmCore-3425.0.34/include/llvm/
H A DConstant.h113 static inline bool classof(const Value *V) {
125 /// use Value::replaceAllUsesWith, which automatically dispatches to this
128 virtual void replaceUsesOfWithOnConstant(Value *, Value *, Use *) {
H A DTypeFinder.h26 class Value;
33 DenseSet<const Value*> VisitedConstants;
69 void incorporateValue(const Value *V);
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Support/
H A DEndian.h99 return endian::read_le<value_type, unaligned>(Value);
102 endian::write_le<value_type, unaligned>((void *)&Value, newValue);
105 uint8_t Value[sizeof(value_type)]; member in class:llvm::support::detail::packed_endian_specific_integral
112 return endian::read_be<value_type, unaligned>(Value);
115 endian::write_be<value_type, unaligned>((void *)&Value, newValue);
118 uint8_t Value[sizeof(value_type)]; member in class:llvm::support::detail::packed_endian_specific_integral
125 return endian::read_le<value_type, aligned>(&Value);
128 endian::write_le<value_type, aligned>((void *)&Value, newValue);
131 value_type Value; member in class:llvm::support::detail::packed_endian_specific_integral
138 return endian::read_be<value_type, aligned>(&Value);
144 value_type Value; member in class:llvm::support::detail::packed_endian_specific_integral
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DCmpInstAnalysis.cpp34 /// <=> Value Definition
72 Value *llvm::getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
/macosx-10.10/vim-55/src/VisVim/
H A DReg.cpp42 DWORD Value; local
46 (LPBYTE) &Value, &Count) == ERROR_SUCCESS)
47 return Value;
/macosx-10.10/zlib-55/zlib/contrib/dotzlib/DotZLib/
H A DUnitTests.cs88 Assert.AreEqual( 0, crc32.Value );
91 Assert.AreEqual( 1, crc32.Value );
94 Assert.AreEqual( 556, crc32.Value );
103 Assert.AreEqual( 0x70e46888, crc32.Value );
107 Assert.AreEqual( 0x0e5c1a120, crc32.Value );
111 Assert.AreEqual(0x43b6aa94, crc32.Value);
122 Assert.AreEqual(0, adler.Value);
125 Assert.AreEqual( 1, adler.Value );
128 Assert.AreEqual( 556, adler.Value );
137 Assert.AreEqual( 0x5b001d, adler.Value );
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DSjLjEHPrepare.cpp55 Value *PersonalityFn;
73 void substituteLPadValues(LandingPadInst *LPI, Value *ExnVal,
74 Value *SelVal);
75 Value *setupFunctionContext(Function &F, ArrayRef<LandingPadInst*> LPads);
131 Value *Zero = ConstantInt::get(Int32Ty, 0);
132 Value *One = ConstantInt::get(Int32Ty, 1);
133 Value *Idxs[2] = { Zero, One };
134 Value *CallSite = Builder.CreateGEP(FuncCtx, Idxs, "call_site");
154 void SjLjEHPrepare::substituteLPadValues(LandingPadInst *LPI, Value *ExnVal,
155 Value *SelVa
[all...]
H A DExecutionDepsFix.cpp111 /// Value currently in this register, or NULL when no value is being tracked.
113 DomainValue *Value; member in struct:__anon10208::LiveReg
254 if (LiveRegs[rx].Value == dv)
256 if (LiveRegs[rx].Value)
257 release(LiveRegs[rx].Value);
258 LiveRegs[rx].Value = retain(dv);
265 if (!LiveRegs[rx].Value)
268 release(LiveRegs[rx].Value);
269 LiveRegs[rx].Value = 0;
276 if (DomainValue *dv = LiveRegs[rx].Value) {
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DSimplifyLibCalls.cpp68 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B)
71 Value *OptimizeCall(CallInst *CI, const TargetData *TD,
95 static bool IsOnlyUsedInZeroEqualityComparison(Value *V) {
96 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
120 static bool IsOnlyUsedInEqualityComparison(Value *V, Value *With) {
121 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
140 virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
150 Value *Dst = CI->getArgOperand(0);
151 Value *Sr
[all...]
H A DCorrelatedValuePropagation.cpp10 // This file implements the Correlated Value Propagation pass.
59 "Value Propagation", false, false)
62 "Value Propagation", false, false)
64 // Public interface to the Value Propagation pass
79 Value *ReplaceWith = S->getOperand(1);
80 Value *Other = S->getOperand(2);
97 Value *Incoming = P->getIncomingValue(i);
109 if (Value *V = SimplifyInstruction(P)) {
122 Value *Pointer = 0;
144 Value *Op
211 LazyValueInfo::Tristate Value = LVI->getPredicateOnEdge(CmpInst::ICMP_EQ, local
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp25 MatchSelectPattern(Value *V, Value *&LHS, Value *&RHS) {
143 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0),
154 Value *MatchOp, *OtherOpT, *OtherOpF;
183 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT,
210 Instruction *InstCombiner::FoldSelectIntoOp(SelectInst &SI, Value *TrueVal,
211 Value *FalseVal) {
227 Value *OOp = TVI->getOperand(2-OpToFold);
231 Value *NewSe
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_x509_cl/lib/
H A DSession_Cert.cpp54 CSSM_DATA_PTR &Value)
57 Value = NULL;
93 /* success - copy field data to outgoing Value */
94 Value = (CSSM_DATA_PTR)malloc(sizeof(CSSM_DATA));
95 *Value = aData.release();
104 CSSM_DATA_PTR &Value)
130 /* success - copy field data to outgoing Value */
131 Value = (CSSM_DATA_PTR)malloc(sizeof(CSSM_DATA));
132 *Value = aData.release();
155 CSSM_DATA_PTR &Value)
50 CertGetFirstFieldValue( const CssmData &EncodedCert, const CssmData &CertField, uint32 &NumberOfMatchedFields, CSSM_DATA_PTR &Value) argument
102 CertGetNextFieldValue( CSSM_HANDLE ResultsHandle, CSSM_DATA_PTR &Value) argument
151 CertGetFirstCachedFieldValue( CSSM_HANDLE CertHandle, const CssmData &CertField, uint32 &NumberOfMatchedFields, CSSM_DATA_PTR &Value) argument
192 CertGetNextCachedFieldValue( CSSM_HANDLE ResultsHandle, CSSM_DATA_PTR &Value) argument
322 FreeFieldValue( const CssmData &CertOrCrlOid, CssmData &Value) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp166 Value *Addr, uint32_t TypeSize, bool IsWrite);
167 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
168 Value *ShadowValue, uint32_t TypeSize);
169 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
173 Instruction *OrigIns, Value *Addr,
174 Value *Size,
176 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
179 Value *FirstAdd
[all...]
/macosx-10.10/llvmCore-3425.0.34/examples/Fibonacci/
H A Dfibonacci.cpp51 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1);
52 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
64 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
71 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
82 Value *Sum = BinaryOperator::CreateAdd(CallFibX1, CallFibX2,
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Analysis/
H A DIVUsers.h26 class Value;
40 IVStrideUse(IVUsers *P, Instruction* U, Value *O)
54 /// getOperandValToReplace - Return the Value of the operand in the user
56 Value *getOperandValToReplace() const {
60 /// setOperandValToReplace - Assign a new Value as the operand value
62 void setOperandValToReplace(Value *Op) {
80 /// OperandValToReplace - The Value of the operand in the user instruction
150 IVStrideUse &AddUser(Instruction *User, Value *Operand);

Completed in 371 milliseconds

1234567891011>>