Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 331) sorted by relevance

12345678910>>...14

/art/test/018-stack-overflow/
Dexpected.txt2 caught SOE3 in testSelfRecursion
3 caught SOE10 in testSelfRecursion
4 caught SOE in testMutualRecursion
7 caught SOE3 in testSelfRecursion
8 caught SOE10 in testSelfRecursion
9 caught SOE in testMutualRecursion
/art/test/dexdump/
Dstaticfields.txt45 #0 : (in LStaticFields;)
50 #1 : (in LStaticFields;)
55 #2 : (in LStaticFields;)
60 #3 : (in LStaticFields;)
65 #4 : (in LStaticFields;)
70 #5 : (in LStaticFields;)
75 #6 : (in LStaticFields;)
80 #7 : (in LStaticFields;)
85 #8 : (in LStaticFields;)
90 #9 : (in LStaticFields;)
[all …]
/art/runtime/arch/mips64/
Dinstruction_set_features_mips64.cc52 std::ifstream in("/proc/cpuinfo"); in FromCpuInfo() local
53 if (!in.fail()) { in FromCpuInfo()
54 while (!in.eof()) { in FromCpuInfo()
56 std::getline(in, line); in FromCpuInfo()
57 if (!in.eof()) { in FromCpuInfo()
64 in.close(); in FromCpuInfo()
Dquick_entrypoints_mips64.S136 …sd $sp, THREAD_TOP_QUICK_FRAME_OFFSET(rSELF) # Place sp in Thread::Current()->top_quick_fram…
258 …sd $sp, THREAD_TOP_QUICK_FRAME_OFFSET(rSELF) # Place sp in Thread::Current()->top_quick_fram…
264 …sd $sp, THREAD_TOP_QUICK_FRAME_OFFSET(rSELF) # Place sp in Thread::Current()->top_quick_fram…
425 dsrl $v1, $v0, 32 # put high half of result in v1
428 mfhc1 $v1, $f0 # put high half of FP result in v1
646 * NOTE: "this" is first visable argument of the target, and so can be found in arg1/$a1.
648 … * The helper will attempt to locate the target and return a 128-bit result in $v0/$v1 consisting
649 * of the target Method* in $v0 and method->code_ in $v1.
651 * If unsuccessful, the helper will return null/null. There will be a pending exception in the
659 SETUP_REFS_AND_ARGS_CALLEE_SAVE_FRAME # save callee saves in case allocation triggers GC
[all …]
/art/tools/checker/
DREADME5 Tests are written in Java or Smali, turned into DEX and compiled with the
8 followed by a pattern that the engine attempts to match in the compiler output.
10 Assertions are tested in groups which correspond to the individual compiler
13 name must exactly match one of the groups recognized in the output (they can
16 Matching of check lines is carried out in the order of appearance in the
18 - CHECK: Must match an output line which appears in the output group
20 lines must therefore match the check lines in the same order.
21 These are referred to as "in-order" checks in the code.
22 - CHECK-DAG: Must match an output line which appears in the output group
23 later than lines matched against any preceeding in-order checks.
[all …]
/art/compiler/linker/
Doutput_stream_test.cc71 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str())); in TEST_F() local
72 EXPECT_TRUE(in.get() != nullptr); in TEST_F()
73 std::vector<uint8_t> actual(in->GetLength()); in TEST_F()
74 bool readSuccess = in->ReadFully(&actual[0], actual.size()); in TEST_F()
86 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str())); in TEST_F() local
87 EXPECT_TRUE(in.get() != nullptr); in TEST_F()
88 std::vector<uint8_t> actual(in->GetLength()); in TEST_F()
89 bool readSuccess = in->ReadFully(&actual[0], actual.size()); in TEST_F()
/art/runtime/arch/arm64/
Dinstruction_set_features_arm64.cc76 std::ifstream in("/proc/cpuinfo"); in FromCpuInfo() local
77 if (!in.fail()) { in FromCpuInfo()
78 while (!in.eof()) { in FromCpuInfo()
80 std::getline(in, line); in FromCpuInfo()
81 if (!in.eof()) { in FromCpuInfo()
88 in.close(); in FromCpuInfo()
/art/test/541-regression-inlined-deopt/smali/
DTestCase.smali4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
21 # Expects array in v2.
37 # Expects array in v0.
46 # Create a new array short enough to throw AIOOB in $inline$depth1.
47 # Make sure the reference is not stored in the same vreg as used by
/art/test/
DREADME.txt5 in particular, the tests can be run on the desktop, on a USB-attached
9 For most tests, the sources are in the "src" subdirectory. Sources found
10 in the "src2" directory are compiled separately but to the same output
12 replacing class files created in the first pass. The "src-ex" directory
/art/runtime/interpreter/mterp/
DMakefile_mterp4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
26 # for arch in arm arm64 x86 x86_64 mips mips64
34 # Accumulate all possible dependencies for the generated files in a very
35 # conservative fashion. If it's not one of the generated files in "out",
41 # assembly file, though in practice one or the other could be empty.
/art/test/303-verification-stress/
Dinfo.txt2 classes, each one initializing a big array of string in its class initializer.
3 This generates big <clinit> methods in these classes. The goal is to stress the
7 size of string array can be modified in the script.
/art/test/800-smali/smali/
Db_17410612.smali3 # Test that an invoke with a long parameter has the long parameter in
4 # a pair. This should fail in the verifier and not an abort in the compiler.
/art/test/587-inline-class-error/smali/
DVerifyError.smali4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
19 # Override a final method to put this class in the error state.
25 # Having a static field in the class is needed to get the
/art/test/537-checker-debuggable/smali/
DTestCase.smali4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
19 # The phi in this method has no actual uses but one environment use. It will
20 # be eliminated in normal mode but kept live in debuggable mode. Test that
/art/test/525-checker-arrays-and-fields/
Dinfo.txt1 Test on (in)variant static and instance field and array references in loops.
/art/test/594-checker-irreducible-linorder/
Dinfo.txt1 Regression test for a failing DCHECK in SSA liveness analysis in the presence
/art/runtime/arch/mips/
Dinstruction_set_features_mips.cc133 std::ifstream in("/proc/cpuinfo"); in FromCpuInfo() local
134 if (!in.fail()) { in FromCpuInfo()
135 while (!in.eof()) { in FromCpuInfo()
137 std::getline(in, line); in FromCpuInfo()
138 if (!in.eof()) { in FromCpuInfo()
145 in.close(); in FromCpuInfo()
/art/
DNOTICE5 you may not use this file except in compliance with the License.
7 Unless required by applicable law or agreed to in writing, software
48 "Work" shall mean the work of authorship, whether in Source or
50 copyright notice that is included in or attached to the work
51 (an example is provided in the Appendix below).
53 "Derivative Works" shall mean any work, whether in Source or Object
64 submitted to Licensor for inclusion in the Work by the copyright owner
73 designated in writing by the copyright owner as "Not a Contribution."
84 Work and such Derivative Works in Source or Object form.
89 (except as stated in this section) patent license to make, have made,
[all …]
/art/test/439-swap-double/
Dinfo.txt1 Test for the optimizing compiler's parallel swap support in
2 the presence of register pairs (in this case, doubles on ARM).
/art/test/606-erroneous-class/smali-multidex/
DClassA.smali4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
24 # Use the object in a way that will try to store the ErrClass type in
/art/runtime/arch/arm/
Dinstruction_set_features_arm.cc132 std::ifstream in("/proc/cpuinfo"); in FromCpuInfo() local
133 if (!in.fail()) { in FromCpuInfo()
134 while (!in.eof()) { in FromCpuInfo()
136 std::getline(in, line); in FromCpuInfo()
137 if (!in.eof()) { in FromCpuInfo()
156 in.close(); in FromCpuInfo()
/art/test/024-illegal-access/
Dinfo.txt1 Test that an attempt to access a private field results in a verification
2 error. Also try to access a non-public class in a different package with
/art/test/002-sleep/
Dinfo.txt2 mostly meant as an easy thing to modify in order to test other things
3 in an ad-hoc way.
/art/test/MultiDexModifiedSecondary/
DREADME.txt1 MultiDexModifiedSecondary is designed to result in a multidex file that has
4 This is used in the OatFileAssistantTest.MultiDexSecondaryOutOfDate gtest.
/art/test/800-smali/
Dinfo.txt2 Will compile and run all the smali files in smali/ and run the test cases mentioned in src/Main.jav…

12345678910>>...14