/external/llvm/lib/CodeGen/AsmPrinter/ |
D | OcamlGCPrinter.cpp | 37 void beginAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) override; 38 void finishAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) override; 47 static void EmitCamlGlobal(const Module &M, AsmPrinter &AP, const char *Id) { in EmitCamlGlobal() argument 61 AP.Mang->getNameWithPrefix(TmpStr, SymName); in EmitCamlGlobal() 63 MCSymbol *Sym = AP.OutContext.GetOrCreateSymbol(TmpStr); in EmitCamlGlobal() 65 AP.OutStreamer.EmitSymbolAttribute(Sym, MCSA_Global); in EmitCamlGlobal() 66 AP.OutStreamer.EmitLabel(Sym); in EmitCamlGlobal() 70 AsmPrinter &AP) { in beginAssembly() argument 71 AP.OutStreamer.SwitchSection(AP.getObjFileLowering().getTextSection()); in beginAssembly() 72 EmitCamlGlobal(M, AP, "code_begin"); in beginAssembly() [all …]
|
D | DIE.cpp | 64 void DIEAbbrev::Emit(const AsmPrinter *AP) const { in Emit() 66 AP->EmitULEB128(Tag, dwarf::TagString(Tag)); in Emit() 69 AP->EmitULEB128((unsigned)Children, dwarf::ChildrenString(Children)); in Emit() 76 AP->EmitULEB128(AttrData.getAttribute(), in Emit() 80 AP->EmitULEB128(AttrData.getForm(), in Emit() 85 AP->EmitULEB128(0, "EOM(1)"); in Emit() 86 AP->EmitULEB128(0, "EOM(2)"); in Emit() 244 unsigned DIEInteger::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const { in SizeOf() argument 263 case dwarf::DW_FORM_addr: return AP->getDataLayout().getPointerSize(); in SizeOf() 265 if (AP->OutStreamer.getContext().getDwarfVersion() == 2) in SizeOf() [all …]
|
D | ErlangGCPrinter.cpp | 39 void finishAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) override; 49 AsmPrinter &AP) { in finishAssembly() argument 50 MCStreamer &OS = AP.OutStreamer; in finishAssembly() 51 unsigned IntPtrSize = AP.TM.getDataLayout()->getPointerSize(); in finishAssembly() 54 AP.OutStreamer.SwitchSection( in finishAssembly() 55 AP.getObjFileLowering().getContext().getELFSection(".note.gc", in finishAssembly() 79 AP.EmitAlignment(IntPtrSize == 4 ? 2 : 3); in finishAssembly() 83 AP.EmitInt16(MD.size()); in finishAssembly() 91 AP.EmitLabelPlusOffset(Label /*Hi*/, 0 /*Offset*/, 4 /*Size*/); in finishAssembly() 100 AP.EmitInt16(MD.getFrameSize() / IntPtrSize); in finishAssembly() [all …]
|
D | AsmPrinter.cpp | 648 static void emitKill(const MachineInstr *MI, AsmPrinter &AP) { in emitKill() argument 654 Str += AP.MMI->getContext().getRegisterInfo()->getName(Op.getReg()); in emitKill() 657 AP.OutStreamer.AddComment(Str); in emitKill() 658 AP.OutStreamer.AddBlankLine(); in emitKill() 664 static bool emitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) { in emitDebugValueComment() argument 716 const TargetFrameLowering *TFI = AP.MF->getSubtarget().getFrameLowering(); in emitDebugValueComment() 717 Offset += TFI->getFrameIndexReference(*AP.MF, in emitDebugValueComment() 725 AP.OutStreamer.emitRawComment(OS.str()); in emitDebugValueComment() 730 OS << AP.MMI->getContext().getRegisterInfo()->getName(Reg); in emitDebugValueComment() 737 AP.OutStreamer.emitRawComment(OS.str()); in emitDebugValueComment() [all …]
|
D | ByteStreamer.h | 38 AsmPrinter &AP; 41 APByteStreamer(AsmPrinter &Asm) : AP(Asm) {} in APByteStreamer() 43 AP.OutStreamer.AddComment(Comment); in EmitInt8() 44 AP.EmitInt8(Byte); in EmitInt8() 47 AP.OutStreamer.AddComment(Comment); in EmitSLEB128() 48 AP.EmitSLEB128(DWord); in EmitSLEB128() 51 AP.OutStreamer.AddComment(Comment); in EmitULEB128() 52 AP.EmitULEB128(DWord); in EmitULEB128()
|
D | AsmPrinterInlineAsm.cpp | 163 AsmPrinter *AP, unsigned LocCookie, in EmitMSInlineAsmStr() argument 239 Error = AP->PrintAsmMemoryOperand(MI, OpNo, InlineAsmVariant, in EmitMSInlineAsmStr() 242 Error = AP->PrintAsmOperand(MI, OpNo, InlineAsmVariant, in EmitMSInlineAsmStr() 261 int AsmPrinterVariant, AsmPrinter *AP, in EmitGCCInlineAsmStr() argument 340 AP->PrintSpecial(MI, OS, Val.c_str()); in EmitGCCInlineAsmStr() 409 Error = AP->PrintAsmMemoryOperand(MI, OpNo, InlineAsmVariant, in EmitGCCInlineAsmStr() 413 Error = AP->PrintAsmOperand(MI, OpNo, InlineAsmVariant, in EmitGCCInlineAsmStr() 484 AsmPrinter *AP = const_cast<AsmPrinter*>(this); in EmitInlineAsm() local 487 AP, LocCookie, OS); in EmitInlineAsm() 489 EmitMSInlineAsmStr(AsmStr, MI, MMI, InlineAsmVariant, AP, LocCookie, OS); in EmitInlineAsm()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCMCInstLower.cpp | 33 static MachineModuleInfoMachO &getMachOMMI(AsmPrinter &AP) { in getMachOMMI() argument 34 return AP.MMI->getObjFileInfo<MachineModuleInfoMachO>(); in getMachOMMI() 38 static MCSymbol *GetSymbolFromOperand(const MachineOperand &MO, AsmPrinter &AP){ in GetSymbolFromOperand() argument 39 const TargetMachine &TM = AP.TM; in GetSymbolFromOperand() 40 Mangler *Mang = AP.Mang; in GetSymbolFromOperand() 42 MCContext &Ctx = AP.OutContext; in GetSymbolFromOperand() 76 getMachOMMI(AP).getFnStubEntry(Sym); in GetSymbolFromOperand() 83 StubValueTy(AP.getSymbol(MO.getGlobal()), in GetSymbolFromOperand() 96 MachineModuleInfoMachO &MachO = getMachOMMI(AP); in GetSymbolFromOperand() 105 StubValueTy(AP.getSymbol(MO.getGlobal()), in GetSymbolFromOperand() [all …]
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonMCInstLower.cpp | 42 HexagonAsmPrinter& AP) { in HexagonLowerToMC() argument 71 AP.OutContext)); in HexagonLowerToMC() 74 MCO = GetSymbolRef(MO, AP.getSymbol(MO.getGlobal()), AP); in HexagonLowerToMC() 77 MCO = GetSymbolRef(MO, AP.GetExternalSymbolSymbol(MO.getSymbolName()), in HexagonLowerToMC() 78 AP); in HexagonLowerToMC() 81 MCO = GetSymbolRef(MO, AP.GetJTISymbol(MO.getIndex()), AP); in HexagonLowerToMC() 84 MCO = GetSymbolRef(MO, AP.GetCPISymbol(MO.getIndex()), AP); in HexagonLowerToMC() 87 MCO = GetSymbolRef(MO, AP.GetBlockAddressSymbol(MO.getBlockAddress()),AP); in HexagonLowerToMC()
|
/external/llvm/lib/Target/Sparc/ |
D | SparcMCInstLower.cpp | 33 AsmPrinter &AP) { in LowerSymbolOperand() argument 46 Symbol = AP.getSymbol(MO.getGlobal()); in LowerSymbolOperand() 50 Symbol = AP.GetBlockAddressSymbol(MO.getBlockAddress()); in LowerSymbolOperand() 54 Symbol = AP.GetExternalSymbolSymbol(MO.getSymbolName()); in LowerSymbolOperand() 58 Symbol = AP.GetCPISymbol(MO.getIndex()); in LowerSymbolOperand() 63 AP.OutContext); in LowerSymbolOperand() 65 AP.OutContext); in LowerSymbolOperand() 71 AsmPrinter &AP) { in LowerOperand() argument 87 return LowerSymbolOperand(MI, MO, AP); in LowerOperand() 97 AsmPrinter &AP) in LowerSparcMachineInstrToMCInst() argument [all …]
|
/external/eigen/blas/fortran/ |
D | chpmv.f | 1 SUBROUTINE CHPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) argument 8 COMPLEX AP(*),X(*),Y(*) local 200 Y(I) = Y(I) + TEMP1*AP(K) 201 TEMP2 = TEMP2 + CONJG(AP(K))*X(I) 204 Y(J) = Y(J) + TEMP1*REAL(AP(KK+J-1)) + ALPHA*TEMP2 216 Y(IY) = Y(IY) + TEMP1*AP(K) 217 TEMP2 = TEMP2 + CONJG(AP(K))*X(IX) 221 Y(JY) = Y(JY) + TEMP1*REAL(AP(KK+J-1)) + ALPHA*TEMP2 235 Y(J) = Y(J) + TEMP1*REAL(AP(KK)) 238 Y(I) = Y(I) + TEMP1*AP(K) [all …]
|
D | sspmv.f | 1 SUBROUTINE SSPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) argument 8 REAL AP(*),X(*),Y(*) local 193 Y(I) = Y(I) + TEMP1*AP(K) 194 TEMP2 = TEMP2 + AP(K)*X(I) 197 Y(J) = Y(J) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2 209 Y(IY) = Y(IY) + TEMP1*AP(K) 210 TEMP2 = TEMP2 + AP(K)*X(IX) 214 Y(JY) = Y(JY) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2 228 Y(J) = Y(J) + TEMP1*AP(KK) 231 Y(I) = Y(I) + TEMP1*AP(K) [all …]
|
D | dspmv.f | 1 SUBROUTINE DSPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) argument 8 DOUBLE PRECISION AP(*),X(*),Y(*) local 193 Y(I) = Y(I) + TEMP1*AP(K) 194 TEMP2 = TEMP2 + AP(K)*X(I) 197 Y(J) = Y(J) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2 209 Y(IY) = Y(IY) + TEMP1*AP(K) 210 TEMP2 = TEMP2 + AP(K)*X(IX) 214 Y(JY) = Y(JY) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2 228 Y(J) = Y(J) + TEMP1*AP(KK) 231 Y(I) = Y(I) + TEMP1*AP(K) [all …]
|
D | zhpmv.f | 1 SUBROUTINE ZHPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) argument 8 DOUBLE COMPLEX AP(*),X(*),Y(*) local 200 Y(I) = Y(I) + TEMP1*AP(K) 201 TEMP2 = TEMP2 + DCONJG(AP(K))*X(I) 204 Y(J) = Y(J) + TEMP1*DBLE(AP(KK+J-1)) + ALPHA*TEMP2 216 Y(IY) = Y(IY) + TEMP1*AP(K) 217 TEMP2 = TEMP2 + DCONJG(AP(K))*X(IX) 221 Y(JY) = Y(JY) + TEMP1*DBLE(AP(KK+J-1)) + ALPHA*TEMP2 235 Y(J) = Y(J) + TEMP1*DBLE(AP(KK)) 238 Y(I) = Y(I) + TEMP1*AP(K) [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | DIE.h | 98 void Emit(const AsmPrinter *AP) const; 233 virtual void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const = 0; 237 virtual unsigned SizeOf(const AsmPrinter *AP, dwarf::Form Form) const = 0; 278 void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const override; 285 unsigned SizeOf(const AsmPrinter *AP, dwarf::Form Form) const override; 306 void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const override; 314 unsigned SizeOf(const AsmPrinter *AP, dwarf::Form Form) const override; 335 void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const override; 343 unsigned SizeOf(const AsmPrinter *AP, dwarf::Form Form) const override; 366 void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const override; [all …]
|
/external/wpa_supplicant_8/hostapd/ |
D | README-WPS | 5 configured and how an external component on an AP (e.g., web UI) is 30 addition of new devices); this may be either in the AP ("internal 35 It should also be noted that the AP and a client device may change 36 roles (i.e., AP acts as an Enrollee and client device as a Registrar) 79 # WPA2-Personal configuration for the AP 97 # WPS configuration (AP configured, do not allow external WPS Registrars) 103 device_name=Wireless AP 137 PINs on the AP for a set of Enrollee). 142 a new device. The AP could use, e.g., a web UI for showing active 146 the AP, but for which there was no PIN. Following information is [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | README-WPS | 31 addition of new devices); this may be either in the AP ("internal 36 It should also be noted that the AP and a client device may change 37 roles (i.e., AP acts as an Enrollee and client device as a Registrar) 50 configure an AP. 119 AP to access the network. 132 When the wps_pin command is issued for an AP (including P2P GO) mode 147 a button is also pressed at the AP/Registrar at about the same time (2 153 At this point, the AP/Registrar has two minutes to complete WPS 159 current AP configuration and optionally, to configure an AP, 163 wpa_cli wps_reg <AP BSSID> <AP PIN> [all …]
|
/external/cblas/testing/ |
D | c_sblas2.c | 364 float *A,*AP; in F77_sspmv() local 373 AP = ( float* )malloc( (((LDA+1)*LDA)/2)*sizeof( float ) ); in F77_sspmv() 380 AP[ k ]=A[ LDA*i+j ]; in F77_sspmv() 388 AP[ k ]=A[ LDA*i+j ]; in F77_sspmv() 390 cblas_sspmv( CblasRowMajor, uplo, *n, *alpha, AP, x, *incx, *beta, y, in F77_sspmv() 392 free(A); free(AP); in F77_sspmv() 401 float *A, *AP; in F77_stpmv() local 414 AP = ( float* )malloc( (((LDA+1)*LDA)/2)*sizeof( float ) ); in F77_stpmv() 421 AP[ k ]=A[ LDA*i+j ]; in F77_stpmv() 429 AP[ k ]=A[ LDA*i+j ]; in F77_stpmv() [all …]
|
D | c_dblas2.c | 364 double *A,*AP; in F77_dspmv() local 373 AP = ( double* )malloc( (((LDA+1)*LDA)/2)*sizeof( double ) ); in F77_dspmv() 380 AP[ k ]=A[ LDA*i+j ]; in F77_dspmv() 388 AP[ k ]=A[ LDA*i+j ]; in F77_dspmv() 390 cblas_dspmv( CblasRowMajor, uplo, *n, *alpha, AP, x, *incx, *beta, y, in F77_dspmv() 393 free(AP); in F77_dspmv() 402 double *A, *AP; in F77_dtpmv() local 415 AP = ( double* )malloc( (((LDA+1)*LDA)/2)*sizeof( double ) ); in F77_dtpmv() 422 AP[ k ]=A[ LDA*i+j ]; in F77_dtpmv() 430 AP[ k ]=A[ LDA*i+j ]; in F77_dtpmv() [all …]
|
D | c_zblas2.c | 243 CBLAS_TEST_ZOMPLEX *A, *AP; in F77_zhpmv() local 255 AP = (CBLAS_TEST_ZOMPLEX* )malloc( (((LDA+1)*LDA)/2)* in F77_zhpmv() 265 AP[ k ].real=A[ LDA*i+j ].real; in F77_zhpmv() 266 AP[ k ].imag=A[ LDA*i+j ].imag; in F77_zhpmv() 277 AP[ k ].real=A[ LDA*i+j ].real; in F77_zhpmv() 278 AP[ k ].imag=A[ LDA*i+j ].imag; in F77_zhpmv() 281 cblas_zhpmv( CblasRowMajor, uplo, *n, alpha, AP, x, *incx, beta, y, in F77_zhpmv() 284 free(AP); in F77_zhpmv() 424 CBLAS_TEST_ZOMPLEX *A, *AP; in F77_ztpmv() local 440 AP=(CBLAS_TEST_ZOMPLEX*)malloc((((LDA+1)*LDA)/2)* in F77_ztpmv() [all …]
|
D | c_cblas2.c | 243 CBLAS_TEST_COMPLEX *A, *AP; in F77_chpmv() local 255 AP = (CBLAS_TEST_COMPLEX* )malloc( (((LDA+1)*LDA)/2)* in F77_chpmv() 265 AP[ k ].real=A[ LDA*i+j ].real; in F77_chpmv() 266 AP[ k ].imag=A[ LDA*i+j ].imag; in F77_chpmv() 277 AP[ k ].real=A[ LDA*i+j ].real; in F77_chpmv() 278 AP[ k ].imag=A[ LDA*i+j ].imag; in F77_chpmv() 281 cblas_chpmv( CblasRowMajor, uplo, *n, alpha, AP, x, *incx, beta, y, in F77_chpmv() 284 free(AP); in F77_chpmv() 424 CBLAS_TEST_COMPLEX *A, *AP; in F77_ctpmv() local 440 AP=(CBLAS_TEST_COMPLEX*)malloc((((LDA+1)*LDA)/2)* in F77_ctpmv() [all …]
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | MacOSKeychainAPIChecker.cpp | 98 void generateDeallocatorMismatchReport(const AllocationPair &AP, 106 BugReport *generateAllocatedDataNotReleasedReport(const AllocationPair &AP, 124 void markInteresting(BugReport *R, const AllocationPair &AP) const { in markInteresting() 125 R->markInteresting(AP.first); in markInteresting() 126 R->markInteresting(AP.second->Region); in markInteresting() 255 generateDeallocatorMismatchReport(const AllocationPair &AP, in generateDeallocatorMismatchReport() argument 259 State = State->remove<AllocatedData>(AP.first); in generateDeallocatorMismatchReport() 268 FunctionsToTrack[AP.second->AllocatorIdx].DeallocatorIdx; in generateDeallocatorMismatchReport() 273 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first)); in generateDeallocatorMismatchReport() 275 markInteresting(Report, AP); in generateDeallocatorMismatchReport() [all …]
|
/external/llvm/lib/CodeGen/ |
D | StackMaps.cpp | 72 StackMaps::StackMaps(AsmPrinter &AP) : AP(AP) { in StackMaps() argument 91 const TargetRegisterInfo *TRI = AP.MF->getSubtarget().getRegisterInfo(); in parseOperand() 96 unsigned Size = AP.TM.getDataLayout()->getPointerSizeInBits(); in parseOperand() 159 AP.MF ? AP.MF->getSubtarget().getRegisterInfo() : nullptr; in print() 240 const TargetRegisterInfo *TRI = AP.MF->getSubtarget().getRegisterInfo(); in parseRegisterLiveOutMask() 276 MCContext &OutContext = AP.OutStreamer.getContext(); in recordStackMapOpers() 278 AP.OutStreamer.EmitLabel(MILabel); in recordStackMapOpers() 320 MCSymbolRefExpr::Create(AP.CurrentFnSymForSize, OutContext), in recordStackMapOpers() 327 const MachineFrameInfo *MFI = AP.MF->getFrameInfo(); in recordStackMapOpers() 328 const TargetRegisterInfo *RegInfo = AP.MF->getSubtarget().getRegisterInfo(); in recordStackMapOpers() [all …]
|
/external/llvm/test/CodeGen/SPARC/ |
D | varargs.ll | 36 ; ldx [%fp+2039], %[[AP:[gilo][0-7]]] 37 ; add %[[AP]], 4, %[[AP2:[gilo][0-7]]] 39 ; ld [%[[AP]]] 46 ; ldx [%fp+2039], %[[AP:[gilo][0-7]]] 47 ; add %[[AP]], 8, %[[AP2:[gilo][0-7]]] 49 ; ldd [%[[AP]]]
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.h | 91 NVPTXAsmPrinter &AP; variable 95 AggBuffer(unsigned size, raw_ostream &O, NVPTXAsmPrinter &AP) in AggBuffer() argument 96 : size(size), buffer(size), O(O), AP(AP) { in AggBuffer() 99 EmitGeneric = AP.EmitGeneric; in AggBuffer() 141 if (static_cast<const NVPTXTargetMachine &>(AP.TM).is64Bit()) in print() 149 MCSymbol *Name = AP.getSymbol(GVar); in print() 163 O << *AP.lowerConstant(Cexpr); in print()
|
/external/llvm/test/CodeGen/Generic/ |
D | llvm-ct-intrinsics.ll | 12 define void @ctpoptest(i8 %A, i16 %B, i32 %C, i64 %D, i8* %AP, i16* %BP, i32* %CP, i64* %DP) { 17 store i8 %a, i8* %AP 32 define void @ctlztest(i8 %A, i16 %B, i32 %C, i64 %D, i8* %AP, i16* %BP, i32* %CP, i64* %DP) { 37 store i8 %a, i8* %AP 52 define void @cttztest(i8 %A, i16 %B, i32 %C, i64 %D, i8* %AP, i16* %BP, i32* %CP, i64* %DP) { 57 store i8 %a, i8* %AP
|