Lines Matching refs:info

23 #include "src/codegen/optimized-compilation-info.h"
3925 Node* info = gasm_->IntPtrConstant(0);
3931 info = gasm_->StackSlot(size, size);
3933 gasm_->Store(StoreRepresentation(rep, kNoWriteBarrier), info,
3937 Node* call = BuildCallToRuntime(Runtime::kWasmTraceExit, &info, 1);
3946 TNode<RawPtrT> info =
3951 gasm_->Store(StoreRepresentation(rep, kNoWriteBarrier), info,
3962 Node* args[] = {info};
5314 AtomicOpInfo info = AtomicOpInfo::Get(opcode);
5316 Node* index = CheckBoundsAndAlignment(info.machine_type.MemSize(), inputs[0],
5321 if (info.type != AtomicOpInfo::kSpecial) {
5323 if (info.operator_by_type) {
5324 op = (mcgraph()->machine()->*info.operator_by_type)(info.machine_type);
5325 } else if (info.operator_by_rep) {
5326 op = (mcgraph()->machine()->*info.operator_by_rep)(
5327 info.machine_type.representation());
5328 } else if (info.operator_by_atomic_load_params) {
5329 op = (mcgraph()->machine()->*info.operator_by_atomic_load_params)(
5330 AtomicLoadParameters(info.machine_type, AtomicMemoryOrder::kSeqCst));
5332 op = (mcgraph()->machine()->*info.operator_by_atomic_store_rep)(
5333 AtomicStoreParameters(info.machine_type.representation(),
5339 int num_actual_inputs = info.type;
5346 if (info.operator_by_atomic_store_rep) {
5349 info.machine_type.representation(), info.wasm_type);
5358 if (info.operator_by_atomic_load_params) {
5360 BuildChangeEndiannessLoad(result, info.machine_type, info.wasm_type);
7695 const CTypeInfo& info) {
7696 MachineType t = MachineType::TypeForCType(info);
7719 const CFunctionInfo* info = shared->get_api_func_data().GetCSignature(0);
7720 if (!fast_api_call::CanOptimizeFastSignature(info)) {
7724 if (info->HasOptions()) {
7748 CTypeInfo return_info = info->ReturnInfo();
7768 if (expected_sig->parameter_count() != info->ArgumentCount() - 1) {
7776 CTypeInfo arg = info->ArgumentInfo(i + 1);
8453 OptimizedCompilationInfo info(
8457 info.set_wasm_runtime_exception_support();
8460 if (FLAG_experimental_wasm_gc) info.set_allocation_folding();
8462 if (info.trace_turbo_json()) {
8464 tcf << AsC1VCompilation(&info);
8468 info.trace_turbo_json() ? zone.New<NodeOriginTable>(mcgraph->graph())
8498 &info, env, wire_byte_storage, mcgraph, call_descriptor, source_positions,
8515 auto result = info.ReleaseWasmCompilationResult();
8778 // Relocation info required to serialize {WasmCode} for proper functions.
8786 // Relocation info not necessary because stubs are not serialized.