/art/compiler/dex/ |
H A D | mir_graph.cc | 138 * Parse an instruction, return the length of the instruction 1337 int length = str.length() + 1; local 1338 ret = static_cast<char*>(arena_->Alloc(length, kArenaAllocDFInfo)); 1339 strncpy(ret, str.c_str(), length);
|
/art/runtime/ |
H A D | oat_file.cc | 400 string_cache_.emplace_back(key.data(), key.length());
|
H A D | instrumentation.cc | 1069 uint32_t length; local 1070 char return_shorty = method->GetShorty(&length)[0];
|
H A D | class_linker.cc | 1926 Thread* self, size_t length) { 1928 self, GetClassRoot(kJavaLangStackTraceElementArrayClass), length); 5448 uint32_t* length) { 5453 return dex_file.GetMethodShorty(method_id, length); 1925 AllocStackTraceElementArray( Thread* self, size_t length) argument 5447 MethodShorty(uint32_t method_idx, mirror::ArtMethod* referrer, uint32_t* length) argument
|
/art/compiler/llvm/ |
H A D | gbc_expander.cc | 755 // Load array length 921 if (callee_method_name == "int java.lang.String.length()") { 2336 // Get the array length and store it to the register 2343 llvm::Value* length = call_inst.getArgOperand(1); local 2345 return EmitAllocNewArray(dex_pc, length, type_idx, false); 2351 uint32_t length = call_inst.getNumArgOperands() - 3; local 2354 EmitAllocNewArray(dex_pc, irb_.getInt32(length), type_idx, true); 2356 if (length > 0) { 2393 for (uint32_t i = 0; i < length; ++i) {
|
/art/compiler/utils/x86/ |
H A D | assembler_x86.cc | 1327 const int length = operand.length_; local 1328 CHECK_GT(length, 0); 1333 for (int i = 1; i < length; i++) {
|
/art/compiler/utils/x86_64/ |
H A D | assembler_x86_64.cc | 1523 const int length = operand.length_; local 1524 CHECK_GT(length, 0); 1529 for (int i = 1; i < length; i++) {
|
/art/oatdump/ |
H A D | oatdump.cc | 296 // We don't know the length of the code for each method, but we need to know where to stop 298 // region, so if we keep a sorted sequence of the start of each region, we can infer the length 1245 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(), 1268 int32_t length = obj_array->GetLength(); local 1269 for (int32_t i = 0; i < length; i++) { 1272 for (int32_t j = i + 1; j < length; j++) {
|
/art/compiler/dex/quick/ |
H A D | mir_to_lir.h | 831 void GenArrayBoundsCheck(RegStorage index, RegStorage length); 832 void GenArrayBoundsCheck(int32_t index, RegStorage length);
|
/art/compiler/optimizing/ |
H A D | code_generator_x86_64.cc | 1296 CpuRegister length = locations->InAt(1).AsX86_64().AsCpuRegister(); local 1298 __ cmpl(index, length);
|
H A D | code_generator_arm.cc | 1469 Register length = locations->InAt(1).AsArm().AsCoreRegister(); local 1471 __ cmp(index, ShifterOperand(length));
|
H A D | code_generator_x86.cc | 1464 Register length = locations->InAt(1).AsX86().AsCpuRegister(); local 1466 __ cmpl(index, length);
|
/art/runtime/interpreter/ |
H A D | interpreter_goto_table_impl.cc | 555 int32_t length = shadow_frame.GetVReg(inst->VRegB_22c(inst_data)); local 557 inst->VRegC_22c(), shadow_frame.GetMethod(), length, self, 598 "failed FILL_ARRAY_DATA; length=%d, index=%d",
|
H A D | interpreter_switch_impl.cc | 469 int32_t length = shadow_frame.GetVReg(inst->VRegB_22c(inst_data)); local 471 inst->VRegC_22c(), shadow_frame.GetMethod(), length, self, 513 "failed FILL_ARRAY_DATA; length=%d, index=%d",
|
/art/compiler/jni/ |
H A D | jni_compiler_test.cc | 868 void my_arraycopy(JNIEnv* env, jclass klass, jobject src, jint src_pos, jobject dst, jint dst_pos, jint length) { argument 874 EXPECT_EQ(9876, length);
|
/art/test/083-compiler-regressions/src/ |
H A D | Main.java | 944 int len = nn.length; 945 System.out.println(nn.length); 946 System.out.println(nn.length % 3); 949 System.out.println((nn.length % 3) != 1); 9787 for (int i = 0; i != results.length; i += 2) {
|