/external/llvm/unittests/IR/ |
PassManagerTest.cpp | 201 EXPECT_FALSE(PA1.preserved<TestFunctionAnalysis>()); 202 EXPECT_FALSE(PA1.preserved<TestModuleAnalysis>()); 204 EXPECT_FALSE(PA2.preserved<TestFunctionAnalysis>()); 205 EXPECT_FALSE(PA2.preserved<TestModuleAnalysis>()); 207 EXPECT_TRUE(PA3.preserved<TestFunctionAnalysis>()); 208 EXPECT_TRUE(PA3.preserved<TestModuleAnalysis>()); 210 EXPECT_FALSE(PA4.preserved<TestFunctionAnalysis>()); 211 EXPECT_FALSE(PA4.preserved<TestModuleAnalysis>()); 213 EXPECT_TRUE(PA4.preserved<TestFunctionAnalysis>()); 214 EXPECT_TRUE(PA4.preserved<TestModuleAnalysis>()) [all...] |
/external/llvm/lib/Analysis/ |
CGSCCPassManager.cpp | 32 // If this proxy isn't marked as preserved, then we can't even invalidate 36 if (!PA.preserved(ID())) 61 // If this proxy isn't marked as preserved, then we can't even invalidate 65 if (!PA.preserved(ID()))
|
/external/llvm/lib/IR/ |
PassManager.cpp | 32 // If this proxy isn't marked as preserved, then we can't even invalidate 36 if (!PA.preserved(ID()))
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/ |
far-hc12.s | 18 bne fail ; X and D preserved (swapped by _far_bar) 22 cpx #0xabcd ; Stack parameter preserved
|
far-hc11.s | 18 bne fail ; X and D preserved (swapped by _far_bar) 22 cpx #0xabcd ; Stack parameter preserved
|
/external/autotest/site_utils/bootperf-bin/ |
bootperf | 114 autotest is preserved; with --keep_logs the (potentially large) 115 autotest logs are preserved with the test results.
|
/external/libjpeg-turbo/simd/ |
jdsample-mmx.asm | 67 ; push ecx ; need not be preserved 68 ; push edx ; need not be preserved 190 ; pop edx ; need not be preserved 191 ; pop ecx ; need not be preserved 231 ; push ecx ; need not be preserved 232 ; push edx ; need not be preserved 519 ; pop edx ; need not be preserved 520 ; pop ecx ; need not be preserved 551 ; push ecx ; need not be preserved 552 ; push edx ; need not be preserved [all...] |
jdsample-sse2.asm | 67 ; push ecx ; need not be preserved 68 ; push edx ; need not be preserved 188 ; pop edx ; need not be preserved 189 ; pop ecx ; need not be preserved 229 ; push ecx ; need not be preserved 230 ; push edx ; need not be preserved 515 ; pop edx ; need not be preserved 516 ; pop ecx ; need not be preserved 547 ; push ecx ; need not be preserved 548 ; push edx ; need not be preserved [all...] |
jidctred-mmx.asm | 129 ; push ecx ; need not be preserved 130 ; push edx ; need not be preserved 481 ; pop edx ; need not be preserved 482 ; pop ecx ; need not be preserved 512 ; push ecx ; need not be preserved 513 ; push edx ; need not be preserved 698 ; pop edx ; need not be preserved 699 ; pop ecx ; need not be preserved
|
jfdctflt-3dn.asm | 69 ; push ecx ; need not be preserved 70 ; push edx ; need not be preserved 310 ; pop edx ; need not be preserved 311 ; pop ecx ; need not be preserved
|
jidctred-sse2.asm | 128 ; push edx ; need not be preserved 402 ; pop edx ; need not be preserved 433 ; push ecx ; need not be preserved 434 ; push edx ; need not be preserved 586 ; pop edx ; need not be preserved 587 ; pop ecx ; need not be preserved
|
jfdctflt-sse.asm | 79 ; push ecx ; need not be preserved 80 ; push edx ; need not be preserved 360 ; pop edx ; need not be preserved 361 ; pop ecx ; need not be preserved
|
jfdctfst-mmx.asm | 94 ; push ecx ; need not be preserved 95 ; push edx ; need not be preserved 387 ; pop edx ; need not be preserved 388 ; pop ecx ; need not be preserved
|
jidctflt-3dn.asm | 77 ; push ecx ; need not be preserved 78 ; push edx ; need not be preserved 442 ; pop edx ; need not be preserved 443 ; pop ecx ; need not be preserved
|
jidctfst-mmx.asm | 108 ; push ecx ; need not be preserved 109 ; push edx ; need not be preserved 490 ; pop edx ; need not be preserved 491 ; pop ecx ; need not be preserved
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/ |
unwind-bad.l | 18 .*:46: Error: Operand 1 to \.spillreg must be a preserved register 19 .*:48: Error: Operand 1 to \.spillreg must be a preserved register 20 .*:50: Error: Operand 1 to \.spillreg must be a preserved register 23 .*:56: Error: Operand 1 to \.spillreg must be a preserved register
|
/frameworks/base/libs/hwui/renderthread/ |
EglManager.cpp | 121 mSwapBehavior = SwapBehavior::Preserved; 149 EGLint swapBehavior = (mSwapBehavior == SwapBehavior::Preserved) 167 if (mSwapBehavior == SwapBehavior::Preserved) { 232 if (mSwapBehavior != SwapBehavior::Preserved) { 291 case SwapBehavior::Preserved: 369 if (mSwapBehavior != SwapBehavior::Preserved) return false; 371 bool preserved = eglSurfaceAttrib(mEglDisplay, surface, EGL_SWAP_BEHAVIOR, 373 if (!preserved) { 379 preserved = (swapBehavior == EGL_BUFFER_PRESERVED); 386 return preserved; [all...] |
/external/v8/test/mjsunit/regress/ |
regress-3218530.js | 28 // This tests that a global key values are preserved when used in
|
/external/libunwind/doc/ |
unw_resume.tex | 26 machine state normally involves restoring the ``preserved'' 51 ``preserved'' registers are restored.
|
unw_getcontext.tex | 22 platform-specific, but, in general, at least all preserved
|
unw_get_fpreg.tex | 27 frames, it is normally possible to access only the preserved
|
unw_get_reg.tex | 27 frames, it is normally possible to access only the preserved
|
unw_set_fpreg.tex | 27 frames, it is normally possible to access only the preserved
|
/external/v8/test/webkit/fast/js/ |
date-preserve-milliseconds.js | 25 'The following test checks if an existing milliseconds value gets preserved if a call to setHours(), setMinutes() or setSeconds() does not specify the milliseconds. See <a href="https://bugs.webkit.org/show_bug.cgi?id=3759">https://bugs.webkit.org/show_bug.cgi?id=3759</a>'
|
/external/llvm/include/llvm/IR/ |
PassManager.h | 60 /// \brief An abstract set of preserved analyses following a transformation pass 64 /// results were preserved by that transformation. The default set is "none", 87 /// \brief Convenience factory function for the empty preserved set. 90 /// \brief Construct a special preserved set that preserves all passes. 97 /// \brief Mark a particular pass as preserved, adding it to the set. 100 /// \brief Mark an abstract PassID as preserved, adding it to the set. 108 /// This is a mutating operation on this preserved set, removing all 109 /// preserved passes which are not also preserved in the argument. 124 /// This is a mutating operation on this preserved set, removing al 139 template <typename PassT> bool preserved() const { function in class:llvm::PreservedAnalyses 145 bool preserved(void *PassID) const { function in class:llvm::PreservedAnalyses [all...] |