Searched defs:Result (Results 176 - 200 of 342) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/ADT/
H A DValueMap.h302 ValueTypeProxy Result = {I->first.Unwrap(), I->second}; local
303 return Result;
352 ValueTypeProxy Result = {I->first.Unwrap(), I->second}; local
353 return Result;
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h225 SmallVectorImpl<std::pair<SDValue, SDNode*> > &Result) {
223 CheckComplexPattern(SDNode *Root, SDNode *Parent, SDValue N, unsigned PatternNo, SmallVectorImpl<std::pair<SDValue, SDNode*> > &Result) argument
/external/llvm/lib/Analysis/
H A DLint.cpp240 AliasAnalysis::AliasResult Result = AA->alias(*AI, *BI); local
241 Assert1(Result != AliasAnalysis::MustAlias &&
242 Result != AliasAnalysis::PartialAlias,
H A DMemoryBuiltins.cpp571 SizeOffsetEvalType Result = compute_(V); local
573 if (!bothKnown(Result)) {
586 return Result;
614 SizeOffsetEvalType Result; local
616 Result = visitGEPOperator(*GEP);
618 Result = visit(*I);
624 Result = unknown();
628 Result = unknown();
635 CacheMap[V] = Result;
636 return Result;
[all...]
H A DMemoryDependenceAnalysis.cpp752 SmallVectorImpl<NonLocalDepResult> &Result) {
755 Result.clear();
765 Result, Visited, true))
767 Result.clear();
768 Result.push_back(NonLocalDepResult(FromBB,
895 SmallVectorImpl<NonLocalDepResult> &Result,
934 isLoad, StartBB, Result, Visited,
953 isLoad, StartBB, Result, Visited,
987 Result.push_back(NonLocalDepResult(I->getBB(), I->getResult(), Addr));
1033 Result
750 getNonLocalPointerDependency(const AliasAnalysis::Location &Loc, bool isLoad, BasicBlock *FromBB, SmallVectorImpl<NonLocalDepResult> &Result) argument
892 getNonLocalPointerDepFromBB(const PHITransAddr &Pointer, const AliasAnalysis::Location &Loc, bool isLoad, BasicBlock *StartBB, SmallVectorImpl<NonLocalDepResult> &Result, DenseMap<BasicBlock*, Value*> &Visited, bool SkipFirstBlock) argument
[all...]
/external/llvm/lib/AsmParser/
H A DLLParser.h168 bool ParseStringConstant(std::string &Result);
218 bool ParseMDString(MDString *&Result);
219 bool ParseMDNodeID(MDNode *&Result);
220 bool ParseMDNodeID(MDNode *&Result, unsigned &SlotNo);
223 bool ParseType(Type *&Result, bool AllowVoid = false);
224 bool ParseType(Type *&Result, LocTy &Loc, bool AllowVoid = false) { argument
226 return ParseType(Result, AllowVoid);
228 bool ParseAnonStructType(Type *&Result, bool Packed);
234 bool ParseArrayVectorType(Type *&Result, bool isVector);
235 bool ParseFunctionType(Type *&Result);
[all...]
/external/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp253 std::string Result; local
254 raw_string_ostream OS(Result);
258 return Result;
265 std::string Result; local
266 raw_string_ostream OS(Result);
269 return Result;
H A DMachineModuleInfo.cpp94 std::vector<MCSymbol*> &Result);
120 MCSymbol *Result = Context.CreateTempSymbol(); local
121 Entry.Symbols = Result;
122 return Result;
131 std::vector<MCSymbol*> Result; local
135 Result.push_back(getAddrLabelSymbol(BB));
137 Result.push_back(Sym);
139 Result = *Entry.Symbols.get<std::vector<MCSymbol*>*>();
140 return Result;
147 takeDeletedSymbolsForFunction(Function *F, std::vector<MCSymbol*> &Result) { argument
366 takeDeletedSymbolsForFunction(const Function *F, std::vector<MCSymbol*> &Result) argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp282 SDValue Result = local
287 return Result;
289 SDValue Result = local
293 return Result;
315 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val); local
316 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
318 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result); local
379 SDValue Result = local
382 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result); local
412 SDValue Result = local
414 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result); local
438 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad); local
554 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount); local
737 SDValue Result = local
741 ReplaceNode(SDValue(Node, 0), Result); local
760 SDValue Result = local
763 ReplaceNode(SDValue(Node, 0), Result); local
817 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi); local
818 ReplaceNode(SDValue(Node, 0), Result); local
846 SDValue Result = local
849 ReplaceNode(SDValue(Node, 0), Result); local
[all...]
H A DLegalizeTypes.cpp410 dbgs() << "Result type " << i << " illegal!\n";
729 void DAGTypeLegalizer::SetPromotedInteger(SDValue Op, SDValue Result) { argument
730 assert(Result.getValueType() ==
733 AnalyzeNewValue(Result);
737 OpEntry = Result;
740 void DAGTypeLegalizer::SetSoftenedFloat(SDValue Op, SDValue Result) { argument
741 assert(Result.getValueType() ==
744 AnalyzeNewValue(Result);
748 OpEntry = Result;
751 void DAGTypeLegalizer::SetScalarizedVector(SDValue Op, SDValue Result) { argument
848 SetWidenedVector(SDValue Op, SDValue Result) argument
[all...]
H A DLegalizeVectorOps.cpp56 SDValue TranslateLegalizeResults(SDValue Op, SDValue Result);
110 SDValue VectorLegalizer::TranslateLegalizeResults(SDValue Op, SDValue Result) { argument
113 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
114 return Result.getValue(Op.getResNo());
130 SDValue Result = local
138 return TranslateLegalizeResults(Op, Result);
150 return TranslateLegalizeResults(Op, Result);
153 return LegalizeOp(TLI.LowerOperation(Result, DAG));
166 return TranslateLegalizeResults(Op, Result);
171 return TranslateLegalizeResults(Op, Result);
[all...]
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp552 GenericValue Result = runFunction(Stub, std::vector<GenericValue>()); local
556 return Result;
/external/llvm/lib/Target/
H A DTargetData.cpp129 int Result = 0; local
130 R.getAsInteger(10, Result);
131 return Result;
441 std::string Result; local
442 raw_string_ostream OS(Result);
601 uint64_t Result = 0; local
617 Result += Layout->getElementOffset(FieldNo);
627 Result += (uint64_t)arrayIdx * getTypeAllocSize(Ty);
631 return Result;
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp398 Liveness Result = MaybeLive; local
401 Result = SurveyUse(I, MaybeLiveUses, RetValNum);
402 if (Result == Live)
405 return Result;
445 Liveness Result = MaybeLive; local
449 Result = SurveyUse(I, MaybeLiveUses);
450 if (Result == Live)
453 return Result;
563 Liveness Result = SurveyUses(AI, MaybeLiveArgUses); local
565 MarkValue(CreateArg(&F, i), Result, MaybeLiveArgUse local
[all...]
H A DMergeFunctions.cpp812 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF); local
813 if (Result.second) {
818 const ComparableFunction &OldF = *Result.first;
/external/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp71 SetVector<BasicBlock *> Result; local
78 if (!Result.insert(*I))
82 Result.clear();
83 return Result;
88 for (SetVector<BasicBlock *>::iterator I = llvm::next(Result.begin()),
89 E = Result.end();
93 assert(Result.count(*PI) &&
98 return Result;
/external/llvm/lib/VMCore/
H A DConstantsContext.h223 GetElementPtrConstantExpr *Result = local
225 Result->SubclassOptionalData = Flags;
226 return Result;
581 ConstantClass* Result = local
584 assert(Result->getType() == Ty && "Type specified is not correct!");
585 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
588 InverseMap.insert(std::make_pair(Result, I));
590 return Result;
598 ConstantClass* Result = 0; local
603 Result
720 ConstantClass* Result = local
734 ConstantClass* Result = 0; local
[all...]
/external/llvm/tools/bugpoint/
H A DMiscompilation.cpp970 bool Result = BD.diffProgram(BD.getProgram(), TestModuleBC.str(), local
975 if (Result)
980 return Result;
988 std::string Result = executeProgramSafely(Program, "bugpoint.safe.out", local
998 << Result << "'.\n";
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h286 /// Result - The result instruction.
287 DagInit *Result; member in class:llvm::CodeGenInstAlias
290 /// Result).
333 bool tryAliasOpMatch(DagInit *Result, unsigned AliasOpNo,
H A DIntrinsicEmitter.cpp158 std::string Result = "return " + TargetPrefix + "Intrinsic::" + local
162 MatchTable.push_back(std::make_pair(Ints[IntNo].Name.substr(6),Result));
170 << Result << '\n'; local
403 unsigned Result = 0; local
410 Result = (Result << 4) | TypeSig[e-i-1];
414 if (!Failed && (Result >> 31) == 0) {
415 FixedEncodings.push_back(Result);
/external/llvm/utils/yaml2obj/
H A Dyaml2obj.cpp43 getAs(const llvm::yaml::ScalarNode *SN, T &Result) { argument
46 if (Value.getAsInteger(0, Result))
/external/clang/lib/Basic/
H A DDiagnosticIDs.cpp173 std::pair<iterator, bool> Result = DiagMap.insert( local
177 if (Result.second)
178 Result.first->second = GetDefaultDiagMappingInfo(Diag);
180 return Result.first->second;
377 DiagnosticIDs::Level Result = DiagnosticIDs::Fatal; local
389 Result = DiagnosticIDs::Ignored;
392 Result = DiagnosticIDs::Warning;
395 Result = DiagnosticIDs::Error;
398 Result = DiagnosticIDs::Fatal;
403 if (Diag.EnableAllWarnings && Result
[all...]
/external/clang/lib/Lex/
H A DHeaderSearch.cpp113 SmallString<256> Result(ModuleCachePath);
114 llvm::sys::path::append(Result, Module->getTopLevelModule()->Name + ".pcm");
115 return Result.str().str();
124 SmallString<256> Result(ModuleCachePath);
125 llvm::sys::path::append(Result, ModuleName + ".pcm");
126 return Result.str().str();
248 const FileEntry * const Result = getHeaderMap()->LookupFile( local
250 if (Result) {
261 return Result;
559 const FileEntry *Result local
929 Module *Result = ModMap.inferFrameworkModule(SubmodulePath.back(), local
[all...]
H A DPPMacroExpansion.cpp1024 const char *Result; local
1028 Result = asctime(TM);
1030 Result = "??? ??? ?? ??:??:?? ????\n";
1033 OS << '"' << StringRef(Result, strlen(Result)-1) << '"';
H A DPreprocessor.cpp612 void Preprocessor::LexAfterModuleImport(Token &Result) { argument
617 Lex(Result);
625 if (ModuleImportExpectsIdentifier && Result.getKind() == tok::identifier) {
628 ModuleImportPath.push_back(std::make_pair(Result.getIdentifierInfo(),
629 Result.getLocation()));
637 if (!ModuleImportExpectsIdentifier && Result.getKind() == tok::period) {

Completed in 847 milliseconds

1234567891011>>