mergify[bot] 
							
						 
					 
					
						
						
							
						
						2cd2f3ba7b 
					 
					
						
						
							
							Bump rbpf to v0.2.19 ( #21880 ) ( #21891 )  
						
						... 
						
						
						
						* Bump rbpf to v0.2.19
Co-authored-by: Alexander Meißner <AlexanderMeissner@gmx.net >
(cherry picked from commit 509bcd2e74jack@solana.com > 
						
						
					 
					
						2021-12-14 20:30:31 +00:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						a9d5ef2055 
					 
					
						
						
							
							Cleanup: InvokeContext accessors ( #21574 )  
						
						... 
						
						
						
						* Removes blockhash accessors from InvokeContext.
* Removes lamports_per_signature accessors from InvokeContext.
* Removes return_data accessors from InvokeContext.
* Removes feature_set accessor from InvokeContext.
* Removes instruction_recorders and instruction_index accessors from InvokeContext.
* Moves get_sysvars() into InvokeContext.
* Removes compute_meter parameter from InvokeContext::new().
* Removes InvokeContext::new_mock_with_sysvars_and_features().
* Removes InvokeContext::update_timing(). 
						
						
					 
					
						2021-12-03 12:15:22 +01:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						bfdb775ffc 
					 
					
						
						
							
							Unifies ThisInvokeContext and dyn trait InvokeContext. ( #21563 )  
						
						
						
						
					 
					
						2021-12-02 18:47:16 +01:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						6330cbcf33 
					 
					
						
						
							
							Refactor: Use InvokeContext in all Syscalls ( #21545 )  
						
						... 
						
						
						
						* Adds ComputeMeter::mock_set_remaining().
* Adds InvokeContext::get_loader()
* Adds a LogCollector to InvokeContext::new_mock().
* Adds "invoke_context: Rc<RefCell<&'a mut dyn InvokeContext>>,"
to all SyscallObjects.
* Adds LogCollector::get_recorded_content().
* Removes loader_id parameter from bind_syscall_context_objects() and create_vm(). 
						
						
					 
					
						2021-12-02 08:58:02 +01:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						c9aa7ed5ca 
					 
					
						
						
							
							Bumps solana_rbpf to v0.2.16 ( #21492 )  
						
						
						
						
					 
					
						2021-11-30 16:26:36 +01:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						03c36d240a 
					 
					
						
						
							
							Nonce naming cleanup ( #21336 )  
						
						
						
						
					 
					
						2021-11-18 16:07:17 -08:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						e540b1cf3c 
					 
					
						
						
							
							Refactor: Move sdk::process_instruction in program-runtime-crate ( #21180 )  
						
						... 
						
						
						
						* Moves the Executor dyn Trait to instruction_processor.rs
* Moves the Logger dyn Trait as well as the ic_msg and ic_logger_msg macros to log_collector.rs,
and moves the stable_log to stable_log.rs
* Moves the ComputeMeter dyn Trait to invoke_context.rs
* Moves the InvokeContext dyn Trait and the ProcessInstructionWithContext type to invoke_context.rs
* Updates cargo files.
* Re-export InvokeContext in program-test
Co-authored-by: Jon Cinque <jon.cinque@gmail.com > 
						
						
					 
					
						2021-11-17 19:35:07 +01:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						7200c5106e 
					 
					
						
						
							
							Replaces MockInvokeContext by ThisInvokeContext in tests ( #20881 )  
						
						... 
						
						
						
						* Replaces MockInvokeContext by ThisInvokeContext in BpfLoader, SystemInstructionProcessor, CLIs, ConfigProcessor, StakeProcessor and VoteProcessor.
* Finally, removes MockInvokeContext, MockComputeMeter and MockLogger.
* Adjusts assert_instruction_count test.
* Moves ThisInvokeContext to the program-runtime crate. 
						
						
					 
					
						2021-11-04 21:47:32 +01:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						e7c9b9329d 
					 
					
						
						
							
							Fixes a bug in MockInvokeContext::get_compute_meter() and adjusts the test assert_instruction_count accordingly. ( #20854 )  
						
						... 
						
						
						
						The get_compute_meter() method created a reference to a clone instead of cloning the reference. 
						
						
					 
					
						2021-10-22 09:46:47 +02:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						97c2732d02 
					 
					
						
						
							
							Refactor: Cleanup InvokeContext ( #20785 )  
						
						... 
						
						
						
						* Move blockhash and fee_calculator in ThisInvokeContext instead of using a reference.
* Moves tx_wide_compute_cap into InvokeContext::push().
* Adds ThisInvokeContext::new_mock() constructor.
* Adds missing loader account in uses of MockInvokeContext.
* Use keyed_account_at_index() when accessing keyed_accounts.
* Makes sysvar interface consistent between ThisInvokeContext and MockInvokeContext,
in order to add InvokeContext::get_sysvars().
* Adds InvokeContext::set_blockhash() and InvokeContext ::set_fee_calculator().
* Adds new_mock_with_features.
* Makes ancestors optional in ThisInvokeContext.
* Adds prepare_mock_invoke_context() and mock_process_instruction(). 
						
						
					 
					
						2021-10-21 20:57:42 +02:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						58164517e4 
					 
					
						
						
							
							Add program heap bump instruction ( #20607 )  
						
						
						
						
					 
					
						2021-10-19 21:01:39 -07:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						f30f3bddbb 
					 
					
						
						
							
							Refactor: Remove program_id from process_instruction() ( #20540 )  
						
						... 
						
						
						
						* Replaces usage of program_id parameter by invoke_context.get_caller()?.
* Removes "pubkey: &Pubkey" parameter from "process_instruction()". 
						
						
					 
					
						2021-10-10 22:29:18 +02:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						8fee9a2e1a 
					 
					
						
						
							
							Dont call precompiled programs ( #19930 )  
						
						
						
						
					 
					
						2021-09-29 06:25:08 +00:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						4e27543415 
					 
					
						
						
							
							Allow programs to realloc their accounts within limits ( #19475 )  
						
						
						
						
					 
					
						2021-09-28 01:13:03 -07:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						36f46e1c31 
					 
					
						
						
							
							CPI Account Reuse ( #19762 )  
						
						... 
						
						
						
						* Removes two account copy steps from InstructionProcessor::native_invoke().
* Moves gathering of keyed_accounts, caller_write_privileges and program_indices into InstructionProcessor::create_message().
* Explicitly routes the serialized account lengths to enable sharing of existing account structures.
* Recycles existing account structs in CPI syscall. 
						
						
					 
					
						2021-09-18 08:09:47 +02:00 
						 
				 
			
				
					
						
							
							
								Jeff Washington (jwash) 
							
						 
					 
					
						
						
							
						
						bde9b4de94 
					 
					
						
						
							
							Bank::new -> Bank::new_for_benches ( #19063 )  
						
						
						
						
					 
					
						2021-08-04 17:30:43 -05:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						8d5c04e257 
					 
					
						
						
							
							Bump solana_rbpf to version 0.2.13 ( #18068 )  
						
						... 
						
						
						
						* Moves syscall_registry into the rbpf Executable constructor.
* Adds the reject_unresolved_syscalls flag which is only set when deploying programs via the CLI. 
						
						
					 
					
						2021-07-07 09:50:11 +02:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						08d5253651 
					 
					
						
						
							
							Enforce host aligned memory for program regions ( #16590 )  
						
						
						
						
					 
					
						2021-04-20 11:07:30 -07:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						9dfcb921cf 
					 
					
						
						
							
							Refactoring: Move KeyedAccounts to InvokeContext ( #15410 )  
						
						... 
						
						
						
						Collects all parametric occurrences and the construction of keyed_accounts and puts them into InvokeContext. 
						
						
					 
					
						2021-04-19 18:48:48 +02:00 
						 
				 
			
				
					
						
							
							
								Jeff Washington (jwash) 
							
						 
					 
					
						
						
							
						
						8a3135d17b 
					 
					
						
						
							
							Account->AccountSharedData ( #15691 )  
						
						
						
						
					 
					
						2021-03-09 15:06:07 -06:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						fb3837260c 
					 
					
						
						
							
							Add BPf loader finalize test via inner instruction ( #15708 )  
						
						
						
						
					 
					
						2021-03-04 20:34:36 +00:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						b53cb8eb2d 
					 
					
						
						
							
							Deprecate Instruction::new ( #15695 )  
						
						
						
						
					 
					
						2021-03-04 05:46:48 +00:00 
						 
				 
			
				
					
						
							
							
								Michael Vines 
							
						 
					 
					
						
						
							
						
						5df36aec7d 
					 
					
						
						
							
							Pacify clippy  
						
						
						
						
					 
					
						2021-02-19 20:08:41 -08:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						c833ede4af 
					 
					
						
						
							
							Rbpf v0.2.1 ( #13732 )  
						
						... 
						
						
						
						* Refactoring to match rbpf-v0.2.1 and add JIT compilation caching.
* Removes obsolete bpf-trace.py which has been replaced by the rbpf CLI tool. 
						
						
					 
					
						2020-11-24 18:00:19 +01:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						4999fe298b 
					 
					
						
						
							
							Rbpf v0.2.0 ( #13365 )  
						
						... 
						
						
						
						* Updates rbpf to v0.2.0,
which unifies the interfaces of the interpreter and the JIT.
However, the JIT is not enabled yet. 
						
						
					 
					
						2020-11-04 18:46:26 +01:00 
						 
				 
			
				
					
						
							
							
								Michael Vines 
							
						 
					 
					
						
						
							
						
						da361afbb9 
					 
					
						
						
							
							Revert "Updates rbpf to v0.2.0, ( #12951 )"  
						
						... 
						
						
						
						This reverts commit 6606590b81 
						
						
					 
					
						2020-10-29 21:45:24 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Vines 
							
						 
					 
					
						
						
							
						
						225bed11c7 
					 
					
						
						
							
							Remove Entrypoint type  
						
						
						
						
					 
					
						2020-10-29 21:45:24 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Vines 
							
						 
					 
					
						
						
							
						
						df8dab9d2b 
					 
					
						
						
							
							Native/builtin programs now receive an InvokeContext  
						
						
						
						
					 
					
						2020-10-29 21:45:24 -07:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						6606590b81 
					 
					
						
						
							
							Updates rbpf to v0.2.0, ( #12951 )  
						
						... 
						
						
						
						which unifies the interfaces of the interpreter and the JIT.
However, the JIT is not enabled yet. 
						
						
					 
					
						2020-10-29 11:34:52 -07:00 
						 
				 
			
				
					
						
							
							
								Alexander Meißner 
							
						 
					 
					
						
						
							
						
						65ee3a6bdd 
					 
					
						
						
							
							Refactors the common code of test and bench targets into the solana_runtime::bpf_test_utils module. ( #13203 )  
						
						
						
						
					 
					
						2020-10-29 10:04:47 +01:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						c458d4b213 
					 
					
						
						
							
							move Account to solana-sdk ( #13198 )  
						
						
						
						
					 
					
						2020-10-28 22:01:07 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Vines 
							
						 
					 
					
						
						
							
						
						1b343665a1 
					 
					
						
						
							
							Move KeyedAccount out of solana-program.  Native programs are not supported by solana-program  
						
						
						
						
					 
					
						2020-10-26 18:54:54 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Vines 
							
						 
					 
					
						
						
							
						
						7bc073defe 
					 
					
						
						
							
							Run codemod --extensions rs Pubkey::new_rand solana_sdk::pubkey::new_rand  
						
						
						
						
					 
					
						2020-10-21 19:08:13 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						3f9e6a600b 
					 
					
						
						
							
							program log pubkey as base58 ( #12901 )  
						
						
						
						
					 
					
						2020-10-15 09:11:54 -07:00 
						 
				 
			
				
					
						
							
							
								sakridge 
							
						 
					 
					
						
						
							
						
						e4f45bfd3b 
					 
					
						
						
							
							Bpf speed debug and tuner program ( #12845 )  
						
						
						
						
					 
					
						2020-10-13 12:16:27 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						74fcb184b2 
					 
					
						
						
							
							Pipe FeatureSet though InvokeContext ( #12536 )  
						
						... 
						
						
						
						* Pipe FeatureSet though InvokeContext
* gate program size cap
* nit 
						
						
					 
					
						2020-09-29 21:36:30 +00:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						2ff983647f 
					 
					
						
						
							
							Move process_instruction defs to runtime ( #12507 )  
						
						
						
						
					 
					
						2020-09-29 01:36:46 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						d00453f747 
					 
					
						
						
							
							Drain the entire compute budget ( #12478 )  
						
						
						
						
					 
					
						2020-09-25 18:08:10 +00:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						d326512121 
					 
					
						
						
							
							Add ComputeBudget tuner ( #12476 )  
						
						
						
						
					 
					
						2020-09-25 09:01:22 -07:00 
						 
				 
			
				
					
						
							
							
								Justin Starry 
							
						 
					 
					
						
						
							
						
						6601ec8f26 
					 
					
						
						
							
							Record and store invoked instructions in transaction meta ( #12311 )  
						
						... 
						
						
						
						* Record invoked instructions and store in transaction meta
* Enable cpi recording if transaction sender is some
* Rename invoked to innerInstructions 
						
						
					 
					
						2020-09-24 22:36:22 +08:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						3278d78f08 
					 
					
						
						
							
							Cache re-usable work performed by the loader ( #12135 )  
						
						
						
						
					 
					
						2020-09-14 17:42:37 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						ae7b15f062 
					 
					
						
						
							
							Gate pointer alignment enforcement ( #12176 )  
						
						
						
						
					 
					
						2020-09-11 11:07:03 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						fd47d38e59 
					 
					
						
						
							
							Calc size ahead of time to alloc once ( #12154 )  
						
						
						
						
					 
					
						2020-09-10 11:13:35 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						ea179ad762 
					 
					
						
						
							
							Bump compute budget ( #11864 )  
						
						... 
						
						
						
						* Bump compute budget
* nudge 
						
						
					 
					
						2020-08-26 21:48:51 +00:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						c2e5dae7ba 
					 
					
						
						
							
							Gate aligned program heap ( #11808 )  
						
						
						
						
					 
					
						2020-08-24 13:21:34 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						8d362f682b 
					 
					
						
						
							
							The constraints on compute power a program can consume is limited only to its instruction count ( #11717 )  
						
						
						
						
					 
					
						2020-08-21 15:31:19 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						2dbed80e48 
					 
					
						
						
							
							Disable cross-program invocations for OperatingMode::Stable ( #11272 )  
						
						
						
						
					 
					
						2020-07-29 15:29:52 -07:00 
						 
				 
			
				
					
						
							
							
								Jack May 
							
						 
					 
					
						
						
							
						
						b6a9573748 
					 
					
						
						
							
							Route all loader messages to log collector ( #10528 )  
						
						
						
						
					 
					
						2020-06-13 13:20:08 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Vines 
							
						 
					 
					
						
						
							
						
						7e2651ca51 
					 
					
						
						
							
							RPC simulateTransaction endpoint now returns program log output ( #10432 )  
						
						
						
						
					 
					
						2020-06-06 10:18:28 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Vines 
							
						 
					 
					
						
						
							
						
						a4cd96609c 
					 
					
						
						
							
							Add built-in programs to InvokeContext ( #10383 )  
						
						... 
						
						
						
						automerge 
						
						
					 
					
						2020-06-03 12:48:19 -07:00