/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
FastISel.cpp | 73 I = FuncInfo.MBB->begin(), E = FuncInfo.MBB->end(); 130 DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V); 131 if (I != FuncInfo.ValueMap.end()) 142 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V)))) 143 return FuncInfo.InitializeRegForValue(V); 208 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, 231 DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V); 232 if (I != FuncInfo.ValueMap.end() [all...] |
SelectionDAGISel.cpp | 194 FuncInfo(new FunctionLoweringInfo(TLI)), 196 SDB(new SelectionDAGBuilder(*CurDAG, *FuncInfo, OL)), 208 delete FuncInfo; 280 FuncInfo->set(Fn, *MF); 283 FuncInfo->BPI = &getAnalysis<BranchProbabilityInfo>(); 285 FuncInfo->BPI = 0; 298 if (!FuncInfo->ArgDbgValues.empty()) 305 for (unsigned i = 0, e = FuncInfo->ArgDbgValues.size(); i != e; ++i) { 306 MachineInstr *MI = FuncInfo->ArgDbgValues[e-i-1]; 383 I = FuncInfo->RegFixups.begin(), E = FuncInfo->RegFixups.end() [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
FastISel.cpp | 101 // Instructions are appended to FuncInfo.MBB. If the basic block already 105 if (!FuncInfo.MBB->empty()) 106 EmitStartPt = &FuncInfo.MBB->back(); 111 if (!FuncInfo.CanLowerReturn) 120 for (Function::const_arg_iterator I = FuncInfo.Fn->arg_begin(), 121 E = FuncInfo.Fn->arg_end(); 125 FuncInfo.ValueMap[&*I] = VI->second; 134 SavedInsertPt = FuncInfo.InsertPt; 197 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V)))) 198 return FuncInfo.InitializeRegForValue(V) [all...] |
SelectionDAGISel.cpp | 357 FuncInfo(new FunctionLoweringInfo()), 359 SDB(new SelectionDAGBuilder(*CurDAG, *FuncInfo, OL)), 374 delete FuncInfo; 462 FuncInfo->set(Fn, *MF, CurDAG); 465 FuncInfo->BPI = &getAnalysis<BranchProbabilityInfoWrapperPass>().getBPI(); 467 FuncInfo->BPI = nullptr; 473 FuncInfo->SplitCSR = false; 478 FuncInfo->SplitCSR = true; 490 FuncInfo->SplitCSR = false; 496 if (FuncInfo->SplitCSR [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
ARMFastISel.cpp | 97 explicit ARMFastISel(FunctionLoweringInfo &funcInfo) 98 : FastISel(funcInfo), 99 TM(funcInfo.MF->getTarget()), 103 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>(); 105 Context = &funcInfo.Fn->getContext(); 283 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)); 294 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg) 297 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II [all...] |
/external/llvm/lib/Target/X86/ |
X86FastISel.cpp | 61 explicit X86FastISel(FunctionLoweringInfo &funcInfo, 63 : FastISel(funcInfo, libInfo) { 64 Subtarget = &funcInfo.MF->getSubtarget<X86Subtarget>(); 490 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg); 493 MIB->addMemOperand(*FuncInfo.MF, MMO); 517 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 641 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, Desc) [all...] |
/external/llvm/lib/Target/WebAssembly/ |
WebAssemblyFastISel.cpp | 165 WebAssemblyFastISel(FunctionLoweringInfo &FuncInfo, 167 : FastISel(FuncInfo, LibInfo, /*SkipTargetIndependentISel=*/true) { 168 Subtarget = &FuncInfo.MF->getSubtarget<WebAssemblySubtarget>(); 169 Context = &FuncInfo.Fn->getContext(); 186 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || 187 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) { 280 FuncInfo.StaticAllocaMap.find(AI); 281 if (SI != FuncInfo.StaticAllocaMap.end()) { 334 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), Reg [all...] |
/external/llvm/lib/CodeGen/ |
WinEHPrepare.cpp | 121 static int addUnwindMapEntry(WinEHFuncInfo &FuncInfo, int ToState, 126 FuncInfo.CxxUnwindMap.push_back(UME); 127 return FuncInfo.getLastStateNumber(); 130 static void addTryBlockMapEntry(WinEHFuncInfo &FuncInfo, int TryLow, 154 FuncInfo.TryBlockMap.push_back(TBME); 165 WinEHFuncInfo &FuncInfo) { 193 auto BaseStateI = FuncInfo.FuncletBaseStateMap.find(FuncletPad); 194 if (BaseStateI != FuncInfo.FuncletBaseStateMap.end()) 199 FuncInfo.InvokeStateMap[II] = BaseState; 202 assert(FuncInfo.EHPadStateMap.count(PadInst) && "EH Pad has no state!") [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCFastISel.cpp | 97 explicit PPCFastISel(FunctionLoweringInfo &FuncInfo, 99 : FastISel(FuncInfo, LibInfo), TM(FuncInfo.MF->getTarget()), 100 PPCSubTarget(&FuncInfo.MF->getSubtarget<PPCSubtarget>()), 101 PPCFuncInfo(FuncInfo.MF->getInfo<PPCFunctionInfo>()), 104 Context(&FuncInfo.Fn->getContext()) {} 313 return FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB; 324 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || 325 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) [all...] |
/external/llvm/lib/Target/ARM/ |
ARMFastISel.cpp | 89 explicit ARMFastISel(FunctionLoweringInfo &funcInfo, 91 : FastISel(funcInfo, libInfo), 93 &static_cast<const ARMSubtarget &>(funcInfo.MF->getSubtarget())), 94 M(const_cast<Module &>(*funcInfo.Fn->getParent())), 95 TM(funcInfo.MF->getTarget()), TII(*Subtarget->getInstrInfo()), 97 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>(); 99 Context = &funcInfo.Fn->getContext(); 288 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, 291 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
X86FastISel.cpp | 60 explicit X86FastISel(FunctionLoweringInfo &funcInfo) : FastISel(funcInfo) { 225 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, 244 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, 263 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, 292 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt [all...] |
/build/kati/ |
func.h | 26 struct FuncInfo { 40 FuncInfo* GetFuncInfo(StringPiece name);
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
WinException.cpp | 302 const WinEHFuncInfo &FuncInfo) { 318 assert(FuncInfo.EHRegNodeEndOffset != INT_MAX); 320 Offset += FuncInfo.EHRegNodeEndOffset; 517 const WinEHFuncInfo &FuncInfo = *MF->getWinEHFuncInfo(); 532 MCConstantExpr::create(FuncInfo.SEHSetFrameOffset, Ctx); 565 InvokeStateChangeIterator::range(FuncInfo, MF->begin(), Stop)) { 569 emitSEHActionsForRange(FuncInfo, LastStartLabel, 578 void WinException::emitSEHActionsForRange(const WinEHFuncInfo &FuncInfo, 592 const SEHUnwindMapEntry &UME = FuncInfo.SEHUnwindMap[State]; 625 const WinEHFuncInfo &FuncInfo = *MF->getWinEHFuncInfo() [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64FastISel.cpp | 247 explicit AArch64FastISel(FunctionLoweringInfo &FuncInfo, 249 : FastISel(FuncInfo, LibInfo, /*SkipTargetIndependentISel=*/true) { 251 &static_cast<const AArch64Subtarget &>(FuncInfo.MF->getSubtarget()); 252 Context = &FuncInfo.Fn->getContext(); 316 if (!FuncInfo.StaticAllocaMap.count(AI)) 320 FuncInfo.StaticAllocaMap.find(AI); 322 if (SI != FuncInfo.StaticAllocaMap.end()) { 324 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::ADDXri), 347 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY) [all...] |
/external/v8/tools/ |
tickprocessor.js | 580 function addEntry(funcInfo) { 585 prevEntry.start < funcInfo.start && 586 prevEntry.start >= libStart && funcInfo.start <= libEnd) { 587 processorFunc(prevEntry.name, prevEntry.start, funcInfo.start); 589 if (funcInfo.end && 590 (!prevEntry || prevEntry.start != funcInfo.start) && 591 funcInfo.start >= libStart && funcInfo.end <= libEnd) { 592 processorFunc(funcInfo.name, funcInfo.start, funcInfo.end) [all...] |
/external/llvm/include/llvm/CodeGen/ |
WinEHFuncInfo.h | 122 WinEHFuncInfo &FuncInfo); 125 WinEHFuncInfo &FuncInfo); 127 void calculateClrEHStateNumbers(const Function *Fn, WinEHFuncInfo &FuncInfo);
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/ |
WinEHFuncInfo.h | 122 WinEHFuncInfo &FuncInfo); 125 WinEHFuncInfo &FuncInfo); 127 void calculateClrEHStateNumbers(const Function *Fn, WinEHFuncInfo &FuncInfo);
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/ |
WinEHFuncInfo.h | 122 WinEHFuncInfo &FuncInfo); 125 WinEHFuncInfo &FuncInfo); 127 void calculateClrEHStateNumbers(const Function *Fn, WinEHFuncInfo &FuncInfo);
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/ |
WinEHFuncInfo.h | 122 WinEHFuncInfo &FuncInfo); 125 WinEHFuncInfo &FuncInfo); 127 void calculateClrEHStateNumbers(const Function *Fn, WinEHFuncInfo &FuncInfo);
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/ |
WinEHFuncInfo.h | 122 WinEHFuncInfo &FuncInfo); 125 WinEHFuncInfo &FuncInfo); 127 void calculateClrEHStateNumbers(const Function *Fn, WinEHFuncInfo &FuncInfo);
|
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/ |
WinEHFuncInfo.h | 122 WinEHFuncInfo &FuncInfo); 125 WinEHFuncInfo &FuncInfo); 127 void calculateClrEHStateNumbers(const Function *Fn, WinEHFuncInfo &FuncInfo);
|
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/ |
WinEHFuncInfo.h | 122 WinEHFuncInfo &FuncInfo); 125 WinEHFuncInfo &FuncInfo); 127 void calculateClrEHStateNumbers(const Function *Fn, WinEHFuncInfo &FuncInfo);
|
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/ |
WinEHFuncInfo.h | 122 WinEHFuncInfo &FuncInfo); 125 WinEHFuncInfo &FuncInfo); 127 void calculateClrEHStateNumbers(const Function *Fn, WinEHFuncInfo &FuncInfo);
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/ |
WinEHFuncInfo.h | 122 WinEHFuncInfo &FuncInfo); 125 WinEHFuncInfo &FuncInfo); 127 void calculateClrEHStateNumbers(const Function *Fn, WinEHFuncInfo &FuncInfo);
|
/external/llvm/lib/Target/Mips/ |
MipsFastISel.cpp | 163 return BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc)); 166 return BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), 201 explicit MipsFastISel(FunctionLoweringInfo &funcInfo, 203 : FastISel(funcInfo, libInfo), TM(funcInfo.MF->getTarget()), 204 Subtarget(&funcInfo.MF->getSubtarget<MipsSubtarget>()), 206 MFI = funcInfo.MF->getInfo<MipsFunctionInfo>(); 207 Context = &funcInfo.Fn->getContext() [all...] |