Searched refs:Value (Results 351 - 375 of 704) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Bitcode/
H A DBitstreamWriter.h72 void WriteByte(unsigned char Value) { argument
73 Out.push_back(Value);
76 void WriteWord(unsigned Value) { argument
78 (unsigned char)(Value >> 0),
79 (unsigned char)(Value >> 8),
80 (unsigned char)(Value >> 16),
81 (unsigned char)(Value >> 24) };
384 assert(Vals[RecordIdx] < 256 && "Value too large to emit as blob");
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DAnalysis.cpp110 GlobalVariable *llvm::ExtractTypeInfo(Value *V) {
117 Value *Init = GV->getInitializer();
211 static const Value *getNoopInput(const Value *V, const TargetLowering &TLI) {
216 Value *Op = I->getOperand(0);
326 Value *RetVal = Ret->getOperand(0);
335 const Value *InScalar = FindInsertedValue(RetVal, i);
/macosx-10.10.1/llvmCore-3425.0.34/lib/MC/
H A DMCMachOStreamer.cpp52 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
69 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) { argument
79 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
210 void MCMachOStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) { argument
215 Symbol->setVariableValue(AddValueSymbols(Value));
382 int64_t Value, unsigned ValueSize,
388 new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit,
381 EmitValueToAlignment(unsigned ByteAlignment, int64_t Value, unsigned ValueSize, unsigned MaxBytesToEmit) argument
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp95 uint64_t Value) const {
105 assert(isIntN(Size * 8 + 1, Value) &&
106 "Value does not fit in the Fixup field");
109 Data[Fixup.getOffset() + i] = uint8_t(Value >> (i * 8));
115 uint64_t Value,
257 uint64_t Value,
261 return int64_t(Value) != int64_t(int8_t(Value));
256 fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value, const MCInstFragment *DF, const MCAsmLayout &Layout) const argument
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/XCore/
H A DXCoreRegisterInfo.cpp303 unsigned DstReg, int64_t Value, DebugLoc dl) const {
305 if (!isImmU16(Value)) {
307 report_fatal_error("loadConstant value too big " + Twine(Value));
309 int Opcode = isImmU6(Value) ? XCore::LDC_ru6 : XCore::LDC_lru6;
310 BuildMI(MBB, I, dl, TII.get(Opcode), DstReg).addImm(Value);
302 loadConstant(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, unsigned DstReg, int64_t Value, DebugLoc dl) const argument
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DLowerSwitch.cpp63 BasicBlock* switchConvert(CaseItr Begin, CaseItr End, Value* Val,
65 BasicBlock* newLeafBlock(CaseRange& Leaf, Value* Val,
119 Value* Val, BasicBlock* OrigBlock,
163 BasicBlock* LowerSwitch::newLeafBlock(CaseRange& Leaf, Value* Val,
262 Value *Val = SI->getCondition(); // The value we are switching on...
H A DPromoteMemoryToRegister.cpp87 for (Value::const_use_iterator UI = AI->use_begin(), UE = AI->use_end();
132 typedef std::vector<Value *> ValVector;
227 std::vector<Value*> PointerAllocaValues;
302 Value *AllocaPointerVal;
323 for (Value::use_iterator UI = AI->use_begin(), E = AI->use_end();
365 for (Value::use_iterator UI = AI->use_begin(), UE = AI->use_end();
376 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end();
596 if (Value *V = SimplifyInstruction(PN, 0, 0, &DT)) {
660 Value *UndefVal = UndefValue::get(SomePHI->getType());
845 for (Value
[all...]
H A DCodeExtractor.cpp139 static bool definedInRegion(const SetVector<BasicBlock *> &Blocks, Value *V) {
149 static bool definedInCaller(const SetVector<BasicBlock *> &Blocks, Value *V) {
173 for (Value::use_iterator UI = II->use_begin(), UE = II->use_end();
312 const Value *value = *i;
359 Value *RewriteVal;
361 Value *Idx[2];
406 static BasicBlock* FindPhiPredForUseInBlock(Value* Used, BasicBlock* BB) {
407 for (Value::use_iterator UI = Used->use_begin(),
425 std::vector<Value*> params, StructValues, ReloadOutputs, Reloads;
464 Value *Id
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DLLVMContextImpl.h42 class Value;
238 virtual void allUsesReplacedWith(Value *VNew);
260 StringMap<Value*> MDStringCache;
298 LeakDetectorImpl<Value> LLVMObjects;
326 /// watching a Value*. The Value::HasValueHandle bit is used to know
328 typedef DenseMap<Value*, ValueHandleBase*> ValueHandlesTy;
/macosx-10.10.1/llvmCore-3425.0.34/unittests/VMCore/
H A DInstructionsTest.cpp175 Value *S0 = BTC0->stripPointerCasts();
176 Value *S1 = BTC1->stripPointerCasts();
177 Value *S2 = BTC2->stripPointerCasts();
178 Value *S3 = BTC3->stripPointerCasts();
238 Value *V1 = Builder.CreateFAdd(I, I, "", MD1);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Bitcode/Reader/
H A DBitcodeReader.cpp215 static bool classof(const Value *V) {
222 //DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
234 void BitcodeReaderValueList::AssignValue(Value *V, unsigned Idx) {
256 Value *PrevVal = OldV;
268 if (Value *V = ValuePtrs[Idx]) {
279 Value *BitcodeReaderValueList::getValueFwdRef(unsigned Idx, Type *Ty) {
283 if (Value *V = ValuePtrs[Idx]) {
292 Value *V = new Argument(Ty);
312 Value *RealVal = operator[](ResolveConstants.back().second);
320 Value
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp140 Liveness SurveyUse(Value::const_use_iterator U, UseVector &MaybeLiveUses,
142 Liveness SurveyUses(const Value *V, UseVector &MaybeLiveUses);
225 std::vector<Value*> Args;
331 Value *Arg = CS.getArgument(ArgNo);
375 DAE::Liveness DAE::SurveyUse(Value::const_use_iterator U,
399 for (Value::const_use_iterator I = IV->use_begin(),
427 // Value passed to a normal call. It's only live when the corresponding
433 // Used in any other way? Value must be live.
443 DAE::Liveness DAE::SurveyUses(const Value *V, UseVector &MaybeLiveUses) {
447 for (Value
[all...]
H A DArgumentPromotion.cpp141 for (Value::use_iterator UI = F->use_begin(), E = F->use_end();
228 for (Value::use_iterator UI = Callee->use_begin(), E = Callee->use_end();
348 Value *V = LI->getPointerOperand();
377 for (Value::use_iterator UI = Arg->use_begin(), E = Arg->use_end();
408 for (Value::use_iterator UI = GEP->use_begin(), E = GEP->use_end();
549 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E;
628 SmallVector<Value*, 16> Args;
655 Value *Idxs[2] = {
659 Value *Idx = GetElementPtrInst::Create(*AI, Idxs,
668 // Store the Value* versio
[all...]
H A DStripSymbols.cpp134 static bool OnlyUsedBy(Value *V, Value *Usr) {
135 for(Value::use_iterator I = V->use_begin(), E = V->use_end(); I != E; ++I) {
167 Value *V = VI->getValue();
306 Value *Arg1 = CI->getArgOperand(0);
307 Value *Arg2 = CI->getArgOperand(1);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_mds/lib/
H A DMDSSession.cpp1556 theAttrs[0].Value = NULL;
1562 theAttrs[1].Value = NULL;
1590 checkOutdatedPlugin(*theAttrs[1].Value, *theAttrs[0].Value,
1599 if(attr->Value[attrDex].Data) {
1600 mSession.free(attr->Value[attrDex].Data);
1603 if(attr->Value) {
1604 mSession.free(attr->Value);
1629 checkOutdatedPlugin(*theAttrs[1].Value,
1630 *theAttrs[0].Value,
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/AsmParser/
H A DLLParser.cpp474 MDNode *FwdNode = MDNode::getTemporary(Context, ArrayRef<Value*>());
522 SmallVector<Value *, 16> Elts;
1199 if (Alignment > Value::MaximumAlignment)
1424 /// ::= Type OptionalAttributes Value OptionalAttributes
1441 Value *V;
1721 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1730 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1778 Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1781 Value *Val = F.getValueSymbolTable().lookup(Name);
1786 std::map<std::string, std::pair<Value*, LocT
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_pkcs12/
H A Dpkcs12Utils.cpp580 predicate.Attribute.Value = &keyLabel;
649 freeCssmMemory(dlDbHand.DLHandle, attr[0].Value->Data);
650 freeCssmMemory(dlDbHand.DLHandle, attr[0].Value);
652 freeCssmMemory(dlDbHand.DLHandle, attr[1].Value->Data);
653 freeCssmMemory(dlDbHand.DLHandle, attr[1].Value);
656 attr[0].Value = keyDigest;
658 attr[1].Value = newPrintName;
695 predicate.Attribute.Value = keyDigest;
785 predicate.Attribute.Value = const_cast<CSSM_DATA_PTR>(&keyLabel);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_pkcs12/lib/
H A Dpkcs12Utils.cpp580 predicate.Attribute.Value = &keyLabel;
649 freeCssmMemory(dlDbHand.DLHandle, attr[0].Value->Data);
650 freeCssmMemory(dlDbHand.DLHandle, attr[0].Value);
652 freeCssmMemory(dlDbHand.DLHandle, attr[1].Value->Data);
653 freeCssmMemory(dlDbHand.DLHandle, attr[1].Value);
656 attr[0].Value = keyDigest;
658 attr[1].Value = newPrintName;
695 predicate.Attribute.Value = keyDigest;
785 predicate.Attribute.Value = const_cast<CSSM_DATA_PTR>(&keyLabel);
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp49 for (Value::const_use_iterator UI = I->use_begin(), E = I->use_end();
124 const Value *Address = DI->getAddress();
227 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
228 EVT ValueVT = ValueVTs[Value];
287 Value *V = PN->getIncomingValue(0);
322 Value *V = PN->getIncomingValue(i);
469 Value *Val = I.getClause(i - 1);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp465 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
467 Value *Count = Builder.CreateLoad(Counter);
472 Value *Sel = Builder.CreateSelect(
476 SmallVector<Value *, 2> Idx;
479 Value *Counter = Builder.CreateInBoundsGEP(Counters, Idx);
480 Value *Count = Builder.CreateLoad(Counter);
509 Value *CounterPtrArray =
560 Value *Counter = builder.CreateConstInBoundsGEP2_64(Counters, 0,
722 Value *Pred = Builder.CreateLoad(Arg, "pred");
723 Value *Con
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DItem.cpp368 string printName = data ? CssmData::overlay(data->Value[0]).toString() : "keychain item";
375 if (data && data->Value[0].Length == 6 && !memcmp("iTools", data->Value[0].Data, 6))
798 attrList->attr[ix].data = dbAttributes.at(ix).Value[0].Data;
799 attrList->attr[ix].length = (UInt32)dbAttributes.at(ix).Value[0].Length;
802 dbAttributes.at(ix).Value[0].Data = NULL;
803 dbAttributes.at(ix).Value[0].Length = 0;
956 attr[ix].data = dbAttributes.at(ix).Value[0].Data;
957 attr[ix].length = (UInt32)dbAttributes.at(ix).Value[0].Length;
960 dbAttributes.at(ix).Value[
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DItem.cpp368 string printName = data ? CssmData::overlay(data->Value[0]).toString() : "keychain item";
375 if (data && data->Value[0].Length == 6 && !memcmp("iTools", data->Value[0].Data, 6))
798 attrList->attr[ix].data = dbAttributes.at(ix).Value[0].Data;
799 attrList->attr[ix].length = (UInt32)dbAttributes.at(ix).Value[0].Length;
802 dbAttributes.at(ix).Value[0].Data = NULL;
803 dbAttributes.at(ix).Value[0].Length = 0;
956 attr[ix].data = dbAttributes.at(ix).Value[0].Data;
957 attr[ix].length = (UInt32)dbAttributes.at(ix).Value[0].Length;
960 dbAttributes.at(ix).Value[
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DItem.cpp368 string printName = data ? CssmData::overlay(data->Value[0]).toString() : "keychain item";
375 if (data && data->Value[0].Length == 6 && !memcmp("iTools", data->Value[0].Data, 6))
798 attrList->attr[ix].data = dbAttributes.at(ix).Value[0].Data;
799 attrList->attr[ix].length = (UInt32)dbAttributes.at(ix).Value[0].Length;
802 dbAttributes.at(ix).Value[0].Data = NULL;
803 dbAttributes.at(ix).Value[0].Length = 0;
956 attr[ix].data = dbAttributes.at(ix).Value[0].Data;
957 attr[ix].length = (UInt32)dbAttributes.at(ix).Value[0].Length;
960 dbAttributes.at(ix).Value[
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DSelectionDAGNodes.h45 class Value;
342 /// NumOperands/NumValues - The number of entries in the Operand/Value list.
492 bool hasNUsesOfValue(unsigned NUses, unsigned Value) const;
496 bool hasAnyUseOfValue(unsigned Value) const;
940 const Value *getSrcValue() const { return MMO->getValue(); }
1023 // SrcVal: address to update as a Value (used for MemOperand)
1153 const ConstantInt *Value; member in class:llvm::SDNode::ConstantSDNode
1157 DebugLoc(), getSDVTList(VT)), Value(val) {
1161 const ConstantInt *getConstantIntValue() const { return Value; }
1162 const APInt &getAPIntValue() const { return Value
1178 const ConstantFP *Value; member in class:llvm::SDNode::ConstantFPSDNode
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp216 if (CallSite InstCS = cast<Value>(Inst)) {
256 const Value *&MemLocBase,
281 getLoadLoadClobberFullWidthSize(const Value *MemLocBase, int64_t MemLocOffs,
289 const Value *LIBase =
353 const Value *MemLocBase = 0;
484 const Value *AccessPtr = GetUnderlyingObject(MemLoc.Ptr, TD);
757 PHITransAddr Address(const_cast<Value *>(Loc.Ptr), TD);
763 DenseMap<BasicBlock*, Value*> Visited;
770 const_cast<Value *>(Loc.Ptr)));
896 DenseMap<BasicBlock*, Value*>
[all...]

Completed in 210 milliseconds

<<11121314151617181920>>