/external/llvm/test/Object/ |
D | mri-addmod.test | 1 ; RUN: echo create %t.a > %t.mri 2 ; RUN: echo "addmod \"%p/Inputs/trivial-object-test.elf-x86-64\" " >> %t.mri 3 ; RUN: echo save >> %t.mri 4 ; RUN: echo end >> %t.mri 6 ; RUN: llvm-ar -M < %t.mri 18 ; RUN: echo create %t.a > %t2.mri 19 ; RUN: echo addmod %p/Inputs/trivial-object-test2.elf-x86-64 >> %t2.mri 20 ; RUN: echo save >> %t2.mri 21 ; RUN: echo end >> %t2.mri 23 ; RUN: llvm-ar -M < %t2.mri
|
D | mri-addlib.test | 1 ; RUN: echo create %t.a > %t.mri 2 ; RUN: echo addlib %p/Inputs/GNU.a >> %t.mri 3 ; RUN: echo addlib %p/Inputs/archive-test.a-gnu-minimal >> %t.mri 4 ; RUN: echo save >> %t.mri 5 ; RUN: echo end >> %t.mri 7 ; RUN: llvm-ar -M < %t.mri
|
D | mri2.test | 1 ; RUN: echo create %t.a > %t.mri 2 ; RUN: echo create %t.a >> %t.mri 3 ; RUN: echo save >> %t.mri 4 ; RUN: echo end >> %t.mri 6 ; RUN: not llvm-ar -M < %t.mri 2>&1 | FileCheck %s
|
D | pr25877.test | 1 ; RUN: echo create %t.a > %t.mri 2 ; RUN: echo addlib %p/Inputs/pr25877.lib >> %t.mri 3 ; RUN: echo save >> %t.mri 4 ; RUN: echo end >> %t.mri 6 ; RUN: llvm-ar -M < %t.mri
|
D | mri1.test | 1 ; RUN: echo create %t.a > %t.mri 2 ; RUN: echo save >> %t.mri 3 ; RUN: echo end >> %t.mri 5 ; RUN: llvm-ar -M < %t.mri
|
D | mri3.test | 1 ; RUN: echo save > %t.mri 2 ; RUN: echo create %t.a >> %t.mri 3 ; RUN: echo end >> %t.mri 5 ; RUN: not llvm-ar -M < %t.mri 2>&1 | FileCheck %s
|
D | mri-crlf.test | 1 ; RUN: llvm-ar -M < %S/Inputs/mri-crlf.mri
|
D | mri4.test | 1 ; RUN: echo abc > %t.mri 3 ; RUN: not llvm-ar -M < %t.mri 2>&1 | FileCheck %s
|
/external/llvm/lib/CodeGen/ |
D | CalcSpillWeights.cpp | 48 const MachineRegisterInfo &mri) { in copyHint() argument 66 const TargetRegisterClass *rc = mri.getRegClass(reg); in copyHint() 132 MachineRegisterInfo &mri = MF.getRegInfo(); in calculateSpillWeightAndHint() local 146 bool noHint = mri.getRegAllocationHint(li.reg).first != 0; in calculateSpillWeightAndHint() 152 I = mri.reg_instr_begin(li.reg), E = mri.reg_instr_end(); in calculateSpillWeightAndHint() 186 unsigned hint = copyHint(mi, li.reg, tri, mri); in calculateSpillWeightAndHint() 195 if (hweight > bestPhys && mri.isAllocatable(hint)) in calculateSpillWeightAndHint() 207 mri.setRegAllocationHint(li.reg, 0, hint); in calculateSpillWeightAndHint()
|
/external/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
D | WebAssemblyMCCodeEmitter.cpp | 34 WebAssemblyMCCodeEmitter(const MCInstrInfo &, const MCRegisterInfo &mri, in WebAssemblyMCCodeEmitter() argument 36 : MRI(mri) {} in WebAssemblyMCCodeEmitter()
|
/external/llvm/include/llvm/MC/ |
D | MCInstPrinter.h | 62 const MCRegisterInfo &mri) in MCInstPrinter() argument 63 : CommentStream(nullptr), MAI(mai), MII(mii), MRI(mri), UseMarkup(0), in MCInstPrinter()
|
/external/llvm/lib/Target/BPF/MCTargetDesc/ |
D | BPFMCCodeEmitter.cpp | 36 BPFMCCodeEmitter(const MCRegisterInfo &mri, bool IsLittleEndian) in BPFMCCodeEmitter() argument 37 : MRI(mri), IsLittleEndian(IsLittleEndian) {} in BPFMCCodeEmitter()
|
/external/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
D | R600MCCodeEmitter.cpp | 40 R600MCCodeEmitter(const MCInstrInfo &mcii, const MCRegisterInfo &mri) in R600MCCodeEmitter() argument 41 : MCII(mcii), MRI(mri) { } in R600MCCodeEmitter()
|
D | SIMCCodeEmitter.cpp | 47 SIMCCodeEmitter(const MCInstrInfo &mcii, const MCRegisterInfo &mri, in SIMCCodeEmitter() argument 49 : MCII(mcii), MRI(mri) { } in SIMCCodeEmitter()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonBitTracker.h | 26 HexagonEvaluator(const HexagonRegisterInfo &tri, MachineRegisterInfo &mri,
|
D | HexagonBitSimplify.cpp | 1010 MachineRegisterInfo &mri) in RedundantInstrElimination() argument 1011 : Transformation(true), HII(hii), MRI(mri), BT(bt) {} in RedundantInstrElimination() 1323 MachineRegisterInfo &mri) in ConstGeneration() argument 1324 : Transformation(true), HII(hii), MRI(mri), BT(bt) {} in ConstGeneration() 1467 MachineRegisterInfo &mri) in CopyGeneration() argument 1468 : Transformation(true), HII(hii), MRI(mri), BT(bt) {} in CopyGeneration() 1481 CopyPropagation(const HexagonRegisterInfo &hri, MachineRegisterInfo &mri) in CopyPropagation() argument 1482 : Transformation(false), MRI(mri) {} in CopyPropagation() 1669 MachineRegisterInfo &mri) in BitSimplification() argument 1670 : Transformation(true), HII(hii), MRI(mri), BT(bt) {} in BitSimplification()
|
D | HexagonBitTracker.cpp | 26 MachineRegisterInfo &mri, in HexagonEvaluator() argument 29 : MachineEvaluator(tri, mri), MF(mf), MFI(*mf.getFrameInfo()), TII(tii) { in HexagonEvaluator()
|
/external/llvm/lib/MC/ |
D | MCContext.cpp | 37 MCContext::MCContext(const MCAsmInfo *mai, const MCRegisterInfo *mri, in MCContext() argument 40 : SrcMgr(mgr), MAI(mai), MRI(mri), MOFI(mofi), Allocator(), in MCContext()
|
/external/icu/icu4c/source/data/lang/ |
D | et.txt | 140 cy{"kõmri"}
|
/external/icu/icu4c/source/data/misc/ |
D | metadata.txt | 772 mri{
|