OSDN Git Service

Revert experimental lambda feature.
authorNarayan Kamath <narayan@google.com>
Fri, 5 Aug 2016 10:44:32 +0000 (11:44 +0100)
committerNarayan Kamath <narayan@google.com>
Tue, 9 Aug 2016 12:47:49 +0000 (13:47 +0100)
commit14832efeb92334c562ebedef34e920d30e3cee69
tree57d10c24966a46ae1c01861ee579ac6000326c45
parentc984725d0035e1925371757c38fed339b409e525
Revert experimental lambda feature.

This is a revert of the following changes :

30c475a2046951a81769c2db0b2dad66cd71e189.
lambda: Minor capture-variable/liberate-variable clean-up after post-merge reviews.

6918bf13eb855b3aa8ccdddda2d27ae8c60cec56.
lambda: Experimental support for capture-variable and liberate-variable

fc1ccd740b7c8e96dfac675cfc580122cd1b40a6.
lambda: Infrastructure to support capture/liberate-variable dex opcodes

e2facc5b18cd756a8b5500fb3d90da69c9ee0fb7.
runtime: Add lambda box/unbox object equality

2ee54e249ad21c74f29a161e248bebe7d22fddf1.
runtime: Partially implement box-lambda and unbox-lambda experimental opcodes

158f35c98e2ec0d40d2c032b8cdce5fb60944a7f.
interpreter: Add experimental lambda opcodes for invoke/create-lambda

a3bb72036f5454e410467f7151dc89f725ae1151.
Added format 25x to dexdump(2).

Plus surrounding cleanups.

Test: make test-art
Change-Id: Ic6f999ad17385ef933f763641049cf721510b202
79 files changed:
build/Android.gtest.mk
cmdline/cmdline_parser_test.cc
cmdline/cmdline_types.h
dexdump/dexdump.cc
runtime/Android.mk
runtime/base/allocator.h
runtime/base/mutex.cc
runtime/base/mutex.h
runtime/common_throws.cc
runtime/dex_instruction-inl.h
runtime/dex_instruction.cc
runtime/dex_instruction.h
runtime/dex_instruction_list.h
runtime/experimental_flags.h
runtime/interpreter/interpreter_common.cc
runtime/interpreter/interpreter_common.h
runtime/interpreter/interpreter_goto_table_impl.cc
runtime/interpreter/interpreter_switch_impl.cc
runtime/interpreter/mterp/config_arm
runtime/interpreter/mterp/config_arm64
runtime/interpreter/mterp/config_mips
runtime/interpreter/mterp/config_mips64
runtime/interpreter/mterp/config_x86
runtime/interpreter/mterp/config_x86_64
runtime/interpreter/mterp/mips64/op_unused_f3.S [new file with mode: 0644]
runtime/interpreter/mterp/mips64/op_unused_f5.S [new file with mode: 0644]
runtime/interpreter/mterp/mips64/op_unused_f6.S [new file with mode: 0644]
runtime/interpreter/mterp/mips64/op_unused_f7.S [new file with mode: 0644]
runtime/interpreter/mterp/mips64/op_unused_f8.S [new file with mode: 0644]
runtime/interpreter/mterp/mips64/op_unused_f9.S [new file with mode: 0644]
runtime/interpreter/mterp/out/mterp_arm.S
runtime/interpreter/mterp/out/mterp_arm64.S
runtime/interpreter/mterp/out/mterp_mips.S
runtime/interpreter/mterp/out/mterp_mips64.S
runtime/interpreter/mterp/out/mterp_x86.S
runtime/interpreter/mterp/out/mterp_x86_64.S
runtime/interpreter/mterp/x86/op_unused_f3.S [new file with mode: 0644]
runtime/interpreter/mterp/x86/op_unused_f5.S [new file with mode: 0644]
runtime/interpreter/mterp/x86/op_unused_f6.S [new file with mode: 0644]
runtime/interpreter/mterp/x86/op_unused_f7.S [new file with mode: 0644]
runtime/interpreter/mterp/x86/op_unused_f8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86/op_unused_f9.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_f3.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_f5.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_f6.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_f7.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_f8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_f9.S [new file with mode: 0644]
runtime/interpreter/unstarted_runtime.cc
runtime/lambda/art_lambda_method.cc [deleted file]
runtime/lambda/art_lambda_method.h [deleted file]
runtime/lambda/box_table.cc [deleted file]
runtime/lambda/box_table.h [deleted file]
runtime/lambda/closure.cc [deleted file]
runtime/lambda/closure.h [deleted file]
runtime/lambda/closure_builder-inl.h [deleted file]
runtime/lambda/closure_builder.cc [deleted file]
runtime/lambda/closure_builder.h [deleted file]
runtime/lambda/closure_test.cc [deleted file]
runtime/lambda/leaking_allocator.cc [deleted file]
runtime/lambda/leaking_allocator.h [deleted file]
runtime/lambda/shorty_field_type.h [deleted file]
runtime/lambda/shorty_field_type_test.cc [deleted file]
runtime/parsed_options.cc
runtime/runtime.cc
runtime/runtime.h
runtime/runtime_options.def
runtime/verifier/method_verifier.cc
runtime/verifier/method_verifier.h
test/955-lambda-smali/build [deleted file]
test/955-lambda-smali/expected.txt [deleted file]
test/955-lambda-smali/info.txt [deleted file]
test/955-lambda-smali/run [deleted file]
test/955-lambda-smali/smali/BoxUnbox.smali [deleted file]
test/955-lambda-smali/smali/CaptureVariables.smali [deleted file]
test/955-lambda-smali/smali/Main.smali [deleted file]
test/955-lambda-smali/smali/MoveResult.smali [deleted file]
test/955-lambda-smali/smali/SanityCheck.smali [deleted file]
test/955-lambda-smali/smali/TrivialHelloWorld.smali [deleted file]