Home
last modified time | relevance | path

Searched refs:AFI (Results 1 – 25 of 123) sorted by relevance

12345

/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMFrameLowering.cpp125 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in emitPrologue() local
130 assert(!AFI->isThumb1OnlyFunction() && in emitPrologue()
132 bool isARM = !AFI->isThumbFunction(); in emitPrologue()
133 unsigned VARegSaveSize = AFI->getVarArgsRegSaveSize(); in emitPrologue()
153 if (!AFI->hasStackFrame()) { in emitPrologue()
171 AFI->addGPRCalleeSavedArea1Frame(FI); in emitPrologue()
181 AFI->addGPRCalleeSavedArea2Frame(FI); in emitPrologue()
184 AFI->addGPRCalleeSavedArea1Frame(FI); in emitPrologue()
189 AFI->addDPRCalleeSavedAreaFrame(FI); in emitPrologue()
204 unsigned ADDriOpc = !AFI->isThumbFunction() ? ARM::ADDri : ARM::t2ADDri; in emitPrologue()
[all …]
DThumb1FrameLowering.cpp51 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in emitPrologue() local
57 unsigned VARegSaveSize = AFI->getVarArgsRegSaveSize(); in emitPrologue()
77 if (!AFI->hasStackFrame()) { in emitPrologue()
95 AFI->addGPRCalleeSavedArea1Frame(FI); in emitPrologue()
105 AFI->addGPRCalleeSavedArea2Frame(FI); in emitPrologue()
108 AFI->addGPRCalleeSavedArea1Frame(FI); in emitPrologue()
113 AFI->addDPRCalleeSavedAreaFrame(FI); in emitPrologue()
128 AFI->setFramePtrSpillOffset(MFI->getObjectOffset(FramePtrSpillFI) + NumBytes); in emitPrologue()
129 AFI->setGPRCalleeSavedArea1Offset(GPRCS1Offset); in emitPrologue()
130 AFI->setGPRCalleeSavedArea2Offset(GPRCS2Offset); in emitPrologue()
[all …]
DARMBaseRegisterInfo.cpp612 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in hasBasePointer() local
625 if (AFI->isThumbFunction() && MFI->hasVarSizedObjects()) { in hasBasePointer()
632 if (AFI->isThumb2Function() && MFI->getLocalFrameSize() < 128) in hasBasePointer()
642 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in canRealignStack() local
647 return (RealignStack && !AFI->isThumb1OnlyFunction() && in canRealignStack()
866 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in eliminateCallFramePseudoInstr() local
867 assert(!AFI->isThumb1OnlyFunction() && in eliminateCallFramePseudoInstr()
869 bool isARM = !AFI->isThumbFunction(); in eliminateCallFramePseudoInstr()
985 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in needsFrameBaseReg() local
993 if (!AFI->isThumbFunction() || !AFI->isThumb1OnlyFunction()) in needsFrameBaseReg()
[all …]
DARMJITInfo.h107 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in Initialize() local
108 ConstPoolId2AddrMap.resize(AFI->getNumPICLabels()); in Initialize()
109 JumpTableId2AddrMap.resize(AFI->getNumJumpTables()); in Initialize()
DThumb2ITBlockPass.cpp34 ARMFunctionInfo *AFI; member in __anon8281d83d0111::Thumb2ITBlockPass
249 AFI = Fn.getInfo<ARMFunctionInfo>(); in runOnMachineFunction()
253 if (!AFI->isThumbFunction()) in runOnMachineFunction()
264 AFI->setHasITBlocks(true); in runOnMachineFunction()
/external/llvm/lib/Target/ARM/
DARMFrameLowering.cpp232 static void emitAligningInstructions(MachineFunction &MF, ARMFunctionInfo *AFI, in emitAligningInstructions() argument
244 assert(!AFI->isThumb1OnlyFunction() && "Thumb1 not supported"); in emitAligningInstructions()
245 if (!AFI->isThumbFunction()) { in emitAligningInstructions()
292 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in emitPrologue() local
299 assert(!AFI->isThumb1OnlyFunction() && in emitPrologue()
301 bool isARM = !AFI->isThumbFunction(); in emitPrologue()
303 unsigned ArgRegsSaveSize = AFI->getArgRegsSaveSize(); in emitPrologue()
334 if (!AFI->hasStackFrame() && in emitPrologue()
378 if (Reg < ARM::D8 || Reg >= ARM::D8 + AFI->getNumAlignedDPRCS2Regs()) in emitPrologue()
400 AFI->setFramePtrSpillOffset(MFI->getObjectOffset(FramePtrSpillFI) + in emitPrologue()
[all …]
DThumb1FrameLowering.cpp89 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in emitPrologue() local
97 unsigned ArgRegsSaveSize = AFI->getArgRegsSaveSize(); in emitPrologue()
131 if (!AFI->hasStackFrame()) { in emitPrologue()
182 AFI->setFramePtrSpillOffset(MFI->getObjectOffset(FramePtrSpillFI) + in emitPrologue()
184 AFI->setGPRCalleeSavedArea1Offset(GPRCS1Offset); in emitPrologue()
185 AFI->setGPRCalleeSavedArea2Offset(GPRCS2Offset); in emitPrologue()
186 AFI->setDPRCalleeSavedAreaOffset(DPRCSOffset); in emitPrologue()
261 AFI->setShouldRestoreSPFromFP(true); in emitPrologue()
280 AFI->getFramePtrSpillOffset()); in emitPrologue()
282 AFI->setGPRCalleeSavedArea1Size(GPRCS1Size); in emitPrologue()
[all …]
DARMBaseRegisterInfo.cpp336 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in hasBasePointer() local
350 if (AFI->isThumbFunction() && MFI->hasVarSizedObjects()) { in hasBasePointer()
357 if (AFI->isThumb2Function() && MFI->getLocalFrameSize() < 128) in hasBasePointer()
367 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in canRealignStack() local
375 if (AFI->isThumb1OnlyFunction()) in canRealignStack()
540 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in needsFrameBaseReg() local
548 if (!AFI->isThumbFunction() || !AFI->isThumb1OnlyFunction()) in needsFrameBaseReg()
588 ARMFunctionInfo *AFI = MBB->getParent()->getInfo<ARMFunctionInfo>(); in materializeFrameBaseRegister() local
589 unsigned ADDriOpc = !AFI->isThumbFunction() ? ARM::ADDri : in materializeFrameBaseRegister()
590 (AFI->isThumb1OnlyFunction() ? ARM::tADDframe : ARM::t2ADDri); in materializeFrameBaseRegister()
[all …]
DThumb2ITBlockPass.cpp35 ARMFunctionInfo *AFI; member in __anon1acf50110111::Thumb2ITBlockPass
279 AFI = Fn.getInfo<ARMFunctionInfo>(); in runOnMachineFunction()
284 if (!AFI->isThumbFunction()) in runOnMachineFunction()
295 AFI->setHasITBlocks(true); in runOnMachineFunction()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMFrameLowering.cpp280 static void emitAligningInstructions(MachineFunction &MF, ARMFunctionInfo *AFI, in emitAligningInstructions() argument
292 assert(!AFI->isThumb1OnlyFunction() && "Thumb1 not supported"); in emitAligningInstructions()
293 if (!AFI->isThumbFunction()) { in emitAligningInstructions()
347 static int getMaxFPOffset(const Function &F, const ARMFunctionInfo &AFI) { in getMaxFPOffset() argument
350 return -AFI.getArgRegsSaveSize() - (8 * 4); in getMaxFPOffset()
357 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in emitPrologue() local
364 assert(!AFI->isThumb1OnlyFunction() && in emitPrologue()
366 bool isARM = !AFI->isThumbFunction(); in emitPrologue()
368 unsigned ArgRegsSaveSize = AFI->getArgRegsSaveSize(); in emitPrologue()
399 if (!AFI->hasStackFrame() && in emitPrologue()
[all …]
DARMBaseRegisterInfo.cpp364 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in hasBasePointer() local
378 if (AFI->isThumbFunction() && MFI.hasVarSizedObjects()) { in hasBasePointer()
385 if (AFI->isThumb2Function() && MFI.getLocalFrameSize() < 128) in hasBasePointer()
562 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in needsFrameBaseReg() local
570 if (!AFI->isThumbFunction() || !AFI->isThumb1OnlyFunction()) in needsFrameBaseReg()
610 ARMFunctionInfo *AFI = MBB->getParent()->getInfo<ARMFunctionInfo>(); in materializeFrameBaseRegister() local
611 unsigned ADDriOpc = !AFI->isThumbFunction() ? ARM::ADDri : in materializeFrameBaseRegister()
612 (AFI->isThumb1OnlyFunction() ? ARM::tADDframe : ARM::t2ADDri); in materializeFrameBaseRegister()
628 if (!AFI->isThumb1OnlyFunction()) in materializeFrameBaseRegister()
638 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in resolveFrameIndex() local
[all …]
DThumb1FrameLowering.cpp113 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); in emitPrologue() local
121 unsigned ArgRegsSaveSize = AFI->getArgRegsSaveSize(); in emitPrologue()
155 if (!AFI->hasStackFrame()) { in emitPrologue()
206 AFI->setFramePtrSpillOffset(MFI.getObjectOffset(FramePtrSpillFI) + in emitPrologue()
208 AFI->setGPRCalleeSavedArea1Offset(GPRCS1Offset); in emitPrologue()
209 AFI->setGPRCalleeSavedArea2Offset(GPRCS2Offset); in emitPrologue()
210 AFI->setDPRCalleeSavedAreaOffset(DPRCSOffset); in emitPrologue()
288 AFI->setShouldRestoreSPFromFP(true); in emitPrologue()
349 AFI->getFramePtrSpillOffset()); in emitPrologue()
351 AFI->setGPRCalleeSavedArea1Size(GPRCS1Size); in emitPrologue()
[all …]
DThumb2ITBlockPass.cpp48 ARMFunctionInfo *AFI; member in __anonf45c7f690111::Thumb2ITBlockPass
296 AFI = Fn.getInfo<ARMFunctionInfo>(); in runOnMachineFunction()
301 if (!AFI->isThumbFunction()) in runOnMachineFunction()
312 AFI->setHasITBlocks(true); in runOnMachineFunction()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64FrameLowering.cpp193 const AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>(); in canUseRedZone() local
194 unsigned NumBytes = AFI->getLocalStackSize(); in canUseRedZone()
383 AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>(); in shouldCombineCSRLocalStackBump() local
388 if (AFI->getLocalStackSize() == 0) in shouldCombineCSRLocalStackBump()
558 AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>(); in emitPrologue() local
565 AFI->setHasRedZone(false); in emitPrologue()
577 if (!AFI->hasStackFrame() && !windowsRequiresStackProbe(MF, NumBytes)) { in emitPrologue()
581 AFI->setLocalStackSize(NumBytes); in emitPrologue()
588 AFI->setHasRedZone(true); in emitPrologue()
608 unsigned FixedObject = IsWin64 ? alignTo(AFI->getVarArgsGPRSize(), 16) : 0; in emitPrologue()
[all …]
DAArch64CollectLOH.cpp380 static void handleADRP(const MachineInstr &MI, AArch64FunctionInfo &AFI, in handleADRP() argument
385 AFI.addLOHDirective(MCLOH_AdrpAdrp, {&MI, Info.LastADRP}); in handleADRP()
395 AFI.addLOHDirective(MCLOH_AdrpAdd, {&MI, Info.MI0}); in handleADRP()
402 AFI.addLOHDirective(MCLOH_AdrpLdr, {&MI, Info.MI0}); in handleADRP()
410 AFI.addLOHDirective(MCLOH_AdrpAddLdr, {&MI, Info.MI1, Info.MI0}); in handleADRP()
418 AFI.addLOHDirective(MCLOH_AdrpAddStr, {&MI, Info.MI1, Info.MI0}); in handleADRP()
426 AFI.addLOHDirective(MCLOH_AdrpLdrGotLdr, {&MI, Info.MI1, Info.MI0}); in handleADRP()
433 AFI.addLOHDirective(MCLOH_AdrpLdrGotStr, {&MI, Info.MI1, Info.MI0}); in handleADRP()
439 AFI.addLOHDirective(MCLOH_AdrpLdrGot, {&MI, Info.MI0}); in handleADRP()
496 AArch64FunctionInfo &AFI = *MF.getInfo<AArch64FunctionInfo>(); in runOnMachineFunction() local
[all …]
/external/llvm/lib/Target/AArch64/
DAArch64FrameLowering.cpp128 const AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>(); in canUseRedZone() local
129 unsigned NumBytes = AFI->getLocalStackSize(); in canUseRedZone()
288 AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>(); in shouldCombineCSRLocalStackBump() local
293 if (AFI->getLocalStackSize() == 0) in shouldCombineCSRLocalStackBump()
416 AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>(); in emitPrologue() local
430 if (!AFI->hasStackFrame()) { in emitPrologue()
434 AFI->setLocalStackSize(NumBytes); in emitPrologue()
458 auto CSStackSize = AFI->getCalleeSavedStackSize(); in emitPrologue()
460 AFI->setLocalStackSize(NumBytes - CSStackSize); in emitPrologue()
480 fixupCalleeSaveRestoreStackOffset(*MBBI, AFI->getLocalStackSize()); in emitPrologue()
[all …]
/external/tcpdump/tests/
Dripv2_auth.out5 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
10 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
15 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
22 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
29 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
37 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
45 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
53 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
61 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
70 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
[all …]
Dbgp-aigp-oobr-nossl.out20 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
43 AFI: Unknown AFI (64769), SAFI: labeled VPN Unicast (128)
44 no AFI 64769 / SAFI 128 decoder
63 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
108 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
131 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
160 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
199 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
222 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
251 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
[all …]
Dbgp-aigp-oobr-ssl.out20 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
43 AFI: Unknown AFI (64769), SAFI: labeled VPN Unicast (128)
44 no AFI 64769 / SAFI 128 decoder
63 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
108 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
131 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
160 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
199 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
222 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
251 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
[all …]
Dripv1v2.out4 AFI 0, 0.0.0.0, metric: 16
12 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
16 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
Dlldp_mudurl-v.out14 Management Address length 5, AFI IPv4 (1): 62.12.173.114
17 Management Address length 17, AFI IPv6 (2): 2001:8a8:1006:4:223:54ff:fec2:5702
45 Management Address length 5, AFI IPv4 (1): 62.12.173.114
48 Management Address length 17, AFI IPv6 (2): 2001:8a8:1006:4:223:54ff:fec2:5702
Dtok2str-oobr-1.out17 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
37 AFI: IPv4 (1), SAFI: Multicast VPN (5)
54 AFI: IPv4 (1), SAFI: labeled VPN Unicast (128)
Dbgp-aigp.out14 AFI: IPv4 (1), SAFI: labeled Unicast (4)
19 AFI: IPv4 (1), SAFI: labeled Unicast (4)
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARC/
DARCFrameLowering.cpp118 auto *AFI = MF.getInfo<ARCFunctionInfo>(); in emitPrologue() local
136 unsigned VarArgsBytes = MFI.getObjectSize(AFI->getVarArgsFrameIndex()); in emitPrologue()
172 if (AFI->MaxCallStackReq > 0) in emitPrologue()
173 MFI.setStackSize(MFI.getStackSize() + AFI->MaxCallStackReq); in emitPrologue()
238 auto *AFI = MF.getInfo<ARCFunctionInfo>(); in emitEpilogue() local
307 unsigned VarArgsBytes = MFI.getObjectSize(AFI->getVarArgsFrameIndex()); in emitEpilogue()
448 auto *AFI = MF.getInfo<ARCFunctionInfo>(); in eliminateCallFramePseudoInstr() local
450 if (Amt > AFI->MaxCallStackReq && Old.getOpcode() == ARC::ADJCALLSTACKDOWN) in eliminateCallFramePseudoInstr()
451 AFI->MaxCallStackReq = Amt; in eliminateCallFramePseudoInstr()
/external/ltp/testcases/network/tcp_cmds/include/
Dnetdefs.h37 #define AFI AF_INET6 macro
52 #define AFI AF_INET macro

12345