Home
last modified time | relevance | path

Searched refs:saves (Results 1 – 25 of 128) sorted by relevance

123456

/external/v8/tools/gyp/test/mac/strip/subdirectory/
Dsubdirectory.gyp14 'CHROMIUM_STRIP_SAVE_FILE': 'nested_strip.saves',
25 'CHROMIUM_STRIP_SAVE_FILE': 'nested_strip.saves',
/external/v8/tools/gyp/test/mac/strip/
Dtest.gyp17 # * non-global: Strips nonglobal symbols but saves external symbols.
18 # * debugging: Strips debugging symbols but saves local and global
115 'CHROMIUM_STRIP_SAVE_FILE': 'strip.saves',
/external/valgrind/gdbserver_tests/
Dmssnapshot.stderrB.exp21 and saves it in <filename>
24 saves all snapshot(s) taken so far in <filename>
/external/libpng/scripts/
Dlibpng.pc.in7 Description: Loads and saves PNG files
/external/libpng/
Dlibpng.pc.in7 Description: Loads and saves PNG files
/external/llvm/lib/Target/X86/
DREADME-X86-64.txt59 The idea is that it saves callers from having to remember this value,
146 1. First movq should be movl; saves a byte.
147 2. Both andq's should be andl; saves another two bytes. I think this was
149 3. shrq should be shrl; saves another byte.
/external/iptables/extensions/
Dlibxt_RATEEST.man2 and saves the results for later evaluation using the \fBrateest\fP match.
/external/llvm/test/CodeGen/Thumb2/
D2011-04-21-FILoweringBug.ll4 ; and in the range of 0-1020. This saves code size by utilizing
/external/llvm/test/CodeGen/AArch64/
Darm64-fixed-point-scalar-cvt-dagcombine.ll4 ; extract_vector_elt of a conversion, which saves a round trip of copies
/external/harfbuzz_ng/
DTODO34 - Add sanitize API (and a cached version, that saves result on blob user-data)
/external/llvm/test/Transforms/SLPVectorizer/AArch64/
Dload-store-q.ll8 ; callee-saves.
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
DcomplexityMeasures.m8 cout=' > st.txt'; %saves to matlab variable 'st'
/external/v8/src/compiler/mips/
Dcode-generator-mips.cc1785 const RegList saves = descriptor->CalleeSavedRegisters(); in FinishFrame() local
1786 if (saves != 0) { in FinishFrame()
1787 int count = base::bits::CountPopulation32(saves); in FinishFrame()
1831 const RegList saves = descriptor->CalleeSavedRegisters(); in AssembleConstructFrame() local
1832 if (saves != 0) { in AssembleConstructFrame()
1834 __ MultiPush(saves); in AssembleConstructFrame()
1835 DCHECK(kNumCalleeSaved == base::bits::CountPopulation32(saves) + 1); in AssembleConstructFrame()
1845 const RegList saves = descriptor->CalleeSavedRegisters(); in AssembleReturn() local
1846 if (saves != 0) { in AssembleReturn()
1847 __ MultiPop(saves); in AssembleReturn()
/external/llvm/test/CodeGen/Mips/
Dno-odd-spreg-msa.ll86 ; allocator will choose $f13/$w13 for the vector since that saves on moves.
114 ; allocator will choose $f13/$w13 for the vector since that saves on moves.
/external/v8/src/compiler/ia32/
Dcode-generator-ia32.cc1755 const RegList saves = descriptor->CalleeSavedRegisters(); in FinishFrame() local
1756 if (saves != 0) { // Save callee-saved registers. in FinishFrame()
1760 if (!((1 << i) & saves)) continue; in FinishFrame()
1795 const RegList saves = descriptor->CalleeSavedRegisters(); in AssembleConstructFrame() local
1800 if (saves != 0) { // Save callee-saved registers. in AssembleConstructFrame()
1804 if (!((1 << i) & saves)) continue; in AssembleConstructFrame()
1815 const RegList saves = descriptor->CalleeSavedRegisters(); in AssembleReturn() local
1817 if (saves != 0) { in AssembleReturn()
1819 if (!((1 << i) & saves)) continue; in AssembleReturn()
/external/v8/src/compiler/arm/
Dcode-generator-arm.cc1443 const RegList saves = FLAG_enable_embedded_constant_pool in FinishFrame() local
1446 if (saves != 0) { in FinishFrame()
1449 base::bits::CountPopulation32(saves)); in FinishFrame()
1501 const RegList saves = FLAG_enable_embedded_constant_pool in AssembleConstructFrame() local
1504 if (saves != 0) { in AssembleConstructFrame()
1506 __ stm(db_w, sp, saves); in AssembleConstructFrame()
1516 const RegList saves = FLAG_enable_embedded_constant_pool in AssembleReturn() local
1519 if (saves != 0) { in AssembleReturn()
1520 __ ldm(ia_w, sp, saves); in AssembleReturn()
/external/v8/build/win/
Dmessage_compiler.gni50 # directory. This is required because the Windows toolchain setup saves
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/ftrandom/
DREADME20 ftrandom saves the erroneous font and continues. If the tester exits
/external/llvm/include/llvm/Target/
DTargetCallingConv.td169 class CalleeSavedRegs<dag saves> {
170 dag SaveList = saves;
/external/v8/src/compiler/mips64/
Dcode-generator-mips64.cc2033 const RegList saves = descriptor->CalleeSavedRegisters(); in FinishFrame() local
2034 if (saves != 0) { in FinishFrame()
2035 int count = base::bits::CountPopulation32(saves); in FinishFrame()
2080 const RegList saves = descriptor->CalleeSavedRegisters(); in AssembleConstructFrame() local
2081 if (saves != 0) { in AssembleConstructFrame()
2083 __ MultiPush(saves); in AssembleConstructFrame()
2084 DCHECK(kNumCalleeSaved == base::bits::CountPopulation32(saves) + 1); in AssembleConstructFrame()
2093 const RegList saves = descriptor->CalleeSavedRegisters(); in AssembleReturn() local
2094 if (saves != 0) { in AssembleReturn()
2095 __ MultiPop(saves); in AssembleReturn()
/external/v8/src/compiler/x64/
Dcode-generator-x64.cc2061 const RegList saves = descriptor->CalleeSavedRegisters(); in FinishFrame() local
2062 if (saves != 0) { // Save callee-saved registers. in FinishFrame()
2065 if (((1 << i) & saves)) { in FinishFrame()
2120 const RegList saves = descriptor->CalleeSavedRegisters(); in AssembleConstructFrame() local
2121 if (saves != 0) { // Save callee-saved registers. in AssembleConstructFrame()
2123 if (!((1 << i) & saves)) continue; in AssembleConstructFrame()
2134 const RegList saves = descriptor->CalleeSavedRegisters(); in AssembleReturn() local
2135 if (saves != 0) { in AssembleReturn()
2137 if (!((1 << i) & saves)) continue; in AssembleReturn()
/external/v8/src/compiler/s390/
Dcode-generator-s390.cc1906 const RegList saves = descriptor->CalleeSavedRegisters(); in FinishFrame() local
1907 if (saves != 0) { in FinishFrame()
1910 DCHECK(num_saves == base::bits::CountPopulation32(saves)); in FinishFrame()
1959 const RegList saves = descriptor->CalleeSavedRegisters(); in AssembleConstructFrame() local
1960 if (saves != 0) { in AssembleConstructFrame()
1961 __ MultiPush(saves); in AssembleConstructFrame()
1971 const RegList saves = descriptor->CalleeSavedRegisters(); in AssembleReturn() local
1972 if (saves != 0) { in AssembleReturn()
1973 __ MultiPop(saves); in AssembleReturn()
/external/v8/src/compiler/ppc/
Dcode-generator-ppc.cc1883 const RegList saves = in FinishFrame() local
1887 if (saves != 0) { in FinishFrame()
1891 DCHECK(num_saves == base::bits::CountPopulation32(saves)); in FinishFrame()
1947 const RegList saves = in AssembleConstructFrame() local
1951 if (saves != 0) { in AssembleConstructFrame()
1952 __ MultiPush(saves); in AssembleConstructFrame()
1963 const RegList saves = in AssembleReturn() local
1967 if (saves != 0) { in AssembleReturn()
1968 __ MultiPop(saves); in AssembleReturn()
/external/v8/src/compiler/arm64/
Dcode-generator-arm64.cc1692 CPURegList saves = CPURegList(CPURegister::kRegister, kXRegSizeInBits, in FinishFrame() local
1694 saved_count = saves.Count(); in FinishFrame()
1753 CPURegList saves = CPURegList(CPURegister::kRegister, kXRegSizeInBits, in AssembleConstructFrame() local
1755 saved_count = saves.Count(); in AssembleConstructFrame()
1757 __ PushCPURegList(saves); in AssembleConstructFrame()
1766 CPURegList saves = CPURegList(CPURegister::kRegister, kXRegSizeInBits, in AssembleReturn() local
1768 if (saves.Count() != 0) { in AssembleReturn()
1769 __ PopCPURegList(saves); in AssembleReturn()
/external/llvm/docs/
DPackaging.rst59 saves lots of binary size at the cost of some startup time.

123456