gpu_dyn_inst.cc (11308:7d8836fd043d) gpu_dyn_inst.cc (11472:8263ac8f99d9)
1/*
2 * Copyright (c) 2015 Advanced Micro Devices, Inc.
3 * All rights reserved.
4 *
5 * For use for simulation and test purposes only
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:

--- 29 unchanged lines hidden (view full) ---

38#include "debug/GPUMem.hh"
39#include "gpu-compute/gpu_static_inst.hh"
40#include "gpu-compute/shader.hh"
41#include "gpu-compute/wavefront.hh"
42
43GPUDynInst::GPUDynInst(ComputeUnit *_cu, Wavefront *_wf,
44 GPUStaticInst *_staticInst, uint64_t instSeqNum)
45 : GPUExecContext(_cu, _wf), m_op(Enums::MO_UNDEF),
1/*
2 * Copyright (c) 2015 Advanced Micro Devices, Inc.
3 * All rights reserved.
4 *
5 * For use for simulation and test purposes only
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:

--- 29 unchanged lines hidden (view full) ---

38#include "debug/GPUMem.hh"
39#include "gpu-compute/gpu_static_inst.hh"
40#include "gpu-compute/shader.hh"
41#include "gpu-compute/wavefront.hh"
42
43GPUDynInst::GPUDynInst(ComputeUnit *_cu, Wavefront *_wf,
44 GPUStaticInst *_staticInst, uint64_t instSeqNum)
45 : GPUExecContext(_cu, _wf), m_op(Enums::MO_UNDEF),
46 memoryOrder(Enums::MEMORY_ORDER_NONE), useContinuation(false),
46 memoryOrder(Enums::MEMORY_ORDER_NONE), n_reg(0) ,useContinuation(false),
47 statusBitVector(0), staticInst(_staticInst), _seqNum(instSeqNum)
48{
49 tlbHitLevel.assign(VSZ, -1);
50}
51
52void
53GPUDynInst::execute()
54{

--- 144 unchanged lines hidden ---
47 statusBitVector(0), staticInst(_staticInst), _seqNum(instSeqNum)
48{
49 tlbHitLevel.assign(VSZ, -1);
50}
51
52void
53GPUDynInst::execute()
54{

--- 144 unchanged lines hidden ---