전체 글 (231) 썸네일형 리스트형 1011 컴구 Review Supporting procedures Before performing the desired task - Caller puts parameters in some appropriate place - Caller executes jal instruction - Callee acquires the storage resources in stack to save some "saved registers" and to allocated some local variables - Callee uses the parameters After performing the desired task - Callee restores some "saved registers" and releases the acquired s.. 1011 객지설 p.50 오버로딩한 operator+ : n1 + n2를 쓴다고 치면 n1을 this로 받고 n2를 인자로 받는거임 1007 컴구 Review x0 : the constant value 0 범용 레지스터는 자율적으로 값을 바꿀수 있음에도 불구하고 얘는 0 0이 자주 쓰이는 상수다 보니 가져오는 수고를 덜기 위해. Registers : Usage : Remark x0 : the constant value 0 x1 (ra) : return address x2 (sp) : stack pointer x3 (gp) : global pointer x4 (tp) : thread pointer x5 - x7 : temporaries : Can be overwritten by callee x8 - x9 : saved (frame pointer) x10 - x17 : function arguments/results x18 - x27 : saved :.. [SYSP] LEC6. Assembly control p.7 목적지의 하위 바이트를 조건코드 조합에 따라 0 또는 1로 설정 수정 -> 조건코드 조합 X에 따라 ByteReg를 0 또는 1로 설정 p.9 조건코드 조합을 한 바이트로 표시 -> 한 바이트에 저장 '주소지정 가능한' 지우기 '오퍼랜드 레지스터의' 다른 바이트 값은 불변 대개 movzbl 추가로 사용(byte를 long으로 zero 패딩 후 mov) p.10 조건코드에 따라서 코드의 실행 위치를 이동 -> 조건코드 X가 참인 경우 다음 코드의 실행을 Label로 이동 1004 컴구 Decision-Making Instrucions => imm[11:5] -> imm[12](11번째 비트가 있었던자리) / imm[10:5] 만약 imm[11:0]이면, 가장 큰 양수는 2^11-1 4의 배수를 2진수로 하면 끝자리는 무조건 ~00 주소를 표현할 일이 생기면 4의 배수일테니까 뒤 두자리는 안써도 00인걸 알듯 얘를 왜 굳이 저장해서 imm 두칸을 낭비할까. 아뭔소리야 암튼 imm[11:0]이면 표현 가능한 가장 큰 양수가 2^11-1인데, imm[12:1]이면 표현 가능한 가장 큰 양수가 2^12-1이 됨. 표현 가능한 범위가 늘어남. 긩까 imm[0] 대신에 imm[12]를 넣자~ 근데 imm[12]는 부호! 최상위수니까! 개중요한 비트인거임 그래서 imm[12]를 제일 앞에 뺀거임 .. OOP with C++ (2) - Dynamic memory allocation and deallocation Stack data structure A stack is a data structure in which last-in data is firstly popped out ○ We call it Last In First Out (LIFO) Function call stack Lots of programming language runtimes utilizes a call stack to manage function calls ○ A call stack is a stack that stores functions’ local data ○ When calling a function, the callee function data is pushed onto the call stack ○ When returning a f.. OOP with C++ (2) - Function calls in C++ OOP with C++ (2) - C++ program memory model LHS and RHS - LHS : left-hand-side expression - RHS : right-hand-side expression ex) x = 10 LHS : x RHS : 10 Basics in C++ memeory model * Each variable has an address - &x (only in RHS) : return the address of the variable x - x (in RHS) : return the value assigned to the address of the variable - x (in LHS) : store the RHS value to the address of the variable Pointers : a value points to an ad.. 이전 1 ··· 22 23 24 25 26 27 28 29 다음